From 0c490982bc8bfc459aa994dc2cc5431fab7b060c Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Wed, 3 Feb 2021 16:12:37 -1000 Subject: [PATCH 1/7] Make changes for Network Acl Bypass --- src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj | 2 +- .../CosmosDB.Test/ScenarioTests/AccountTests.ps1 | 11 +++++++++-- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + src/CosmosDB/CosmosDB/CosmosDB.csproj | 2 +- .../CosmosDBAccount/NewAzCosmosDBAccount.cs | 4 ++++ .../NewOrUpdateAzCosmosDBAccount.cs | 8 ++++++++ .../CosmosDBAccount/UpdateAzCosmosDBAccount.cs | 14 ++++++++++++++ src/CosmosDB/CosmosDB/Helpers/Constants.cs | 3 +++ .../DatabaseAccount/PSDatabaseAccountGetResults.cs | 10 ++++++++++ 9 files changed, 51 insertions(+), 4 deletions(-) diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj index bcfdedc682e5..62b754c6ad81 100644 --- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj +++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj @@ -5,6 +5,6 @@ - + \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 index fd4984baa476..a68bbb7ffc91 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 @@ -31,8 +31,11 @@ function Test-AccountRelatedCmdlets $IpRule = "201.168.50.1" $tags = @{ name = "test"; Shape = "Square"; Color = "Blue"} $publicNetworkAccess = "Enabled" + $networkAclBypass = "AzureServices" + $networkAclBypassResourceId = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName" + $networkAclBypassResourceId2 = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName2" - $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" + $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId Assert-AreEqual $cosmosDBAccountName $cosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $cosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -45,6 +48,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $cosmosDBAccount.ApiProperties.ServerVersion "3.2" Assert-AreEqual $cosmosDBAccount.EnableAnalyticalStorage 0 Assert-AreEqual $cosmosDBAccount.EnableFreeTier 0 + Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass + Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 1 # create an existing database Try { @@ -54,7 +59,7 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $_.Exception.Message ("Resource with Name " + $cosmosDBAccountName + " already exists.") } - $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $existingResourceGroupName -Name $cosmosDBExistingAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess + $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $existingResourceGroupName -Name $cosmosDBExistingAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypassResourceId $networkAclBypassResourceId,$networkAclBypassResourceId2 Assert-AreEqual $cosmosDBExistingAccountName $updatedCosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $updatedCosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -63,6 +68,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $updatedCosmosDBAccount.EnableAutomaticFailover 1 Assert-AreEqual $updatedCosmosDBAccount.IsVirtualNetworkFilterEnabled 1 Assert-AreEqual $updatedCosmosDBAccount.PublicNetworkAccess $publicNetworkAccess + Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass + Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 2 $cosmosDBAccountKey = Get-AzCosmosDBAccountKey -Name $cosmosDBAccountName -ResourceGroupName $rgname Assert-NotNull $cosmosDBAccountKey diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index ede2ce7e22cc..38388a7fe86c 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Introduce NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. ## Version 1.0.0 * General availability of 'Az.CosmosDB' module diff --git a/src/CosmosDB/CosmosDB/CosmosDB.csproj b/src/CosmosDB/CosmosDB/CosmosDB.csproj index 20e7b8e40f63..431d0497ef46 100644 --- a/src/CosmosDB/CosmosDB/CosmosDB.csproj +++ b/src/CosmosDB/CosmosDB/CosmosDB.csproj @@ -6,7 +6,7 @@ - + \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index dcbd1a9784c9..fe2a733a6c8a 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -147,6 +147,8 @@ public override void ExecuteCmdlet() } } + Collection networkAclBypassResourceId = new Collection(NetworkAclBypassResourceId); + DatabaseAccountCreateUpdateParameters databaseAccountCreateUpdateParameters = new DatabaseAccountCreateUpdateParameters(locations:LocationCollection, location: writeLocation, name:Name, consistencyPolicy:consistencyPolicy, tags:tags); databaseAccountCreateUpdateParameters.EnableMultipleWriteLocations = EnableMultipleWriteLocations; databaseAccountCreateUpdateParameters.IsVirtualNetworkFilterEnabled = EnableVirtualNetwork; @@ -156,6 +158,8 @@ public override void ExecuteCmdlet() databaseAccountCreateUpdateParameters.PublicNetworkAccess = PublicNetworkAccess; databaseAccountCreateUpdateParameters.EnableFreeTier = EnableFreeTier; databaseAccountCreateUpdateParameters.EnableAnalyticalStorage = EnableAnalyticalStorage; + databaseAccountCreateUpdateParameters.NetworkAclBypass = NetworkAclBypass; + databaseAccountCreateUpdateParameters.NetworkAclBypassResourceIds = networkAclBypassResourceId; if (IpRule != null && IpRule.Length > 0) { diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index 519f1683b7a7..7ec731fb940c 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -73,6 +73,14 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.AsJobHelpMessage)] public SwitchParameter AsJob { get; set; } + [Parameter(Mandatory = false, HelpMessage = Constants.NetworkAclBypassHelpMessage)] + [PSArgumentCompleter(SDKModel.NetworkAclBypass.None, SDKModel.NetworkAclBypass.AzureServices)] + public string NetworkAclBypass { get; set; } + + [Parameter(Mandatory = false, HelpMessage = Constants.NetworkAclBypassResourceIdHelpMessage)] + [ValidateNotNullOrEmpty] + public string[] NetworkAclBypassResourceId { get; set; } + public ConsistencyPolicy PopoulateConsistencyPolicy(string DefaultConsistencyLevel, int? MaxStalenessIntervalInSeconds, int? MaxStalenessPrefix) { ConsistencyPolicy consistencyPolicy = new ConsistencyPolicy(); diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index a3cd43f8ecc5..d2f5a20b53be 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -69,6 +69,10 @@ public override void ExecuteCmdlet() DatabaseAccountGetResults readDatabase = CosmosDBManagementClient.DatabaseAccounts.GetWithHttpMessagesAsync(ResourceGroupName, Name).GetAwaiter().GetResult().Body; DatabaseAccountUpdateParameters databaseAccountUpdateParameters = new DatabaseAccountUpdateParameters(locations: readDatabase.Locations, location: readDatabase.WriteLocations.ElementAt(0).LocationName); + + databaseAccountUpdateParameters.NetworkAclBypass = readDatabase.NetworkAclBypass; + databaseAccountUpdateParameters.NetworkAclBypassResourceIds = readDatabase.NetworkAclBypassResourceIds; + if (EnableMultipleWriteLocations != null) { databaseAccountUpdateParameters.EnableMultipleWriteLocations = EnableMultipleWriteLocations; @@ -97,6 +101,10 @@ public override void ExecuteCmdlet() { databaseAccountUpdateParameters.EnableAnalyticalStorage = EnableAnalyticalStorage; } + if (NetworkAclBypass != null) + { + databaseAccountUpdateParameters.NetworkAclBypass = NetworkAclBypass; + } if (!string.IsNullOrEmpty(DefaultConsistencyLevel)) { @@ -134,6 +142,12 @@ public override void ExecuteCmdlet() databaseAccountUpdateParameters.IpRules = base.PopulateIpRules(IpRule); } + if (NetworkAclBypassResourceId != null) + { + Collection networkAclBypassResourceId = new Collection(NetworkAclBypassResourceId); + databaseAccountUpdateParameters.NetworkAclBypassResourceIds = networkAclBypassResourceId; + } + if (ShouldProcess(Name, "Updating Database Account")) { DatabaseAccountGetResults cosmosDBAccount = CosmosDBManagementClient.DatabaseAccounts.UpdateWithHttpMessagesAsync(ResourceGroupName, Name, databaseAccountUpdateParameters).GetAwaiter().GetResult().Body; diff --git a/src/CosmosDB/CosmosDB/Helpers/Constants.cs b/src/CosmosDB/CosmosDB/Helpers/Constants.cs index c99335d0cded..125bfe37e3c0 100644 --- a/src/CosmosDB/CosmosDB/Helpers/Constants.cs +++ b/src/CosmosDB/CosmosDB/Helpers/Constants.cs @@ -53,6 +53,9 @@ internal static class Constants public const string EnableFreeTierHelpMessage = "Bool to indicate if FreeTier is enabled on the account."; public const string EnableAnalyticalStorageHelpMessage = "Bool to indicate if AnalyticalStorage is enabled on the account."; public const string ServerVersionHelpMessage = "ServerVersion, valid only in case of MongoDB Accounts."; + public const string NetworkAclBypassHelpMessage = "Whether or not Network Acl Bypass is enabled for this account for Synapse Link. Possible values include: 'None', 'AzureServices'."; + public const string NetworkAclBypassResourceIdHelpMessage = "List of Resource Ids to allow Network Acl Bypass for Synapse Link."; + //Sql cmdlets help messages public const string DatabaseNameHelpMessage = "Database name."; diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs index 1e762552c4af..f51968570e06 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs @@ -58,6 +58,8 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR EnableFreeTier = databaseAccountGetResults.EnableFreeTier; ApiProperties = new PSApiProperties(databaseAccountGetResults.ApiProperties); EnableAnalyticalStorage = databaseAccountGetResults.EnableAnalyticalStorage; + NetworkAclBypass = databaseAccountGetResults.NetworkAclBypass == "1" ? "AzureServices" : databaseAccountGetResults.NetworkAclBypass == "0" ? "None" : ""; + NetworkAclBypassResourceIds = databaseAccountGetResults.NetworkAclBypassResourceIds; } // @@ -180,5 +182,13 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR // Summary: // Gets or sets flag to indicate whether to enable storage analytics. public bool? EnableAnalyticalStorage { get; set; } + // + // Summary: + // Gets or sets flag to indicate to allow Network Acl Bypass. + public string NetworkAclBypass { get; set; } + // + // Summary: + // Gets or sets list of Network Acl Bypass Resource Ids. + public IList NetworkAclBypassResourceIds { get; set; } } } From fa2ce9afe4527adf3f95c65999c8aaecd7b33f60 Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Wed, 3 Feb 2021 16:19:22 -1000 Subject: [PATCH 2/7] Add help file updates --- .../CosmosDB/help/Get-AzCosmosDBAccount.md | 2 ++ .../CosmosDB/help/New-AzCosmosDBAccount.md | 33 +++++++++++++++++ .../CosmosDB/help/Update-AzCosmosDBAccount.md | 35 +++++++++++++++++++ 3 files changed, 70 insertions(+) diff --git a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md index 11ee832c8966..bedaa1f407c9 100644 --- a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md @@ -49,6 +49,8 @@ ProvisioningState : Succeeded Kind : GlobalDocumentDB VirtualNetworkRules : {} EnableMultipleWriteLocations : False +NetworkAclBypass : None +NetworkAclBypassResourceIds : {} ``` Get CosmosDB database account with name databaseAccountName in ResourceGroup resourceGroupName. diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md index e9183925479d..9b0306590938 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md @@ -20,6 +20,7 @@ New-AzCosmosDBAccount [-EnableAutomaticFailover] [-EnableMultipleWriteLocations] [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -51,6 +52,8 @@ Tags : {} Id : /subscriptions/{subscriptionid}/resourceGroups/resourceGroupName/providers/Microsoft.DocumentDB/databaseAccounts/databaseAccountName Name : databaseAccountName Type : Microsoft.DocumentDB/databaseAccounts +NetworkAclBypass : None +NetworkAclBypassResourceIds : {} ``` A new CosmosDB Account with name databaseAccountName is created in the ResourceGroup resourceGroupName. @@ -337,6 +340,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NetworkAclBypass +Whether or not Network Acl Bypass is enabled for this account for Synapse Link. Possible values include: 'None', 'AzureServices'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkAclBypassResourceId +List of Resource Ids to allow Network Acl Bypass for Synapse Link. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess Whether or not public endpoint access is allowed for this server. Possible values include: 'Enabled', 'Disabled' diff --git a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md index 04c12507a28f..48af6f299b01 100644 --- a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md @@ -20,6 +20,7 @@ Update-AzCosmosDBAccount [-EnableAutomaticFailover ] [-EnableMultipleWr [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -31,6 +32,7 @@ Update-AzCosmosDBAccount -ResourceId [-EnableAutomaticFailover ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -42,6 +44,7 @@ Update-AzCosmosDBAccount -InputObject [-EnableAuto [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -73,6 +76,8 @@ Tags : {} Id : /subscriptions/{subscriptionid}/resourceGroups/resourceGroupName/providers/Microsoft.DocumentDB/databaseAccounts/accountName Name : accountName Type : Microsoft.DocumentDB/databaseAccounts +NetworkAclBypass : None +NetworkAclBypassResourceIds : {} ``` Updated DefaultConsistencyLevel to "Strong", Enabled AutomaticFailover, Enabled MultipleWriteLocations and Enabled VirtualNetwork for CosmosDB Account with name accountName. @@ -311,6 +316,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -NetworkAclBypass +Whether or not Network Acl Bypass is enabled for this account for Synapse Link. Possible values include: 'None', 'AzureServices'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkAclBypassResourceId +List of Resource Ids to allow Network Acl Bypass for Synapse Link. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess Whether or not public endpoint access is allowed for this server. Possible values include: 'Enabled', 'Disabled' From ede1c3aaccf95566027af1c883ce45cf695fb720 Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Tue, 9 Feb 2021 13:33:00 -1000 Subject: [PATCH 3/7] Changes with enum not as string --- .../CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs | 7 ++++++- .../CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs | 2 +- .../CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs | 4 +++- .../Models/DatabaseAccount/PSDatabaseAccountGetResults.cs | 4 ++-- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index fe2a733a6c8a..e7eeaf133b31 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -158,7 +158,6 @@ public override void ExecuteCmdlet() databaseAccountCreateUpdateParameters.PublicNetworkAccess = PublicNetworkAccess; databaseAccountCreateUpdateParameters.EnableFreeTier = EnableFreeTier; databaseAccountCreateUpdateParameters.EnableAnalyticalStorage = EnableAnalyticalStorage; - databaseAccountCreateUpdateParameters.NetworkAclBypass = NetworkAclBypass; databaseAccountCreateUpdateParameters.NetworkAclBypassResourceIds = networkAclBypassResourceId; if (IpRule != null && IpRule.Length > 0) @@ -171,6 +170,12 @@ public override void ExecuteCmdlet() databaseAccountCreateUpdateParameters.KeyVaultKeyUri = KeyVaultKeyUri; } + if (NetworkAclBypass != null) + { + databaseAccountCreateUpdateParameters.NetworkAclBypass = + NetworkAclBypass == "AzureServices" ? SDKModel.NetworkAclBypass.AzureServices : SDKModel.NetworkAclBypass.None; + } + if (!string.IsNullOrEmpty(ApiKind)) { if (ApiKind.Equals("MongoDB", StringComparison.OrdinalIgnoreCase)) diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index 7ec731fb940c..374be4fdca22 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -74,7 +74,7 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase public SwitchParameter AsJob { get; set; } [Parameter(Mandatory = false, HelpMessage = Constants.NetworkAclBypassHelpMessage)] - [PSArgumentCompleter(SDKModel.NetworkAclBypass.None, SDKModel.NetworkAclBypass.AzureServices)] + [PSArgumentCompleter("None", "AzureServices")] public string NetworkAclBypass { get; set; } [Parameter(Mandatory = false, HelpMessage = Constants.NetworkAclBypassResourceIdHelpMessage)] diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index d2f5a20b53be..be725ef9f6fe 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; using Microsoft.Azure.Management.CosmosDB.Models; using System; +using SDKModel = Microsoft.Azure.Management.CosmosDB.Models; namespace Microsoft.Azure.Commands.CosmosDB { @@ -103,7 +104,8 @@ public override void ExecuteCmdlet() } if (NetworkAclBypass != null) { - databaseAccountUpdateParameters.NetworkAclBypass = NetworkAclBypass; + databaseAccountUpdateParameters.NetworkAclBypass = + NetworkAclBypass == "AzureServices" ? SDKModel.NetworkAclBypass.AzureServices : SDKModel.NetworkAclBypass.None; } if (!string.IsNullOrEmpty(DefaultConsistencyLevel)) diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs index f51968570e06..804921663808 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs @@ -58,7 +58,7 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR EnableFreeTier = databaseAccountGetResults.EnableFreeTier; ApiProperties = new PSApiProperties(databaseAccountGetResults.ApiProperties); EnableAnalyticalStorage = databaseAccountGetResults.EnableAnalyticalStorage; - NetworkAclBypass = databaseAccountGetResults.NetworkAclBypass == "1" ? "AzureServices" : databaseAccountGetResults.NetworkAclBypass == "0" ? "None" : ""; + NetworkAclBypass = databaseAccountGetResults.NetworkAclBypass; NetworkAclBypassResourceIds = databaseAccountGetResults.NetworkAclBypassResourceIds; } @@ -185,7 +185,7 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR // // Summary: // Gets or sets flag to indicate to allow Network Acl Bypass. - public string NetworkAclBypass { get; set; } + public NetworkAclBypass? NetworkAclBypass { get; set; } // // Summary: // Gets or sets list of Network Acl Bypass Resource Ids. From 978f39f307de163b02ef75ab9ec5c9f1d6b78b1c Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Tue, 16 Feb 2021 10:47:07 -1000 Subject: [PATCH 4/7] rerun tests --- .../CosmosDB.Test/CosmosDB.Test.csproj | 2 +- .../ScenarioTests/AccountTests.ps1 | 13 +- .../ScenarioTests/GremlinOperationsTests.ps1 | 4 +- .../TestAccountRelatedCmdlets.json | 812 +- .../TestAccountRelatedCmdletsUsingObject.json | 996 +- .../TestAccountRelatedCmdletsUsingRid.json | 599 +- .../TestAddRegionOperation.json | 307 +- .../TestPrivateEndpoint.json | 153888 ++++++++++++++- .../TestCassandraCreateUpdateGetCmdlets.json | 955 +- ...ssandraCreateUpdateGetCmdletsByPiping.json | 1105 +- ...TestCassandraMigrateThroughputCmdlets.json | 975 +- .../TestCassandraThroughputCmdlets.json | 1155 +- .../TestGremlinMigrateThroughputCmdlets.json | 887 +- .../TestGremlinOperationsCmdlets.json | 955 +- ...mlinOperationsCmdletsUsingInputObject.json | 1059 +- .../TestGremlinThroughputCmdlets.json | 1129 +- .../TestMongoMigrateThroughputCmdlets.json | 935 +- .../TestMongoOperationsCmdlets.json | 953 +- ...ongoOperationsCmdletsUsingInputObject.json | 1267 +- .../TestMongoThroughputCmdlets.json | 1105 +- .../TestSqlMigrateThroughputCmdlets.json | 939 +- .../TestSqlOperationsCmdlets.json | 2093 +- ...tSqlOperationsCmdletsUsingInputObject.json | 2374 +- .../TestSqlThroughputCmdlets.json | 1708 +- .../TestTableMigrateThroughputCmdlets.json | 478 +- .../TestTableOperationsCmdlets.json | 544 +- ...ableOperationsCmdletsUsingInputObject.json | 610 +- .../TestTableThroughputCmdlets.json | 537 +- src/CosmosDB/CosmosDB/CosmosDB.csproj | 2 +- .../CosmosDBAccount/NewAzCosmosDBAccount.cs | 2 +- .../UpdateAzCosmosDBAccount.cs | 3 - 31 files changed, 158272 insertions(+), 20119 deletions(-) diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj index 62b754c6ad81..647a4b1b9dac 100644 --- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj +++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj @@ -5,6 +5,6 @@ - + \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 index a68bbb7ffc91..f7f67617f2ad 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 @@ -25,7 +25,7 @@ function Test-AccountRelatedCmdlets $cosmosDBAccountName = "cosmosdb67" #use an existing account with the following information for Account Update Operations - $cosmosDBExistingAccountName = "dbaccount27" + $cosmosDBExistingAccountName = "dbaccount30" $existingResourceGroupName = "CosmosDBResourceGroup27" $IpRule = "201.168.50.1" @@ -33,9 +33,8 @@ function Test-AccountRelatedCmdlets $publicNetworkAccess = "Enabled" $networkAclBypass = "AzureServices" $networkAclBypassResourceId = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName" - $networkAclBypassResourceId2 = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName2" - $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId + $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -Location $location -IpRule $IpRule -Tag $tags -EnableVirtualNetwork -EnableMultipleWriteLocations -EnableAutomaticFailover -ApiKind "MongoDB" -PublicNetworkAccess $publicNetworkAccess -EnableFreeTier 0 -EnableAnalyticalStorage 0 -ServerVersion "3.2" -NetworkAclBypass $NetworkAclBypass Assert-AreEqual $cosmosDBAccountName $cosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $cosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -49,7 +48,7 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $cosmosDBAccount.EnableAnalyticalStorage 0 Assert-AreEqual $cosmosDBAccount.EnableFreeTier 0 Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass - Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 1 + Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 0 # create an existing database Try { @@ -59,7 +58,7 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $_.Exception.Message ("Resource with Name " + $cosmosDBAccountName + " already exists.") } - $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $existingResourceGroupName -Name $cosmosDBExistingAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypassResourceId $networkAclBypassResourceId,$networkAclBypassResourceId2 + $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $existingResourceGroupName -Name $cosmosDBExistingAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId Assert-AreEqual $cosmosDBExistingAccountName $updatedCosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $updatedCosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -68,8 +67,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $updatedCosmosDBAccount.EnableAutomaticFailover 1 Assert-AreEqual $updatedCosmosDBAccount.IsVirtualNetworkFilterEnabled 1 Assert-AreEqual $updatedCosmosDBAccount.PublicNetworkAccess $publicNetworkAccess - Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass - Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 2 + Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypass $NetworkAclBypass + Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypassResourceIds.Count 1 $cosmosDBAccountKey = Get-AzCosmosDBAccountKey -Name $cosmosDBAccountName -ResourceGroupName $rgname Assert-NotNull $cosmosDBAccountKey diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 index 70924a62231c..95183656a513 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 @@ -23,7 +23,7 @@ function Test-GremlinOperationsCmdlets $DatabaseName = "dbName" $graphName = "graph1" - $DatabaseName2 = "dbName2" + $DatabaseName2 = "dbName29" $graphName2 = "graph2" $PartitionKeyPathValue = "/foo" @@ -254,7 +254,7 @@ function Test-GremlinThroughputCmdlets { $AccountName = "db1002" $rgName = "CosmosDBResourceGroup2510" - $DatabaseName = "dbName3" + $DatabaseName = "dbName30" $GraphName = "graphName" $PartitionKeyPathValue = "/foo" 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 05c54fb8cbe6..fe061050f68c 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": [ - "00b38a41-6feb-47ae-8c80-761c89ffd920" + "dffe51a8-8eab-41f0-94b3-e66a37c84350" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b5909836-1233-4696-8845-e5e2ff407861" + "f315f66f-f0bc-4fdd-8faa-4b55d070236c" ], "x-ms-correlation-request-id": [ - "b5909836-1233-4696-8845-e5e2ff407861" + "f315f66f-f0bc-4fdd-8faa-4b55d070236c" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084122Z:b5909836-1233-4696-8845-e5e2ff407861" + "WESTUS2:20210216T203105Z:f315f66f-f0bc-4fdd-8faa-4b55d070236c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:41:22 GMT" + "Tue, 16 Feb 2021 20:31:04 GMT" ], "Content-Length": [ "199" @@ -64,25 +64,25 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89\",\r\n \"name\": \"CosmosDBResourceGroup89\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ec4ee5c-46c9-4f99-8d3e-b94440c70b83" + "b7a0fb8d-acff-445e-be12-5fa5519a8735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "638ce03b-373d-4d8e-9647-5c62f2515eb6" + "31e82357-6185-4674-a13b-9793498c8d3f" ], "x-ms-correlation-request-id": [ - "638ce03b-373d-4d8e-9647-5c62f2515eb6" + "31e82357-6185-4674-a13b-9793498c8d3f" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084122Z:638ce03b-373d-4d8e-9647-5c62f2515eb6" + "WESTUS2:20210216T203105Z:31e82357-6185-4674-a13b-9793498c8d3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:41:22 GMT" + "Tue, 16 Feb 2021 20:31:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b7a0fb8d-acff-445e-be12-5fa5519a8735" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -156,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "dbbc39a9-36b7-4190-a7e6-3f0d3be6037c" + "c43df612-5d58-4235-99ee-7492f08774c4" ], "x-ms-correlation-request-id": [ - "dbbc39a9-36b7-4190-a7e6-3f0d3be6037c" + "c43df612-5d58-4235-99ee-7492f08774c4" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084301Z:dbbc39a9-36b7-4190-a7e6-3f0d3be6037c" + "WESTUS2:20210216T203213Z:c43df612-5d58-4235-99ee-7492f08774c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:01 GMT" + "Tue, 16 Feb 2021 20:32:13 GMT" ], "Content-Length": [ - "2136" + "2245" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-05T08:42:09.1245262Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.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 \"instanceId\": \"9e333aba-dd95-45d0-a9bf-3f1e4bf8d33b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\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\": \"2021-02-16T20:31:42.3690649Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.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 \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8649d2a3-6506-43b2-a128-00b6fbc99534" + "63537bd1-3db0-4846-983f-5ca0734ae333" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -219,56 +222,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "6e80f747-d357-4797-ba03-292ff20c039b" + "2d1bc2a5-2797-4f32-9867-3e5eba95109f" ], "x-ms-correlation-request-id": [ - "6e80f747-d357-4797-ba03-292ff20c039b" + "2d1bc2a5-2797-4f32-9867-3e5eba95109f" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084301Z:6e80f747-d357-4797-ba03-292ff20c039b" + "WESTUS2:20210216T203213Z:2d1bc2a5-2797-4f32-9867-3e5eba95109f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:01 GMT" + "Tue, 16 Feb 2021 20:32:13 GMT" ], "Content-Length": [ - "2136" + "2245" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-05T08:42:09.1245262Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.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 \"instanceId\": \"9e333aba-dd95-45d0-a9bf-3f1e4bf8d33b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\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\": \"2021-02-16T20:31:42.3690649Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb67.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 \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb67-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\": \"cosmosdb67-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\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 \"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}", "RequestHeaders": { "x-ms-client-request-id": [ - "1132823b-95a3-4ae4-86e1-0e75dd91e713" + "b7a0fb8d-acff-445e-be12-5fa5519a8735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "940" + "1022" ] }, "ResponseHeaders": { @@ -279,13 +282,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/operationResults/ffefde7f-fc3a-4ab9-bd06-85f6bead112e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/operationResults/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15" ], "x-ms-request-id": [ - "ffefde7f-fc3a-4ab9-bd06-85f6bead112e" + "84c5fe82-0e4d-423a-937d-a4cdd966be6f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffefde7f-fc3a-4ab9-bd06-85f6bead112e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,38 +303,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "3b4510f0-471a-4b17-8a47-a00e91557cbe" + "f1073fb2-5d63-48a9-a4dd-62193f09ade1" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084130Z:3b4510f0-471a-4b17-8a47-a00e91557cbe" + "WESTUS2:20210216T203113Z:f1073fb2-5d63-48a9-a4dd-62193f09ade1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:41:30 GMT" + "Tue, 16 Feb 2021 20:31:12 GMT" ], "Content-Length": [ - "1826" + "1935" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-05T08:41:29.4328564Z\"\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 \"instanceId\": \"9e333aba-dd95-45d0-a9bf-3f1e4bf8d33b\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb67-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\": \"cosmosdb67-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\": \"cosmosdb67-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\": \"cosmosdb67-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67\",\r\n \"name\": \"cosmosdb67\",\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\": \"2021-02-16T20:31:11.3318186Z\"\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 \"instanceId\": \"5f724c54-8236-4286-a8e6-4b65171aa7ec\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"cosmosdb67-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\": \"cosmosdb67-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\": \"cosmosdb67-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\": \"cosmosdb67-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/ffefde7f-fc3a-4ab9-bd06-85f6bead112e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmZlZmRlN2YtZmMzYS00YWI5LWJkMDYtODVmNmJlYWQxMTJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b7a0fb8d-acff-445e-be12-5fa5519a8735" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -354,19 +360,19 @@ "11998" ], "x-ms-request-id": [ - "66fecfb2-6b79-429c-8275-4383a6eb13d6" + "1a68a3d0-d585-4f44-920a-e9307500f35b" ], "x-ms-correlation-request-id": [ - "66fecfb2-6b79-429c-8275-4383a6eb13d6" + "1a68a3d0-d585-4f44-920a-e9307500f35b" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084201Z:66fecfb2-6b79-429c-8275-4383a6eb13d6" + "WESTUS2:20210216T203143Z:1a68a3d0-d585-4f44-920a-e9307500f35b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:42:01 GMT" + "Tue, 16 Feb 2021 20:31:42 GMT" ], "Content-Length": [ "21" @@ -379,73 +385,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ffefde7f-fc3a-4ab9-bd06-85f6bead112e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmZlZmRlN2YtZmMzYS00YWI5LWJkMDYtODVmNmJlYWQxMTJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "c322b3ca-ae32-417d-a10a-72f7df50212a" - ], - "x-ms-correlation-request-id": [ - "c322b3ca-ae32-417d-a10a-72f7df50212a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20210105T084231Z:c322b3ca-ae32-417d-a10a-72f7df50212a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 05 Jan 2021 08:42:31 GMT" - ], - "Content-Length": [ - "21" + "x-ms-client-request-id": [ + "b7a0fb8d-acff-445e-be12-5fa5519a8735" ], - "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/ffefde7f-fc3a-4ab9-bd06-85f6bead112e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmZlZmRlN2YtZmMzYS00YWI5LWJkMDYtODVmNmJlYWQxMTJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -465,22 +417,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "c3060575-f01b-4512-9d79-05113f4171a8" + "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" ], "x-ms-correlation-request-id": [ - "c3060575-f01b-4512-9d79-05113f4171a8" + "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084301Z:c3060575-f01b-4512-9d79-05113f4171a8" + "WESTUS2:20210216T203213Z:bf992cd2-a9e6-4dcc-8a63-64c70fc90798" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:00 GMT" + "Tue, 16 Feb 2021 20:32:13 GMT" ], "Content-Length": [ "22" @@ -493,22 +445,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef36fb0e-6bac-410a-955b-4622466336d4" + "cfc82877-4afe-4019-b8b6-a7e569dc7330" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -528,44 +480,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "e21b18e0-cc50-4a43-92d4-e93ae36e9eab" + "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" ], "x-ms-correlation-request-id": [ - "e21b18e0-cc50-4a43-92d4-e93ae36e9eab" + "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084301Z:e21b18e0-cc50-4a43-92d4-e93ae36e9eab" + "WESTUS2:20210216T203214Z:76d6529b-9b93-4f34-9bec-e38d4cfa09c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:01 GMT" + "Tue, 16 Feb 2021 20:32:14 GMT" ], "Content-Length": [ - "2098" + "2310" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-09-25T03:11:31.3141435Z\"\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\": 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 \"instanceId\": \"96196547-a691-4c1a-a5c3-d444d5933a30\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\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\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\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 \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\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/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc82877-4afe-4019-b8b6-a7e569dc7330" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -585,56 +540,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "d7217d9b-ef02-4546-8185-deac6ba1fade" + "8558d06c-6be8-4fdd-95e0-828e6cad3641" ], "x-ms-correlation-request-id": [ - "d7217d9b-ef02-4546-8185-deac6ba1fade" + "8558d06c-6be8-4fdd-95e0-828e6cad3641" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084336Z:d7217d9b-ef02-4546-8185-deac6ba1fade" + "WESTUS2:20210216T203248Z:8558d06c-6be8-4fdd-95e0-828e6cad3641" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:35 GMT" + "Tue, 16 Feb 2021 20:32:47 GMT" ], "Content-Length": [ - "2087" + "2310" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-09-25T03:11:31.3141435Z\"\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\": false,\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 \"instanceId\": \"96196547-a691-4c1a-a5c3-d444d5933a30\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\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\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\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 \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\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/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"location\": \"West 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\": \"West 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 }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US 2\",\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 2\",\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 \"networkAclBypass\": \"AzureServices\",\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": [ - "aab08879-4527-4e9f-b075-7d56a20aa850" + "cfc82877-4afe-4019-b8b6-a7e569dc7330" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "695" + "892" ] }, "ResponseHeaders": { @@ -645,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/af7b8d72-c98d-4076-a23c-6124b72095a2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30/operationResults/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15" ], "x-ms-request-id": [ - "af7b8d72-c98d-4076-a23c-6124b72095a2" + "28e4526f-1632-484c-92bd-c548cdb3b8e8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af7b8d72-c98d-4076-a23c-6124b72095a2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,38 +621,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "323df42f-754f-4dc9-a4e5-b231dc8696b2" + "a584d9bf-56e2-4be2-9777-17d920bd18e6" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084305Z:323df42f-754f-4dc9-a4e5-b231dc8696b2" + "WESTUS2:20210216T203217Z:a584d9bf-56e2-4be2-9777-17d920bd18e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:04 GMT" + "Tue, 16 Feb 2021 20:32:17 GMT" ], "Content-Length": [ - "2094" + "2306" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-09-25T03:11:31.3141435Z\"\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\": 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 \"instanceId\": \"96196547-a691-4c1a-a5c3-d444d5933a30\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-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\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30\",\r\n \"name\": \"dbaccount30\",\r\n \"location\": \"East US 2\",\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\": \"2021-02-16T19:09:26.6774488Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://dbaccount30.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": true,\r\n \"enableMultipleWriteLocations\": false,\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 \"instanceId\": \"78bf6309-5896-4fb5-8b7d-9c33093eed5e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 1,\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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount30-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\": \"dbaccount30-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [\r\n \"/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName\"\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/af7b8d72-c98d-4076-a23c-6124b72095a2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWY3YjhkNzItYzk4ZC00MDc2LWEyM2MtNjEyNGI3MjA5NWEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzI4ZTQ1MjZmLTE2MzItNDg0Yy05MmJkLWM1NDhjZGIzYjhlOD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc82877-4afe-4019-b8b6-a7e569dc7330" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -717,22 +675,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "db85ed73-18a8-48e6-bbce-39c7bf327b55" + "e05b9aab-72d9-4199-967e-53fa669fb333" ], "x-ms-correlation-request-id": [ - "db85ed73-18a8-48e6-bbce-39c7bf327b55" + "e05b9aab-72d9-4199-967e-53fa669fb333" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084335Z:db85ed73-18a8-48e6-bbce-39c7bf327b55" + "WESTUS2:20210216T203247Z:e05b9aab-72d9-4199-967e-53fa669fb333" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:35 GMT" + "Tue, 16 Feb 2021 20:32:47 GMT" ], "Content-Length": [ "22" @@ -745,22 +703,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d067fc51-9a9f-4395-a789-936d9597ec7e" + "70e1251e-b987-4ada-b9db-d88e475ee72f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -783,19 +741,19 @@ "1199" ], "x-ms-request-id": [ - "9406003c-af3d-4424-a19c-c929bbc0fd26" + "e767e29c-14f6-4aa8-9958-c78278da7044" ], "x-ms-correlation-request-id": [ - "9406003c-af3d-4424-a19c-c929bbc0fd26" + "e767e29c-14f6-4aa8-9958-c78278da7044" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084336Z:9406003c-af3d-4424-a19c-c929bbc0fd26" + "WESTUS2:20210216T203248Z:e767e29c-14f6-4aa8-9958-c78278da7044" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:35 GMT" + "Tue, 16 Feb 2021 20:32:47 GMT" ], "Content-Length": [ "461" @@ -804,26 +762,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"U4n724Jg7R0P6gwudPksdOSzQMvweLPkjKvYlBmHEH4Ak4DjzM2ZN8fBZO0SLAMHh6XiH1Ou7HvqNc0qkLJjag==\",\r\n \"secondaryMasterKey\": \"icYyvFXdWR5BSf2QQyLdoNFKzVJNcdsaARX9N4TR3L3hxjWi25RzBgilGc2akfA2nuioXJLkKRhozABlpZWGXg==\",\r\n \"primaryReadonlyMasterKey\": \"BzfVHTF6KaHUDgFCBYGJa8JqWtvBq59bULGSN3oqWI2x5T10OxXy4rVY3vujEZewVv3lxpMu0cRzpHIBflBgcA==\",\r\n \"secondaryReadonlyMasterKey\": \"OMJk2NY6KpWmTgfNGCTT5QybZyTngGvMBAxSfGNrhlBgCABQUCdsmTnB30Kn3irNGjT8JGOnqg6EEUExvKdTLQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"eEe9d4fbKlKr9L41rpM9wS8h10WDc8oyU8pez2ntu0Pv0iJ5xSaQmskFYpAZ9dgbSBAJTvtfogFWSRvDd1WSaA==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08553b77-f7ea-4ff4-8788-64c94958a013" + "07e2ad93-dbbb-4b41-9521-37158e9a9f80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -846,19 +804,19 @@ "1195" ], "x-ms-request-id": [ - "ca08831f-9840-4fc7-86fb-85ec3f3b6d9c" + "5a37b0ea-c266-481c-ae25-44f49610e3db" ], "x-ms-correlation-request-id": [ - "ca08831f-9840-4fc7-86fb-85ec3f3b6d9c" + "5a37b0ea-c266-481c-ae25-44f49610e3db" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084409Z:ca08831f-9840-4fc7-86fb-85ec3f3b6d9c" + "WESTUS2:20210216T203321Z:5a37b0ea-c266-481c-ae25-44f49610e3db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:44:08 GMT" + "Tue, 16 Feb 2021 20:33:20 GMT" ], "Content-Length": [ "461" @@ -867,26 +825,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"HeCrJomeU8HeYd64xqcaWZDMfTdejCKSBGXlS29yl8TTR4P9GbOR4w2dWeAddMG566KFo9IhF6jxq1VwwxCwcw==\",\r\n \"secondaryMasterKey\": \"icYyvFXdWR5BSf2QQyLdoNFKzVJNcdsaARX9N4TR3L3hxjWi25RzBgilGc2akfA2nuioXJLkKRhozABlpZWGXg==\",\r\n \"primaryReadonlyMasterKey\": \"BzfVHTF6KaHUDgFCBYGJa8JqWtvBq59bULGSN3oqWI2x5T10OxXy4rVY3vujEZewVv3lxpMu0cRzpHIBflBgcA==\",\r\n \"secondaryReadonlyMasterKey\": \"OMJk2NY6KpWmTgfNGCTT5QybZyTngGvMBAxSfGNrhlBgCABQUCdsmTnB30Kn3irNGjT8JGOnqg6EEUExvKdTLQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"E5jYTL5tZs9Jga69Lgr3BzIVkutQwslxIoWKSDZ37HUbv5glJ6nPuWVVMQLN0VWphgeLdIJEqlXjm0Re3ADcqg==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listConnectionStrings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdENvbm5lY3Rpb25TdHJpbmdzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listConnectionStrings?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdENvbm5lY3Rpb25TdHJpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0253b9ca-585c-4b2b-9257-a03082210145" + "4fb5fcf0-6478-4b6d-8518-1c6338caa258" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -909,19 +867,19 @@ "1198" ], "x-ms-request-id": [ - "05614207-3cf1-42b6-9a9c-0b26d6576c33" + "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" ], "x-ms-correlation-request-id": [ - "05614207-3cf1-42b6-9a9c-0b26d6576c33" + "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084336Z:05614207-3cf1-42b6-9a9c-0b26d6576c33" + "WESTUS2:20210216T203248Z:9b29d39a-ed43-4fdd-8346-f4e706aed7ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:36 GMT" + "Tue, 16 Feb 2021 20:32:48 GMT" ], "Content-Length": [ "1047" @@ -930,26 +888,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:U4n724Jg7R0P6gwudPksdOSzQMvweLPkjKvYlBmHEH4Ak4DjzM2ZN8fBZO0SLAMHh6XiH1Ou7HvqNc0qkLJjag==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:icYyvFXdWR5BSf2QQyLdoNFKzVJNcdsaARX9N4TR3L3hxjWi25RzBgilGc2akfA2nuioXJLkKRhozABlpZWGXg==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:BzfVHTF6KaHUDgFCBYGJa8JqWtvBq59bULGSN3oqWI2x5T10OxXy4rVY3vujEZewVv3lxpMu0cRzpHIBflBgcA==@cosmosdb67.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://cosmosdb67:OMJk2NY6KpWmTgfNGCTT5QybZyTngGvMBAxSfGNrhlBgCABQUCdsmTnB30Kn3irNGjT8JGOnqg6EEUExvKdTLQ==@cosmosdb67.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://cosmosdb67:eEe9d4fbKlKr9L41rpM9wS8h10WDc8oyU8pez2ntu0Pv0iJ5xSaQmskFYpAZ9dgbSBAJTvtfogFWSRvDd1WSaA==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==@cosmosdb67.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb67:F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==@cosmosdb67.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://cosmosdb67:WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==@cosmosdb67.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/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/readonlykeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVhZG9ubHlrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/readonlykeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVhZG9ubHlrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c71a3e82-e00f-4884-b9cc-fa65aaa52319" + "b5f5741f-47f3-46a2-8d83-5e6679491939" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -972,19 +930,19 @@ "1197" ], "x-ms-request-id": [ - "1e3d53c3-c929-4947-820f-8347017a5140" + "6408df58-5241-4f13-a833-3bd567db2af0" ], "x-ms-correlation-request-id": [ - "1e3d53c3-c929-4947-820f-8347017a5140" + "6408df58-5241-4f13-a833-3bd567db2af0" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084337Z:1e3d53c3-c929-4947-820f-8347017a5140" + "WESTUS2:20210216T203249Z:6408df58-5241-4f13-a833-3bd567db2af0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:36 GMT" + "Tue, 16 Feb 2021 20:32:48 GMT" ], "Content-Length": [ "239" @@ -993,26 +951,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"BzfVHTF6KaHUDgFCBYGJa8JqWtvBq59bULGSN3oqWI2x5T10OxXy4rVY3vujEZewVv3lxpMu0cRzpHIBflBgcA==\",\r\n \"secondaryReadonlyMasterKey\": \"OMJk2NY6KpWmTgfNGCTT5QybZyTngGvMBAxSfGNrhlBgCABQUCdsmTnB30Kn3irNGjT8JGOnqg6EEUExvKdTLQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4febaa76-302e-4b98-953a-5a8e78e1aa47" + "07e2ad93-dbbb-4b41-9521-37158e9a9f80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,13 +987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/ab7f401f-d75f-40bd-9e3c-f5fd89629e50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab7f401f-d75f-40bd-9e3c-f5fd89629e50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15" ], "x-ms-request-id": [ - "ab7f401f-d75f-40bd-9e3c-f5fd89629e50" + "4b294b57-c5bf-42fa-8cd5-34a3fba937d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,16 +1008,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "b38a0460-921f-494c-beec-f327b3efbaa6" + "d711e5d6-f3df-46d3-ac87-0abd0503e170" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084338Z:b38a0460-921f-494c-beec-f327b3efbaa6" + "WESTUS2:20210216T203250Z:d711e5d6-f3df-46d3-ac87-0abd0503e170" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:43:37 GMT" + "Tue, 16 Feb 2021 20:32:49 GMT" ], "Content-Length": [ "21" @@ -1072,16 +1030,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ab7f401f-d75f-40bd-9e3c-f5fd89629e50?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWI3ZjQwMWYtZDc1Zi00MGJkLTllM2MtZjVmZDg5NjI5ZTUwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGIyOTRiNTctYzViZi00MmZhLThjZDUtMzRhM2ZiYTkzN2QxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1101,22 +1062,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-request-id": [ - "e09be0ff-1c79-465d-8aa5-764c79fa7145" + "036120a7-08c1-42d4-9774-ff5bc19591a6" ], "x-ms-correlation-request-id": [ - "e09be0ff-1c79-465d-8aa5-764c79fa7145" + "036120a7-08c1-42d4-9774-ff5bc19591a6" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084408Z:e09be0ff-1c79-465d-8aa5-764c79fa7145" + "WESTUS2:20210216T203321Z:036120a7-08c1-42d4-9774-ff5bc19591a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:44:07 GMT" + "Tue, 16 Feb 2021 20:33:20 GMT" ], "Content-Length": [ "22" @@ -1129,16 +1090,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/ab7f401f-d75f-40bd-9e3c-f5fd89629e50?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleS9vcGVyYXRpb25SZXN1bHRzL2FiN2Y0MDFmLWQ3NWYtNDBiZC05ZTNjLWY1ZmQ4OTYyOWU1MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey/operationResults/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleS9vcGVyYXRpb25SZXN1bHRzLzRiMjk0YjU3LWM1YmYtNDJmYS04Y2Q1LTM0YTNmYmE5MzdkMT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1158,22 +1122,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "b15b137f-abbf-45d2-9a8c-141af065ccfe" + "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" ], "x-ms-correlation-request-id": [ - "b15b137f-abbf-45d2-9a8c-141af065ccfe" + "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084408Z:b15b137f-abbf-45d2-9a8c-141af065ccfe" + "WESTUS2:20210216T203321Z:88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:44:07 GMT" + "Tue, 16 Feb 2021 20:33:20 GMT" ], "Content-Length": [ "22" @@ -1186,22 +1150,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f1b421d-6f06-4b9c-8620-c313a18cca6d" + "2a7aec92-455c-4441-9b76-0690aebe67d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1212,13 +1176,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15" ], "x-ms-request-id": [ - "2814234e-2a73-4934-8100-ef88dcb45db7" + "ac337f03-f678-4c1a-8c31-edd81bbe0fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,16 +1197,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "aacc23d7-b6b2-4d8f-9417-baf8cf5c7063" + "f4473f58-991a-4af0-b920-a0c8ffbdbedf" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084410Z:aacc23d7-b6b2-4d8f-9417-baf8cf5c7063" + "WESTUS2:20210216T203323Z:f4473f58-991a-4af0-b920-a0c8ffbdbedf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:44:09 GMT" + "Tue, 16 Feb 2021 20:33:22 GMT" ], "Content-Length": [ "21" @@ -1255,16 +1219,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1284,22 +1251,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "67ee41f4-9dfe-4b5f-a3d7-ebe988593958" + "d0153cd5-d474-4a50-9961-8ecf7f2e235b" ], "x-ms-correlation-request-id": [ - "67ee41f4-9dfe-4b5f-a3d7-ebe988593958" + "d0153cd5-d474-4a50-9961-8ecf7f2e235b" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084440Z:67ee41f4-9dfe-4b5f-a3d7-ebe988593958" + "WESTUS2:20210216T203353Z:d0153cd5-d474-4a50-9961-8ecf7f2e235b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:44:40 GMT" + "Tue, 16 Feb 2021 20:33:52 GMT" ], "Content-Length": [ "21" @@ -1312,16 +1279,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1341,22 +1311,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "ae1bff9a-e3c7-4b68-81c5-ef976f23209b" + "23c5953e-64a6-4c64-b98b-a72b785bee86" ], "x-ms-correlation-request-id": [ - "ae1bff9a-e3c7-4b68-81c5-ef976f23209b" + "23c5953e-64a6-4c64-b98b-a72b785bee86" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084511Z:ae1bff9a-e3c7-4b68-81c5-ef976f23209b" + "WESTUS2:20210216T203423Z:23c5953e-64a6-4c64-b98b-a72b785bee86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:45:10 GMT" + "Tue, 16 Feb 2021 20:34:23 GMT" ], "Content-Length": [ "21" @@ -1369,16 +1339,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1398,22 +1371,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-request-id": [ - "c29a86ab-ca3e-4c30-830b-8f23221c862d" + "c5be7736-58cf-42c6-ac92-e86386a65c27" ], "x-ms-correlation-request-id": [ - "c29a86ab-ca3e-4c30-830b-8f23221c862d" + "c5be7736-58cf-42c6-ac92-e86386a65c27" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084541Z:c29a86ab-ca3e-4c30-830b-8f23221c862d" + "WESTUS2:20210216T203453Z:c5be7736-58cf-42c6-ac92-e86386a65c27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:45:40 GMT" + "Tue, 16 Feb 2021 20:34:53 GMT" ], "Content-Length": [ "21" @@ -1426,16 +1399,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1455,22 +1431,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "d019bd8a-041c-421a-9084-314a198b8fbd" + "f8f76093-6710-42a7-8f53-6d6a866e47b6" ], "x-ms-correlation-request-id": [ - "d019bd8a-041c-421a-9084-314a198b8fbd" + "f8f76093-6710-42a7-8f53-6d6a866e47b6" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084611Z:d019bd8a-041c-421a-9084-314a198b8fbd" + "WESTUS2:20210216T203523Z:f8f76093-6710-42a7-8f53-6d6a866e47b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:46:10 GMT" + "Tue, 16 Feb 2021 20:35:23 GMT" ], "Content-Length": [ "21" @@ -1483,16 +1459,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1512,22 +1491,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-request-id": [ - "67e0503b-f0f5-4fe3-b83f-82517e9ab89e" + "07450f59-3bac-4404-98ec-cbbbd36fe27d" ], "x-ms-correlation-request-id": [ - "67e0503b-f0f5-4fe3-b83f-82517e9ab89e" + "07450f59-3bac-4404-98ec-cbbbd36fe27d" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084642Z:67e0503b-f0f5-4fe3-b83f-82517e9ab89e" + "WESTUS2:20210216T203554Z:07450f59-3bac-4404-98ec-cbbbd36fe27d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:46:42 GMT" + "Tue, 16 Feb 2021 20:35:53 GMT" ], "Content-Length": [ "21" @@ -1540,16 +1519,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1569,22 +1551,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-request-id": [ - "81d0787c-c2f5-4af1-b4e8-db3b591a8f9f" + "63cefe82-7430-46e9-8c13-d6339a68dae1" ], "x-ms-correlation-request-id": [ - "81d0787c-c2f5-4af1-b4e8-db3b591a8f9f" + "63cefe82-7430-46e9-8c13-d6339a68dae1" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084712Z:81d0787c-c2f5-4af1-b4e8-db3b591a8f9f" + "WESTUS2:20210216T203624Z:63cefe82-7430-46e9-8c13-d6339a68dae1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:47:12 GMT" + "Tue, 16 Feb 2021 20:36:23 GMT" ], "Content-Length": [ "21" @@ -1597,16 +1579,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1626,22 +1611,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-request-id": [ - "6f951edd-8aec-4e94-bc48-deb3188cbe0c" + "14fc2b20-7114-46fe-b683-e3d46a4bac3a" ], "x-ms-correlation-request-id": [ - "6f951edd-8aec-4e94-bc48-deb3188cbe0c" + "14fc2b20-7114-46fe-b683-e3d46a4bac3a" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084742Z:6f951edd-8aec-4e94-bc48-deb3188cbe0c" + "WESTUS2:20210216T203654Z:14fc2b20-7114-46fe-b683-e3d46a4bac3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:47:41 GMT" + "Tue, 16 Feb 2021 20:36:54 GMT" ], "Content-Length": [ "21" @@ -1654,16 +1639,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1683,22 +1671,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-request-id": [ - "14fdf04b-0384-43b7-9943-663b64fc4b82" + "fbe934aa-49ed-454d-8a30-33ea04261eb8" ], "x-ms-correlation-request-id": [ - "14fdf04b-0384-43b7-9943-663b64fc4b82" + "fbe934aa-49ed-454d-8a30-33ea04261eb8" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084812Z:14fdf04b-0384-43b7-9943-663b64fc4b82" + "WESTUS2:20210216T203724Z:fbe934aa-49ed-454d-8a30-33ea04261eb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:48:11 GMT" + "Tue, 16 Feb 2021 20:37:23 GMT" ], "Content-Length": [ "21" @@ -1711,16 +1699,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1740,22 +1731,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-request-id": [ - "46d74250-ce9f-44b5-bde9-94602f94b42f" + "2bf86005-cf75-4aee-92d9-725a44ae9a75" ], "x-ms-correlation-request-id": [ - "46d74250-ce9f-44b5-bde9-94602f94b42f" + "2bf86005-cf75-4aee-92d9-725a44ae9a75" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084842Z:46d74250-ce9f-44b5-bde9-94602f94b42f" + "WESTUS2:20210216T203754Z:2bf86005-cf75-4aee-92d9-725a44ae9a75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:48:41 GMT" + "Tue, 16 Feb 2021 20:37:54 GMT" ], "Content-Length": [ "21" @@ -1768,16 +1759,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1797,22 +1791,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-request-id": [ - "e253012e-7e4d-4f64-ae8c-7c3a5e0f220f" + "47e4fc6d-19d8-421f-b6a4-057e6298d15e" ], "x-ms-correlation-request-id": [ - "e253012e-7e4d-4f64-ae8c-7c3a5e0f220f" + "47e4fc6d-19d8-421f-b6a4-057e6298d15e" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084912Z:e253012e-7e4d-4f64-ae8c-7c3a5e0f220f" + "WESTUS2:20210216T203824Z:47e4fc6d-19d8-421f-b6a4-057e6298d15e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:49:12 GMT" + "Tue, 16 Feb 2021 20:38:24 GMT" ], "Content-Length": [ "21" @@ -1825,16 +1819,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1854,22 +1851,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-request-id": [ - "20eb7cf4-ac4c-44c6-b5e7-f5e04f872bf0" + "ce95003e-c9c4-4d09-9a48-d861de9f43a7" ], "x-ms-correlation-request-id": [ - "20eb7cf4-ac4c-44c6-b5e7-f5e04f872bf0" + "ce95003e-c9c4-4d09-9a48-d861de9f43a7" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T084943Z:20eb7cf4-ac4c-44c6-b5e7-f5e04f872bf0" + "WESTUS2:20210216T203855Z:ce95003e-c9c4-4d09-9a48-d861de9f43a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:49:42 GMT" + "Tue, 16 Feb 2021 20:38:54 GMT" ], "Content-Length": [ "21" @@ -1882,16 +1879,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1911,22 +1911,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-request-id": [ - "6bea8d44-002b-429c-9c8d-87a37d24b9ec" + "f781b2c0-4136-40f7-bd76-66cc465e5194" ], "x-ms-correlation-request-id": [ - "6bea8d44-002b-429c-9c8d-87a37d24b9ec" + "f781b2c0-4136-40f7-bd76-66cc465e5194" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T085013Z:6bea8d44-002b-429c-9c8d-87a37d24b9ec" + "WESTUS2:20210216T203925Z:f781b2c0-4136-40f7-bd76-66cc465e5194" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:50:12 GMT" + "Tue, 16 Feb 2021 20:39:24 GMT" ], "Content-Length": [ "21" @@ -1939,16 +1939,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1968,22 +1971,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-request-id": [ - "cf4a32eb-dc13-400f-9172-bcee633d444a" + "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" ], "x-ms-correlation-request-id": [ - "cf4a32eb-dc13-400f-9172-bcee633d444a" + "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T085043Z:cf4a32eb-dc13-400f-9172-bcee633d444a" + "WESTUS2:20210216T203955Z:8ec995c9-5ffe-4573-b24e-5ff69168a9aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:50:42 GMT" + "Tue, 16 Feb 2021 20:39:55 GMT" ], "Content-Length": [ "21" @@ -1996,16 +1999,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2025,22 +2031,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-request-id": [ - "2daccb85-32b2-4cb5-8767-1fa1ba50282c" + "bac4b008-32fa-463b-bede-56fbecb9b53f" ], "x-ms-correlation-request-id": [ - "2daccb85-32b2-4cb5-8767-1fa1ba50282c" + "bac4b008-32fa-463b-bede-56fbecb9b53f" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T085113Z:2daccb85-32b2-4cb5-8767-1fa1ba50282c" + "WESTUS2:20210216T204026Z:bac4b008-32fa-463b-bede-56fbecb9b53f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:51:13 GMT" + "Tue, 16 Feb 2021 20:40:25 GMT" ], "Content-Length": [ "21" @@ -2053,16 +2059,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2082,22 +2091,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-request-id": [ - "8bfa1546-69e8-41c0-b20e-89ae3cacaac0" + "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" ], "x-ms-correlation-request-id": [ - "8bfa1546-69e8-41c0-b20e-89ae3cacaac0" + "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T085143Z:8bfa1546-69e8-41c0-b20e-89ae3cacaac0" + "WESTUS2:20210216T204056Z:8d01fcca-59bf-4fe5-b18c-b68692ecc63c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:51:43 GMT" + "Tue, 16 Feb 2021 20:40:55 GMT" ], "Content-Length": [ "22" @@ -2110,16 +2119,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/2814234e-2a73-4934-8100-ef88dcb45db7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMjgxNDIzNGUtMmE3My00OTM0LTgxMDAtZWY4OGRjYjQ1ZGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationResults/ac337f03-f678-4c1a-8c31-edd81bbe0fbe?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvYWMzMzdmMDMtZjY3OC00YzFhLThjMzEtZWRkODFiYmUwZmJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a7aec92-455c-4441-9b76-0690aebe67d9" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2133,28 +2145,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "965c2b90-a53e-46d9-8c6c-dd70b8f509f6" + "2a7aec92-455c-4441-9b76-0690aebe67d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-request-id": [ - "64b21bb7-2fab-460d-b99e-d587bddac0ac" + "2230b7c0-9702-429b-92b6-46d9889f6482" ], "x-ms-correlation-request-id": [ - "64b21bb7-2fab-460d-b99e-d587bddac0ac" + "2230b7c0-9702-429b-92b6-46d9889f6482" ], "x-ms-routing-request-id": [ - "WESTUS:20210105T085143Z:64b21bb7-2fab-460d-b99e-d587bddac0ac" + "WESTUS2:20210216T204056Z:2230b7c0-9702-429b-92b6-46d9889f6482" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 05 Jan 2021 08:51:43 GMT" + "Tue, 16 Feb 2021 20:40:55 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 e2c9b78f811e..03e42fbd2eed 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f004c8c2-c2ac-4362-a9f0-01d03e983ed5" + "44c6c128-adbd-4ee4-ad93-e1c705687075" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,50 +39,47 @@ "11999" ], "x-ms-request-id": [ - "76cf33b5-f7f5-4345-bfb2-6df40e309754" + "b9d4d8e9-c3d9-4fd1-8cae-b4ae0d1ae6cc" ], "x-ms-correlation-request-id": [ - "76cf33b5-f7f5-4345-bfb2-6df40e309754" + "b9d4d8e9-c3d9-4fd1-8cae-b4ae0d1ae6cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234000Z:76cf33b5-f7f5-4345-bfb2-6df40e309754" + "WESTUS2:20210216T185316Z:b9d4d8e9-c3d9-4fd1-8cae-b4ae0d1ae6cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:40:00 GMT" + "Tue, 16 Feb 2021 18:53:16 GMT" ], "Content-Length": [ - "1877" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8c9570a-5ce8-48fa-86c7-cab4b4b4cf76" + "ecef58d4-c717-44c5-805e-62ddd5fac5ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -105,110 +102,47 @@ "11998" ], "x-ms-request-id": [ - "cecd9b3d-1e0d-409f-9c23-68649bee4d36" - ], - "x-ms-correlation-request-id": [ - "cecd9b3d-1e0d-409f-9c23-68649bee4d36" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200610T234000Z:cecd9b3d-1e0d-409f-9c23-68649bee4d36" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Jun 2020 23:40:00 GMT" - ], - "Content-Length": [ - "1877" - ], - "Content-Type": [ - "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "9038350e-f5ad-4298-b20c-88440ff63b95" + "9a9f4cb8-5b7d-48e4-b3f9-cb94828e4f1c" ], "x-ms-correlation-request-id": [ - "9038350e-f5ad-4298-b20c-88440ff63b95" + "9a9f4cb8-5b7d-48e4-b3f9-cb94828e4f1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234135Z:9038350e-f5ad-4298-b20c-88440ff63b95" + "WESTUS2:20210216T185316Z:9a9f4cb8-5b7d-48e4-b3f9-cb94828e4f1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:35 GMT" + "Tue, 16 Feb 2021 18:53:16 GMT" ], "Content-Length": [ - "1877" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\"\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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f966a3-01d8-4214-b2eb-d9fa0a6b0d9a" + "3d8f38f5-e1ce-4c3e-b463-c98fdd87edf0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,59 +162,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "69ca6400-d414-44c1-bf3b-347d83bc590a" + "0f63f104-e2cc-43fb-bef8-7cbf3be54e47" ], "x-ms-correlation-request-id": [ - "69ca6400-d414-44c1-bf3b-347d83bc590a" + "0f63f104-e2cc-43fb-bef8-7cbf3be54e47" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234135Z:69ca6400-d414-44c1-bf3b-347d83bc590a" + "WESTUS2:20210216T185319Z:0f63f104-e2cc-43fb-bef8-7cbf3be54e47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:35 GMT" + "Tue, 16 Feb 2021 18:53:19 GMT" ], "Content-Length": [ - "1877" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\"\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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US 2\",\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 2\",\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 \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"location\": \"East US 2\",\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 2\",\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 \"networkAclBypass\": \"None\",\r\n \"networkAclBypassResourceIds\": []\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eb780baa-2717-4b72-8468-841c93ee07b7" + "ecef58d4-c717-44c5-805e-62ddd5fac5ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "660" + "733" ] }, "ResponseHeaders": { @@ -290,15 +221,6 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01" - ], - "x-ms-request-id": [ - "44db1fc1-aa24-4740-8ac3-0dc28cfec477" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -311,42 +233,48 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ + "5ebcd1d4-2e00-4da7-a335-17bd532dc939" + ], "x-ms-correlation-request-id": [ - "84b9c661-21bc-4870-a4cc-58e4052021eb" + "5ebcd1d4-2e00-4da7-a335-17bd532dc939" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234004Z:84b9c661-21bc-4870-a4cc-58e4052021eb" + "WESTUS2:20210216T185319Z:5ebcd1d4-2e00-4da7-a335-17bd532dc939" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:40:03 GMT" + "Tue, 16 Feb 2021 18:53:18 GMT" ], "Content-Length": [ - "1873" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ0ZGIxZmMxLWFhMjQtNDc0MC04YWMzLTBkYzI4Y2ZlYzQ3Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f657c11c-02ee-48ee-9ad4-0a004117d406" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -365,48 +293,51 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "d1a7984e-8653-4621-a2a7-7d742ec68e67" + "dd0ffd68-9c6b-4433-810c-0d8c915240b1" ], "x-ms-correlation-request-id": [ - "d1a7984e-8653-4621-a2a7-7d742ec68e67" + "dd0ffd68-9c6b-4433-810c-0d8c915240b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234034Z:d1a7984e-8653-4621-a2a7-7d742ec68e67" + "WESTUS2:20210216T185319Z:dd0ffd68-9c6b-4433-810c-0d8c915240b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:40:33 GMT" + "Tue, 16 Feb 2021 18:53:19 GMT" ], "Content-Length": [ - "21" + "461" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==\",\r\n \"secondaryMasterKey\": \"tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==\",\r\n \"primaryReadonlyMasterKey\": \"L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==\",\r\n \"secondaryReadonlyMasterKey\": \"3s3VSmmTN3p4EarYIEjh1CxoEKi2BzwrjfUfz0eQUqjP6yaEq7zx7kwMurRGLyuucaBsberJCfk4BkG9ESiAmA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ0ZGIxZmMxLWFhMjQtNDc0MC04YWMzLTBkYzI4Y2ZlYzQ3Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c3f7a1c9-84fa-47b2-9ad5-487777a86f6d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -425,48 +356,51 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-request-id": [ - "92b74c93-4aaa-4c93-829f-6d9883c659a6" + "4c757833-dee4-4305-8c74-64319c59043a" ], "x-ms-correlation-request-id": [ - "92b74c93-4aaa-4c93-829f-6d9883c659a6" + "4c757833-dee4-4305-8c74-64319c59043a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234104Z:92b74c93-4aaa-4c93-829f-6d9883c659a6" + "WESTUS2:20210216T185352Z:4c757833-dee4-4305-8c74-64319c59043a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:04 GMT" + "Tue, 16 Feb 2021 18:53:51 GMT" ], "Content-Length": [ - "21" + "461" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==\",\r\n \"secondaryMasterKey\": \"tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==\",\r\n \"primaryReadonlyMasterKey\": \"B43t8UbC3ptUUQiLG8dM0Bv2SQE18q5fDTWSWeNXI5ozaKwtfO7DR7NIV13Cla1OSUw4zz5drtetmMSF3jqb9A==\",\r\n \"secondaryReadonlyMasterKey\": \"3s3VSmmTN3p4EarYIEjh1CxoEKi2BzwrjfUfz0eQUqjP6yaEq7zx7kwMurRGLyuucaBsberJCfk4BkG9ESiAmA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ0ZGIxZmMxLWFhMjQtNDc0MC04YWMzLTBkYzI4Y2ZlYzQ3Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a32bce38-cc0c-4db1-bb29-10a3ef3c6577" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -485,54 +419,51 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "4e6e1cb5-c2c7-44bc-9d8a-ac450c7b8e43" + "cc4d922c-7806-4048-9be4-87eb7972aece" ], "x-ms-correlation-request-id": [ - "4e6e1cb5-c2c7-44bc-9d8a-ac450c7b8e43" + "cc4d922c-7806-4048-9be4-87eb7972aece" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234135Z:4e6e1cb5-c2c7-44bc-9d8a-ac450c7b8e43" + "WESTUS2:20210216T185320Z:cc4d922c-7806-4048-9be4-87eb7972aece" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:35 GMT" + "Tue, 16 Feb 2021 18:53:19 GMT" ], "Content-Length": [ - "22" + "971" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/44db1fc1-aa24-4740-8ac3-0dc28cfec477?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=3s3VSmmTN3p4EarYIEjh1CxoEKi2BzwrjfUfz0eQUqjP6yaEq7zx7kwMurRGLyuucaBsberJCfk4BkG9ESiAmA==;\",\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/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7e0ffa9-75ec-4513-ad8d-8e2b6c086890" + "7b92b687-50bd-48b2-af1d-68298cfe8073" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -552,50 +483,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "0ef29e9a-34f3-43c6-a465-d700edf66f79" + "5d096498-9b3b-4fe8-b1ee-552f116d1426" ], "x-ms-correlation-request-id": [ - "0ef29e9a-34f3-43c6-a465-d700edf66f79" + "5d096498-9b3b-4fe8-b1ee-552f116d1426" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234136Z:0ef29e9a-34f3-43c6-a465-d700edf66f79" + "WESTUS2:20210216T185320Z:5d096498-9b3b-4fe8-b1ee-552f116d1426" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:35 GMT" + "Tue, 16 Feb 2021 18:53:20 GMT" ], "Content-Length": [ - "461" + "239" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"Sy7iVGEqoIwOBikHiOUbsHbvsEPOMrdZZCi2cpA3W9DejZqCEcpb8YUbfiUXZK68s25fj6iLm33KoXr5zIEsCA==\",\r\n \"secondaryMasterKey\": \"jzvLH9x8luzaykqHWLtJ1K5lUn1S5dTn1veIkwPSboE33cbzwzr8fZFd7v6bF2HtFt2uxoOJfFesxyvtzIjLAQ==\",\r\n \"primaryReadonlyMasterKey\": \"gAWOy9r6RUiTccGz2lViOPMs1dvHI0M8hNGmK0TNMdhIkzedGYcoRkV0Hr6ojhA1Bucozv97uPZPxb2eh3q2Zw==\",\r\n \"secondaryReadonlyMasterKey\": \"SVUIc624JhgKP9HnHkcaYn6Rf1nnhOtfsKhMRu7WcIG9UOntn5o4z45HVsp6bnQZcSLceymzxcUUlmAM78LlfQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==\",\r\n \"secondaryReadonlyMasterKey\": \"3s3VSmmTN3p4EarYIEjh1CxoEKi2BzwrjfUfz0eQUqjP6yaEq7zx7kwMurRGLyuucaBsberJCfk4BkG9ESiAmA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", + "RequestBody": "{\r\n \"keyKind\": \"primaryReadonly\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "49b4e317-1269-4d83-a0ff-06ce237559c0" + "c3f7a1c9-84fa-47b2-9ad5-487777a86f6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -605,6 +542,15 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/6efc641e-2a96-4939-955c-e0c3ca0265c3?api-version=2021-01-15" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/6efc641e-2a96-4939-955c-e0c3ca0265c3?api-version=2021-01-15" + ], + "x-ms-request-id": [ + "6efc641e-2a96-4939-955c-e0c3ca0265c3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -615,50 +561,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "2cde588d-e6c1-4309-a85a-c1bc2df9d0a7" + "1196" ], "x-ms-correlation-request-id": [ - "2cde588d-e6c1-4309-a85a-c1bc2df9d0a7" + "d18754f3-d84b-47d5-a688-a2980d7896b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234309Z:2cde588d-e6c1-4309-a85a-c1bc2df9d0a7" + "WESTUS2:20210216T185321Z:d18754f3-d84b-47d5-a688-a2980d7896b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:43:09 GMT" + "Tue, 16 Feb 2021 18:53:21 GMT" ], "Content-Length": [ - "461" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"Sy7iVGEqoIwOBikHiOUbsHbvsEPOMrdZZCi2cpA3W9DejZqCEcpb8YUbfiUXZK68s25fj6iLm33KoXr5zIEsCA==\",\r\n \"secondaryMasterKey\": \"jzvLH9x8luzaykqHWLtJ1K5lUn1S5dTn1veIkwPSboE33cbzwzr8fZFd7v6bF2HtFt2uxoOJfFesxyvtzIjLAQ==\",\r\n \"primaryReadonlyMasterKey\": \"9RdwnATOdPTlqbKQerfsr00QFYSu7Q6HDU2icq6jXDRUkdrK9i3FgBfg1lsm0ZBn1bhUuM37i9rCvGmLPlop8w==\",\r\n \"secondaryReadonlyMasterKey\": \"SVUIc624JhgKP9HnHkcaYn6Rf1nnhOtfsKhMRu7WcIG9UOntn5o4z45HVsp6bnQZcSLceymzxcUUlmAM78LlfQ==\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/6efc641e-2a96-4939-955c-e0c3ca0265c3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzZlZmM2NDFlLTJhOTYtNDkzOS05NTVjLWUwYzNjYTAyNjVjMz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80936cb2-c766-49b8-b599-53c50ea31a4d" - ], - "Accept-Language": [ - "en-US" + "c3f7a1c9-84fa-47b2-9ad5-487777a86f6d" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -677,51 +617,48 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-request-id": [ - "0dea875b-9927-4b42-8cf6-6c2a7c6d33b2" + "ea711076-8363-4f5c-89eb-aab90cf7ca32" ], "x-ms-correlation-request-id": [ - "0dea875b-9927-4b42-8cf6-6c2a7c6d33b2" + "ea711076-8363-4f5c-89eb-aab90cf7ca32" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234136Z:0dea875b-9927-4b42-8cf6-6c2a7c6d33b2" + "WESTUS2:20210216T185352Z:ea711076-8363-4f5c-89eb-aab90cf7ca32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:36 GMT" + "Tue, 16 Feb 2021 18:53:51 GMT" ], "Content-Length": [ - "971" + "22" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=Sy7iVGEqoIwOBikHiOUbsHbvsEPOMrdZZCi2cpA3W9DejZqCEcpb8YUbfiUXZK68s25fj6iLm33KoXr5zIEsCA==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=jzvLH9x8luzaykqHWLtJ1K5lUn1S5dTn1veIkwPSboE33cbzwzr8fZFd7v6bF2HtFt2uxoOJfFesxyvtzIjLAQ==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=gAWOy9r6RUiTccGz2lViOPMs1dvHI0M8hNGmK0TNMdhIkzedGYcoRkV0Hr6ojhA1Bucozv97uPZPxb2eh3q2Zw==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=SVUIc624JhgKP9HnHkcaYn6Rf1nnhOtfsKhMRu7WcIG9UOntn5o4z45HVsp6bnQZcSLceymzxcUUlmAM78LlfQ==;\",\r\n \"description\": \"Secondary Read-Only SQL Connection String\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/6efc641e-2a96-4939-955c-e0c3ca0265c3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy82ZWZjNjQxZS0yYTk2LTQ5MzktOTU1Yy1lMGMzY2EwMjY1YzM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6a8b249-b6cb-4ada-a685-7165fe78bfd9" - ], - "Accept-Language": [ - "en-US" + "c3f7a1c9-84fa-47b2-9ad5-487777a86f6d" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -740,57 +677,51 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-request-id": [ - "2e9d2ac1-b51b-46f9-8f86-da68ed659286" + "87a628da-17e6-4557-9532-f3a5c8b545fd" ], "x-ms-correlation-request-id": [ - "2e9d2ac1-b51b-46f9-8f86-da68ed659286" + "87a628da-17e6-4557-9532-f3a5c8b545fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234137Z:2e9d2ac1-b51b-46f9-8f86-da68ed659286" + "WESTUS2:20210216T185352Z:87a628da-17e6-4557-9532-f3a5c8b545fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:37 GMT" + "Tue, 16 Feb 2021 18:53:51 GMT" ], "Content-Length": [ - "239" + "22" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"gAWOy9r6RUiTccGz2lViOPMs1dvHI0M8hNGmK0TNMdhIkzedGYcoRkV0Hr6ojhA1Bucozv97uPZPxb2eh3q2Zw==\",\r\n \"secondaryReadonlyMasterKey\": \"SVUIc624JhgKP9HnHkcaYn6Rf1nnhOtfsKhMRu7WcIG9UOntn5o4z45HVsp6bnQZcSLceymzxcUUlmAM78LlfQ==\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"keyKind\": \"primaryReadonly\"\r\n}", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a94714-e299-4c8c-ad1f-d486707283de" + "79426c01-f8a6-4637-8621-6cbcc7e149d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "36" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -801,13 +732,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15" ], "x-ms-request-id": [ - "960df8ba-e637-44dd-a1d5-2d3012a8cc49" + "ad95b89a-624f-44c4-bed2-410b39f9ea70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -818,20 +749,20 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "e1003b12-eca6-4c07-8bf0-2162390e788e" + "86c39ed2-018c-4033-8e95-d9ddfae55666" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234138Z:e1003b12-eca6-4c07-8bf0-2162390e788e" + "WESTUS2:20210216T185353Z:86c39ed2-018c-4033-8e95-d9ddfae55666" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:41:38 GMT" + "Tue, 16 Feb 2021 18:53:52 GMT" ], "Content-Length": [ "21" @@ -844,16 +775,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk2MGRmOGJhLWU2MzctNDRkZC1hMWQ1LTJkMzAxMmE4Y2M0OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -873,47 +807,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "84ca677b-de08-4358-90d4-55362517ac66" + "cbe4df28-c7df-47e5-b054-9f4496a95450" ], "x-ms-correlation-request-id": [ - "84ca677b-de08-4358-90d4-55362517ac66" + "cbe4df28-c7df-47e5-b054-9f4496a95450" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234208Z:84ca677b-de08-4358-90d4-55362517ac66" + "WESTUS2:20210216T185424Z:cbe4df28-c7df-47e5-b054-9f4496a95450" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:42:08 GMT" + "Tue, 16 Feb 2021 18:54:23 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk2MGRmOGJhLWU2MzctNDRkZC1hMWQ1LTJkMzAxMmE4Y2M0OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -933,47 +867,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "70cd5579-edb7-4610-911a-a2128a8a8a7c" + "01135d00-a32d-4f6b-853a-22be15a8f7cc" ], "x-ms-correlation-request-id": [ - "70cd5579-edb7-4610-911a-a2128a8a8a7c" + "01135d00-a32d-4f6b-853a-22be15a8f7cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234239Z:70cd5579-edb7-4610-911a-a2128a8a8a7c" + "WESTUS2:20210216T185454Z:01135d00-a32d-4f6b-853a-22be15a8f7cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:42:38 GMT" + "Tue, 16 Feb 2021 18:54:54 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzk2MGRmOGJhLWU2MzctNDRkZC1hMWQ1LTJkMzAxMmE4Y2M0OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -993,47 +927,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "722e238f-6ad9-422c-bac0-f543e85691c3" + "ae42c0b0-4e6a-4a91-9bb0-eae503be0e16" ], "x-ms-correlation-request-id": [ - "722e238f-6ad9-422c-bac0-f543e85691c3" + "ae42c0b0-4e6a-4a91-9bb0-eae503be0e16" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234309Z:722e238f-6ad9-422c-bac0-f543e85691c3" + "WESTUS2:20210216T185525Z:ae42c0b0-4e6a-4a91-9bb0-eae503be0e16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:43:09 GMT" + "Tue, 16 Feb 2021 18:55:24 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/960df8ba-e637-44dd-a1d5-2d3012a8cc49?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy85NjBkZjhiYS1lNjM3LTQ0ZGQtYTFkNS0yZDMwMTJhOGNjNDk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1046,54 +980,54 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-activity-id": [ - "ec1076c0-a6c1-4e43-90a0-20196a833879" + "x-ms-gatewayversion": [ + "version=2.11.0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "8abc1335-d703-4384-bd8d-66dc8fc085d3" + "6262a730-2fe9-4be4-99da-0a3b33bd5b3e" ], "x-ms-correlation-request-id": [ - "8abc1335-d703-4384-bd8d-66dc8fc085d3" + "6262a730-2fe9-4be4-99da-0a3b33bd5b3e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234309Z:8abc1335-d703-4384-bd8d-66dc8fc085d3" + "WESTUS2:20210216T185555Z:6262a730-2fe9-4be4-99da-0a3b33bd5b3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:43:09 GMT" + "Tue, 16 Feb 2021 18:55:54 GMT" ], "Content-Length": [ - "0" + "21" + ], + "Content-Type": [ + "application/json" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b9178-7921-4857-8ce7-288bb04441f8" - ], - "Accept-Language": [ - "en-US" + "79426c01-f8a6-4637-8621-6cbcc7e149d7" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1103,15 +1037,6 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" - ], - "x-ms-request-id": [ - "2eb1af36-d8bc-4e88-8abf-c581921187ef" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -1121,45 +1046,48 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "3e8f072f-9bbb-42ec-9c7e-fb17ce9596e3" ], "x-ms-correlation-request-id": [ - "c2d51fde-1940-49ce-b921-70e6b8b75909" + "3e8f072f-9bbb-42ec-9c7e-fb17ce9596e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234310Z:c2d51fde-1940-49ce-b921-70e6b8b75909" + "WESTUS2:20210216T185625Z:3e8f072f-9bbb-42ec-9c7e-fb17ce9596e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:43:10 GMT" + "Tue, 16 Feb 2021 18:56:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1179,47 +1107,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "2ae701a5-6d3f-4801-a584-a53d38448e49" + "7ba46617-451e-48db-84b0-0ba9ca117a86" ], "x-ms-correlation-request-id": [ - "2ae701a5-6d3f-4801-a584-a53d38448e49" + "7ba46617-451e-48db-84b0-0ba9ca117a86" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234341Z:2ae701a5-6d3f-4801-a584-a53d38448e49" + "WESTUS2:20210216T185655Z:7ba46617-451e-48db-84b0-0ba9ca117a86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:43:41 GMT" + "Tue, 16 Feb 2021 18:56:55 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1239,47 +1167,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "9c24e173-8c43-461e-adfd-6d1fd4cce1f3" + "dd24cbe2-d0c6-47c2-98e9-2c32d8bcf734" ], "x-ms-correlation-request-id": [ - "9c24e173-8c43-461e-adfd-6d1fd4cce1f3" + "dd24cbe2-d0c6-47c2-98e9-2c32d8bcf734" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234411Z:9c24e173-8c43-461e-adfd-6d1fd4cce1f3" + "WESTUS2:20210216T185726Z:dd24cbe2-d0c6-47c2-98e9-2c32d8bcf734" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:44:10 GMT" + "Tue, 16 Feb 2021 18:57:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1299,47 +1227,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-request-id": [ - "a66b373b-1458-4074-a305-e78d5ae955ae" + "35e0caeb-d384-4b6b-9f60-3fbd2f8baa9d" ], "x-ms-correlation-request-id": [ - "a66b373b-1458-4074-a305-e78d5ae955ae" + "35e0caeb-d384-4b6b-9f60-3fbd2f8baa9d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234442Z:a66b373b-1458-4074-a305-e78d5ae955ae" + "WESTUS2:20210216T185756Z:35e0caeb-d384-4b6b-9f60-3fbd2f8baa9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:44:41 GMT" + "Tue, 16 Feb 2021 18:57:55 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1359,47 +1287,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "7da74506-dfcb-411c-a697-41e8d192cefe" + "8363b2b9-7887-4ba7-a9b6-5e6f971e4c9d" ], "x-ms-correlation-request-id": [ - "7da74506-dfcb-411c-a697-41e8d192cefe" + "8363b2b9-7887-4ba7-a9b6-5e6f971e4c9d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234512Z:7da74506-dfcb-411c-a697-41e8d192cefe" + "WESTUS2:20210216T185827Z:8363b2b9-7887-4ba7-a9b6-5e6f971e4c9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:45:12 GMT" + "Tue, 16 Feb 2021 18:58:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1419,47 +1347,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-request-id": [ - "32a6a237-b1c3-4565-ac04-488baeea7f9b" + "40e6091e-4b76-447a-9cae-e8c9a984f460" ], "x-ms-correlation-request-id": [ - "32a6a237-b1c3-4565-ac04-488baeea7f9b" + "40e6091e-4b76-447a-9cae-e8c9a984f460" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234542Z:32a6a237-b1c3-4565-ac04-488baeea7f9b" + "WESTUS2:20210216T185857Z:40e6091e-4b76-447a-9cae-e8c9a984f460" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:45:42 GMT" + "Tue, 16 Feb 2021 18:58:57 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1479,47 +1407,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-request-id": [ - "008f008a-d021-4d67-9159-7b0f19a82c73" + "572eb8da-62eb-4d91-86a0-a7fe0472daa9" ], "x-ms-correlation-request-id": [ - "008f008a-d021-4d67-9159-7b0f19a82c73" + "572eb8da-62eb-4d91-86a0-a7fe0472daa9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234613Z:008f008a-d021-4d67-9159-7b0f19a82c73" + "WESTUS2:20210216T185927Z:572eb8da-62eb-4d91-86a0-a7fe0472daa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:46:12 GMT" + "Tue, 16 Feb 2021 18:59:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1539,47 +1467,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-request-id": [ - "9d95f4d0-515a-48e2-b7f5-e4e700266903" + "b55a8a54-64db-46cb-9711-f133f8bb5807" ], "x-ms-correlation-request-id": [ - "9d95f4d0-515a-48e2-b7f5-e4e700266903" + "b55a8a54-64db-46cb-9711-f133f8bb5807" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234643Z:9d95f4d0-515a-48e2-b7f5-e4e700266903" + "WESTUS2:20210216T185957Z:b55a8a54-64db-46cb-9711-f133f8bb5807" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:46:43 GMT" + "Tue, 16 Feb 2021 18:59:57 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1599,47 +1527,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-request-id": [ - "964bd210-ffaf-4342-9f96-ec7e6a9a4ae3" + "5f055e68-3ac9-4a3f-be9d-5880ce72750d" ], "x-ms-correlation-request-id": [ - "964bd210-ffaf-4342-9f96-ec7e6a9a4ae3" + "5f055e68-3ac9-4a3f-be9d-5880ce72750d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234714Z:964bd210-ffaf-4342-9f96-ec7e6a9a4ae3" + "WESTUS2:20210216T190028Z:5f055e68-3ac9-4a3f-be9d-5880ce72750d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:47:13 GMT" + "Tue, 16 Feb 2021 19:00:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1659,47 +1587,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-request-id": [ - "feebe502-5aca-4eb6-8ce0-126d80eb4b30" + "65c666dd-c1ed-4aba-9abb-13d893c2fd5b" ], "x-ms-correlation-request-id": [ - "feebe502-5aca-4eb6-8ce0-126d80eb4b30" + "65c666dd-c1ed-4aba-9abb-13d893c2fd5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234744Z:feebe502-5aca-4eb6-8ce0-126d80eb4b30" + "WESTUS2:20210216T190058Z:65c666dd-c1ed-4aba-9abb-13d893c2fd5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:47:43 GMT" + "Tue, 16 Feb 2021 19:00:58 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1719,47 +1647,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-request-id": [ - "d51a5ed2-d06d-4545-9ef0-d120a880fa65" + "d76fc8c1-96e8-463b-9a57-cc71ecd1b6aa" ], "x-ms-correlation-request-id": [ - "d51a5ed2-d06d-4545-9ef0-d120a880fa65" + "d76fc8c1-96e8-463b-9a57-cc71ecd1b6aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234815Z:d51a5ed2-d06d-4545-9ef0-d120a880fa65" + "WESTUS2:20210216T190129Z:d76fc8c1-96e8-463b-9a57-cc71ecd1b6aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:48:14 GMT" + "Tue, 16 Feb 2021 19:01:28 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1779,47 +1707,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-request-id": [ - "e155c1e8-233d-4988-b578-667eb30f06a4" + "a112d40b-49a1-442c-85e1-4f57a5700b6b" ], "x-ms-correlation-request-id": [ - "e155c1e8-233d-4988-b578-667eb30f06a4" + "a112d40b-49a1-442c-85e1-4f57a5700b6b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234845Z:e155c1e8-233d-4988-b578-667eb30f06a4" + "WESTUS2:20210216T190159Z:a112d40b-49a1-442c-85e1-4f57a5700b6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:48:45 GMT" + "Tue, 16 Feb 2021 19:01:58 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1839,47 +1767,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-request-id": [ - "5a1bb5e1-d696-4129-a527-f2a18f83f5b7" + "752622cc-ee90-459c-9b4d-e9f0cdf9e313" ], "x-ms-correlation-request-id": [ - "5a1bb5e1-d696-4129-a527-f2a18f83f5b7" + "752622cc-ee90-459c-9b4d-e9f0cdf9e313" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234915Z:5a1bb5e1-d696-4129-a527-f2a18f83f5b7" + "WESTUS2:20210216T190229Z:752622cc-ee90-459c-9b4d-e9f0cdf9e313" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:49:15 GMT" + "Tue, 16 Feb 2021 19:02:29 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1899,47 +1827,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-request-id": [ - "06a5eaa6-20c8-40b5-8f6c-44cdaf7b605c" + "668963e9-1e45-4bd5-8ff0-ec4b35ce69d6" ], "x-ms-correlation-request-id": [ - "06a5eaa6-20c8-40b5-8f6c-44cdaf7b605c" + "668963e9-1e45-4bd5-8ff0-ec4b35ce69d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234945Z:06a5eaa6-20c8-40b5-8f6c-44cdaf7b605c" + "WESTUS2:20210216T190259Z:668963e9-1e45-4bd5-8ff0-ec4b35ce69d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:49:45 GMT" + "Tue, 16 Feb 2021 19:02:59 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/2eb1af36-d8bc-4e88-8abf-c581921187ef?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzJlYjFhZjM2LWQ4YmMtNGU4OC04YWJmLWM1ODE5MjExODdlZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/ad95b89a-624f-44c4-bed2-410b39f9ea70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FkOTViODlhLTYyNGYtNDRjNC1iZWQyLTQxMGIzOWY5ZWE3MD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79426c01-f8a6-4637-8621-6cbcc7e149d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1953,28 +1881,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "609000c0-4389-4912-998b-01877fdb2556" + "79426c01-f8a6-4637-8621-6cbcc7e149d7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-request-id": [ - "2dcc9fbe-753a-4011-8e62-72be9f59edd8" + "1ca6e85f-a3d1-45e4-8abc-0eb465f17c5f" ], "x-ms-correlation-request-id": [ - "2dcc9fbe-753a-4011-8e62-72be9f59edd8" + "1ca6e85f-a3d1-45e4-8abc-0eb465f17c5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T234945Z:2dcc9fbe-753a-4011-8e62-72be9f59edd8" + "WESTUS2:20210216T190300Z:1ca6e85f-a3d1-45e4-8abc-0eb465f17c5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 23:49:45 GMT" + "Tue, 16 Feb 2021 19:02:59 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 2cbef8fc1053..d781e0530578 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d01c61a-dc87-43dc-a629-0f23528f3c94" + "934eee93-0dc3-46de-ab56-770eb25d9185" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,50 +39,47 @@ "11999" ], "x-ms-request-id": [ - "b24d1007-1970-4119-b091-4188f64b2a00" + "94d43914-bad8-4d70-aa1e-8c48c37abdeb" ], "x-ms-correlation-request-id": [ - "b24d1007-1970-4119-b091-4188f64b2a00" + "94d43914-bad8-4d70-aa1e-8c48c37abdeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183529Z:b24d1007-1970-4119-b091-4188f64b2a00" + "WESTUS2:20210216T185204Z:94d43914-bad8-4d70-aa1e-8c48c37abdeb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:35:29 GMT" + "Tue, 16 Feb 2021 18:52:03 GMT" ], "Content-Length": [ - "1838" + "2224" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\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\": 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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": 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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f45d4c2e-41be-44ce-a15b-18a71c7305ae" + "0226982c-a3e5-41f1-bf2b-92bdb30241af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -105,50 +102,47 @@ "11998" ], "x-ms-request-id": [ - "b7416053-fbc1-4370-883a-e1e0b5932413" + "edf27725-e313-43d4-8eea-8733e665627e" ], "x-ms-correlation-request-id": [ - "b7416053-fbc1-4370-883a-e1e0b5932413" + "edf27725-e313-43d4-8eea-8733e665627e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183529Z:b7416053-fbc1-4370-883a-e1e0b5932413" + "WESTUS2:20210216T185204Z:edf27725-e313-43d4-8eea-8733e665627e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:35:29 GMT" + "Tue, 16 Feb 2021 18:52:04 GMT" ], "Content-Length": [ - "1838" + "2224" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\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\": 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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": 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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01d6ca05-76e2-46cd-96df-e05452de5f55" + "e921c49d-262b-459d-817c-14e282bbf0de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -171,44 +165,44 @@ "11997" ], "x-ms-request-id": [ - "8abaa8b8-fa6e-41d5-88d3-39ecf064edac" + "3a852339-8957-4059-81b8-567bf979b568" ], "x-ms-correlation-request-id": [ - "8abaa8b8-fa6e-41d5-88d3-39ecf064edac" + "3a852339-8957-4059-81b8-567bf979b568" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183529Z:8abaa8b8-fa6e-41d5-88d3-39ecf064edac" + "WESTUS2:20210216T185204Z:3a852339-8957-4059-81b8-567bf979b568" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:35:29 GMT" + "Tue, 16 Feb 2021 18:52:04 GMT" ], "Content-Length": [ - "1838" + "2224" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\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\": 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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": 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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e921c49d-262b-459d-817c-14e282bbf0de" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,53 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "c6f54feb-b37d-4dca-a5cf-711e85346218" + "f31d955a-ae68-4f82-af37-a841b74d0e8d" ], "x-ms-correlation-request-id": [ - "c6f54feb-b37d-4dca-a5cf-711e85346218" + "f31d955a-ae68-4f82-af37-a841b74d0e8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183703Z:c6f54feb-b37d-4dca-a5cf-711e85346218" + "WESTUS2:20210216T185238Z:f31d955a-ae68-4f82-af37-a841b74d0e8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:02 GMT" + "Tue, 16 Feb 2021 18:52:38 GMT" ], "Content-Length": [ - "1827" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West 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 \"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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b8dffa8-6190-4d4e-b847-0cfee6e86193" + "90c4d60f-1fe7-418c-94b5-d7794f0804af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -294,59 +285,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "6029154d-ae47-4477-86d2-63577b0adeb2" + "03fd6537-b9f5-4813-baca-4343e9d8f0d2" ], "x-ms-correlation-request-id": [ - "6029154d-ae47-4477-86d2-63577b0adeb2" + "03fd6537-b9f5-4813-baca-4343e9d8f0d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183703Z:6029154d-ae47-4477-86d2-63577b0adeb2" + "WESTUS2:20210216T185239Z:03fd6537-b9f5-4813-baca-4343e9d8f0d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:02 GMT" + "Tue, 16 Feb 2021 18:52:38 GMT" ], "Content-Length": [ - "1827" + "2213" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West 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 \"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\": false,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": false,\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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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 {\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"Shape\": \"Square\",\r\n \"Color\": \"Blue\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"West 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\": \"West 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 \"name\": \"test\",\r\n \"Color\": \"Blue\"\r\n },\r\n \"location\": \"East US 2\",\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 2\",\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 \"networkAclBypass\": \"None\",\r\n \"networkAclBypassResourceIds\": []\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "871e11eb-b8c9-4c0f-a0ac-05ea3e7df5c8" + "e921c49d-262b-459d-817c-14e282bbf0de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "733" ] }, "ResponseHeaders": { @@ -357,13 +345,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/operationResults/48c2d3e7-b6eb-4aa2-b465-23934eed4a6e?api-version=2021-01-15" ], "x-ms-request-id": [ - "e53f6f70-23bf-4c53-81dc-5cc1784c4ee9" + "48c2d3e7-b6eb-4aa2-b465-23934eed4a6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/48c2d3e7-b6eb-4aa2-b465-23934eed4a6e?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,101 +366,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "f73a0636-3700-4401-a349-0a4de0090241" + "7f21654e-3958-4a04-a90b-85a06e3591b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183533Z:f73a0636-3700-4401-a349-0a4de0090241" + "WESTUS2:20210216T185208Z:7f21654e-3958-4a04-a90b-85a06e3591b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:35:32 GMT" + "Tue, 16 Feb 2021 18:52:07 GMT" ], "Content-Length": [ - "1834" + "2220" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\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\": 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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount27-westus.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-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27\",\r\n \"name\": \"dbaccount27\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T18:47:16.2205907Z\"\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\": 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 \"instanceId\": \"8765b285-04bd-4602-b46d-69acd05a515d\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-eastus2\",\r\n \"locationName\": \"East US 2\",\r\n \"documentEndpoint\": \"https://dbaccount27-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\": \"dbaccount27-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTUzZjZmNzAtMjNiZi00YzUzLTgxZGMtNWNjMTc4NGM0ZWU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/48c2d3e7-b6eb-4aa2-b465-23934eed4a6e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzQ4YzJkM2U3LWI2ZWItNGFhMi1iNDY1LTIzOTM0ZWVkNGE2ZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "4f7651bf-47d5-471f-b38e-9654114906b8" - ], - "x-ms-correlation-request-id": [ - "4f7651bf-47d5-471f-b38e-9654114906b8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T183603Z:4f7651bf-47d5-471f-b38e-9654114906b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 18:36:02 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" + "x-ms-client-request-id": [ + "e921c49d-262b-459d-817c-14e282bbf0de" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTUzZjZmNzAtMjNiZi00YzUzLTgxZGMtNWNjMTc4NGM0ZWU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -492,113 +420,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "5cd64e44-fe3d-482c-916e-50e1a6bcbc69" - ], - "x-ms-correlation-request-id": [ - "5cd64e44-fe3d-482c-916e-50e1a6bcbc69" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T183633Z:5cd64e44-fe3d-482c-916e-50e1a6bcbc69" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 18:36:32 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTUzZjZmNzAtMjNiZi00YzUzLTgxZGMtNWNjMTc4NGM0ZWU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "ac0d539a-0179-4762-b02c-f1e83256e338" + "2cfc562a-d233-488b-a4ed-be3c1e7ff34a" ], "x-ms-correlation-request-id": [ - "ac0d539a-0179-4762-b02c-f1e83256e338" + "2cfc562a-d233-488b-a4ed-be3c1e7ff34a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183703Z:ac0d539a-0179-4762-b02c-f1e83256e338" + "WESTUS2:20210216T185238Z:2cfc562a-d233-488b-a4ed-be3c1e7ff34a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:02 GMT" + "Tue, 16 Feb 2021 18:52:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53f6f70-23bf-4c53-81dc-5cc1784c4ee9?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cab914b-fc34-454e-ac32-3cf64653f667" + "21144bf0-b7a8-4695-afd0-df4bf1ffe61d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -621,19 +486,19 @@ "1199" ], "x-ms-request-id": [ - "884b2b7f-4df8-4894-b2a6-bffb4dfa9fb0" + "4e591e20-817f-43d6-8451-3ed38512e554" ], "x-ms-correlation-request-id": [ - "884b2b7f-4df8-4894-b2a6-bffb4dfa9fb0" + "4e591e20-817f-43d6-8451-3ed38512e554" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183704Z:884b2b7f-4df8-4894-b2a6-bffb4dfa9fb0" + "WESTUS2:20210216T185239Z:4e591e20-817f-43d6-8451-3ed38512e554" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:03 GMT" + "Tue, 16 Feb 2021 18:52:39 GMT" ], "Content-Length": [ "461" @@ -642,26 +507,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"T4zin51q9yS7cCnlPqY11oFIKQAcoKBDLs8pT5rfSfSUBTeTqZeeUCvvyxS0LdJlkD2qXQv3LJ1IpnkQsWU7HA==\",\r\n \"secondaryMasterKey\": \"qt4N7PvjisYE4bXXYuhMgYmeRcDPXgn2aMHutQvIZIcQuEJUYnmkCXOiCPscYuJhcmXW2lae6QPUwmD7dzPTDw==\",\r\n \"primaryReadonlyMasterKey\": \"TGwAf0bMesxEVLXGeJXqQPJ0VvlVbMOsrjwVvd9nkxiv1hioDBnCUkzgJF3BqOZeYMbSuW0T1EbjgBHeVMUzzw==\",\r\n \"secondaryReadonlyMasterKey\": \"v36WCsTox9jl4tvFOP9TCn4W6FccyJrLEbmVTsStR4YSShWmju5AvLJDfilfzVD2zmIwIPVXaVTN7CT6lGkErQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==\",\r\n \"secondaryMasterKey\": \"tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==\",\r\n \"primaryReadonlyMasterKey\": \"L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==\",\r\n \"secondaryReadonlyMasterKey\": \"7OdqUJ5UhJo47SEqc6Hpu0nCntOTXtesCa0BqkWUbqlCSpdgr1MyArumelP5SgTgKH0n4VeP8URYqIKD6MlJhA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "128c1c0c-a967-4e84-a084-f85cc72f020e" + "9718b4b6-f447-49b4-9006-cf3a2b9ab69d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -684,19 +549,19 @@ "1195" ], "x-ms-request-id": [ - "416d67cf-285c-40b3-9dc6-2ac773dd81e7" + "48e7f445-e0fb-4ac4-86a4-1fcda0f32e7c" ], "x-ms-correlation-request-id": [ - "416d67cf-285c-40b3-9dc6-2ac773dd81e7" + "48e7f445-e0fb-4ac4-86a4-1fcda0f32e7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183837Z:416d67cf-285c-40b3-9dc6-2ac773dd81e7" + "WESTUS2:20210216T185311Z:48e7f445-e0fb-4ac4-86a4-1fcda0f32e7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:38:37 GMT" + "Tue, 16 Feb 2021 18:53:10 GMT" ], "Content-Length": [ "461" @@ -705,26 +570,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"T4zin51q9yS7cCnlPqY11oFIKQAcoKBDLs8pT5rfSfSUBTeTqZeeUCvvyxS0LdJlkD2qXQv3LJ1IpnkQsWU7HA==\",\r\n \"secondaryMasterKey\": \"qt4N7PvjisYE4bXXYuhMgYmeRcDPXgn2aMHutQvIZIcQuEJUYnmkCXOiCPscYuJhcmXW2lae6QPUwmD7dzPTDw==\",\r\n \"primaryReadonlyMasterKey\": \"TGwAf0bMesxEVLXGeJXqQPJ0VvlVbMOsrjwVvd9nkxiv1hioDBnCUkzgJF3BqOZeYMbSuW0T1EbjgBHeVMUzzw==\",\r\n \"secondaryReadonlyMasterKey\": \"PyX5QYrMrJMPmu9pOUSgnzMKfCfZvMtZGHmcjbSnPS9DLdMICUTREAQ0Is2tWSE33s4pHCEUq7yqbwMjTxEtSQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==\",\r\n \"secondaryMasterKey\": \"tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==\",\r\n \"primaryReadonlyMasterKey\": \"L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==\",\r\n \"secondaryReadonlyMasterKey\": \"3s3VSmmTN3p4EarYIEjh1CxoEKi2BzwrjfUfz0eQUqjP6yaEq7zx7kwMurRGLyuucaBsberJCfk4BkG9ESiAmA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/listConnectionStrings?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf80e1a-cc91-4453-bdfd-338e09210fab" + "0c8f5582-6365-4352-89f1-0d9d775c3c37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -747,19 +612,19 @@ "1198" ], "x-ms-request-id": [ - "56e93180-54ed-42ed-a421-6c9fe89f8dea" + "a1ee16f7-edce-4f34-8b29-0f76e2dd3049" ], "x-ms-correlation-request-id": [ - "56e93180-54ed-42ed-a421-6c9fe89f8dea" + "a1ee16f7-edce-4f34-8b29-0f76e2dd3049" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183704Z:56e93180-54ed-42ed-a421-6c9fe89f8dea" + "WESTUS2:20210216T185239Z:a1ee16f7-edce-4f34-8b29-0f76e2dd3049" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:03 GMT" + "Tue, 16 Feb 2021 18:52:39 GMT" ], "Content-Length": [ "971" @@ -768,26 +633,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=T4zin51q9yS7cCnlPqY11oFIKQAcoKBDLs8pT5rfSfSUBTeTqZeeUCvvyxS0LdJlkD2qXQv3LJ1IpnkQsWU7HA==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=qt4N7PvjisYE4bXXYuhMgYmeRcDPXgn2aMHutQvIZIcQuEJUYnmkCXOiCPscYuJhcmXW2lae6QPUwmD7dzPTDw==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=TGwAf0bMesxEVLXGeJXqQPJ0VvlVbMOsrjwVvd9nkxiv1hioDBnCUkzgJF3BqOZeYMbSuW0T1EbjgBHeVMUzzw==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=v36WCsTox9jl4tvFOP9TCn4W6FccyJrLEbmVTsStR4YSShWmju5AvLJDfilfzVD2zmIwIPVXaVTN7CT6lGkErQ==;\",\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=SiyMLxHdixxlothVuZxLTSYK9xgzBxJjYzhv0nRxBtVGypLZPqxTN6AqP3Lkq15qHOXhZA3Ozh7Ct975pWs92Q==;\",\r\n \"description\": \"Primary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=tbP25LcCYSql0RcLYRZt0ctKH0syItkWoPtB1u3OtjsGkbNp3qwEecz14WnaD695fl1sXvHxK1OiqeJLbmXwDg==;\",\r\n \"description\": \"Secondary SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==;\",\r\n \"description\": \"Primary Read-Only SQL Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"AccountEndpoint=https://dbaccount27.documents.azure.com:443/;AccountKey=7OdqUJ5UhJo47SEqc6Hpu0nCntOTXtesCa0BqkWUbqlCSpdgr1MyArumelP5SgTgKH0n4VeP8URYqIKD6MlJhA==;\",\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/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/readonlykeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52737785-3c29-4a7b-beaa-2a724652517f" + "ff5a8ed1-3f44-4031-bb7a-f693dbc2b90c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -810,19 +675,19 @@ "1197" ], "x-ms-request-id": [ - "c95c9de3-5e16-409d-b874-e80cccaa7f3d" + "d48286e3-b9e0-4f26-958b-4633e76febf9" ], "x-ms-correlation-request-id": [ - "c95c9de3-5e16-409d-b874-e80cccaa7f3d" + "d48286e3-b9e0-4f26-958b-4633e76febf9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183705Z:c95c9de3-5e16-409d-b874-e80cccaa7f3d" + "WESTUS2:20210216T185240Z:d48286e3-b9e0-4f26-958b-4633e76febf9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:04 GMT" + "Tue, 16 Feb 2021 18:52:39 GMT" ], "Content-Length": [ "239" @@ -831,26 +696,26 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"TGwAf0bMesxEVLXGeJXqQPJ0VvlVbMOsrjwVvd9nkxiv1hioDBnCUkzgJF3BqOZeYMbSuW0T1EbjgBHeVMUzzw==\",\r\n \"secondaryReadonlyMasterKey\": \"v36WCsTox9jl4tvFOP9TCn4W6FccyJrLEbmVTsStR4YSShWmju5AvLJDfilfzVD2zmIwIPVXaVTN7CT6lGkErQ==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"L0voWRUrTgyF30vqim6Wt0vBlIM9ToCqUq3ARg6vknZwRvTciCK9tneqDqmhukPAs8khxR7EN8bSwFQiMUX2cg==\",\r\n \"secondaryReadonlyMasterKey\": \"7OdqUJ5UhJo47SEqc6Hpu0nCntOTXtesCa0BqkWUbqlCSpdgr1MyArumelP5SgTgKH0n4VeP8URYqIKD6MlJhA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"secondaryReadonly\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0014f7c5-539d-4113-a334-0306f9edc2f3" + "9718b4b6-f447-49b4-9006-cf3a2b9ab69d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -867,13 +732,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/88669713-36ab-4640-b121-b13c4ae49a36?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/88669713-36ab-4640-b121-b13c4ae49a36?api-version=2021-01-15" ], "x-ms-request-id": [ - "1bd89349-8926-4147-ad19-17fbe95259f4" + "88669713-36ab-4640-b121-b13c4ae49a36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,16 +753,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "dd861f76-2a7d-447a-845f-a7975d21d6d7" + "dade9124-1f35-4da0-9453-286b12139c40" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183706Z:dd861f76-2a7d-447a-845f-a7975d21d6d7" + "WESTUS2:20210216T185241Z:dade9124-1f35-4da0-9453-286b12139c40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:37:05 GMT" + "Tue, 16 Feb 2021 18:52:40 GMT" ], "Content-Length": [ "21" @@ -910,76 +775,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWJkODkzNDktODkyNi00MTQ3LWFkMTktMTdmYmU5NTI1OWY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/88669713-36ab-4640-b121-b13c4ae49a36?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzg4NjY5NzEzLTM2YWItNDY0MC1iMTIxLWIxM2M0YWU0OWEzNj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "c280a0e6-7110-4732-a8ee-f6d28903946f" - ], - "x-ms-correlation-request-id": [ - "c280a0e6-7110-4732-a8ee-f6d28903946f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T183736Z:c280a0e6-7110-4732-a8ee-f6d28903946f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 18:37:36 GMT" - ], - "Content-Length": [ - "21" - ], - "Content-Type": [ - "application/json" + "x-ms-client-request-id": [ + "9718b4b6-f447-49b4-9006-cf3a2b9ab69d" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWJkODkzNDktODkyNi00MTQ3LWFkMTktMTdmYmU5NTI1OWY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -999,47 +807,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-request-id": [ - "c60a1a92-7873-452b-a745-94ba4104d444" + "db0e0c13-1dc6-4a34-a6c3-a52341f11442" ], "x-ms-correlation-request-id": [ - "c60a1a92-7873-452b-a745-94ba4104d444" + "db0e0c13-1dc6-4a34-a6c3-a52341f11442" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183807Z:c60a1a92-7873-452b-a745-94ba4104d444" + "WESTUS2:20210216T185311Z:db0e0c13-1dc6-4a34-a6c3-a52341f11442" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:38:06 GMT" + "Tue, 16 Feb 2021 18:53:10 GMT" ], "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWJkODkzNDktODkyNi00MTQ3LWFkMTktMTdmYmU5NTI1OWY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/88669713-36ab-4640-b121-b13c4ae49a36?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy84ODY2OTcxMy0zNmFiLTQ2NDAtYjEyMS1iMTNjNGFlNDlhMzY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9718b4b6-f447-49b4-9006-cf3a2b9ab69d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1059,89 +867,32 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "2513441c-7ca9-4193-b496-1cbf29f58bb7" + "b39a20ef-38a7-498b-b661-763132dfcbd7" ], "x-ms-correlation-request-id": [ - "2513441c-7ca9-4193-b496-1cbf29f58bb7" + "b39a20ef-38a7-498b-b661-763132dfcbd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T183837Z:2513441c-7ca9-4193-b496-1cbf29f58bb7" + "WESTUS2:20210216T185311Z:b39a20ef-38a7-498b-b661-763132dfcbd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 18:38:36 GMT" + "Tue, 16 Feb 2021 18:53:10 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount27/regenerateKey/operationResults/1bd89349-8926-4147-ad19-17fbe95259f4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDI3L3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy8xYmQ4OTM0OS04OTI2LTQxNDctYWQxOS0xN2ZiZTk1MjU5ZjQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-activity-id": [ - "1f95cc86-528d-4a77-9fc4-bc18eda52152" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "6d8a3c34-7943-46c8-95af-9eff2cdcd8ed" - ], - "x-ms-correlation-request-id": [ - "6d8a3c34-7943-46c8-95af-9eff2cdcd8ed" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T183837Z:6d8a3c34-7943-46c8-95af-9eff2cdcd8ed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 18:38:36 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 } ], "Names": {}, 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 7d04a8b99bc6..cd03aff26ab6 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": [ - "1ac4ac05-f9d2-47d8-9989-1e0ace13b9ae" + "167d336f-53c0-49a0-aee0-188284040fb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b10cd1a3-a301-41fb-a2ed-cdd1e64aa93b" + "89198e64-5aab-4349-a37c-c9a20a9abc7f" ], "x-ms-correlation-request-id": [ - "b10cd1a3-a301-41fb-a2ed-cdd1e64aa93b" + "89198e64-5aab-4349-a37c-c9a20a9abc7f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225302Z:b10cd1a3-a301-41fb-a2ed-cdd1e64aa93b" + "WESTUS2:20210216T204122Z:89198e64-5aab-4349-a37c-c9a20a9abc7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:53:01 GMT" + "Tue, 16 Feb 2021 20:41:22 GMT" ], "Content-Length": [ "197" @@ -64,25 +64,25 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4\",\r\n \"name\": \"CosmosDBResourceGroup4\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8915be20-aa9c-479c-a3fc-bca8f274401c" + "70e70dfe-b415-4d96-adc2-a05ee77d5cee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "d0f1a072-c2cf-48e0-9e18-cd29fd8ac2a0" + "6942f739-2f0b-4bd9-89d2-e14ae5353a93" ], "x-ms-correlation-request-id": [ - "d0f1a072-c2cf-48e0-9e18-cd29fd8ac2a0" + "6942f739-2f0b-4bd9-89d2-e14ae5353a93" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225303Z:d0f1a072-c2cf-48e0-9e18-cd29fd8ac2a0" + "WESTUS2:20210216T204123Z:6942f739-2f0b-4bd9-89d2-e14ae5353a93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:53:03 GMT" + "Tue, 16 Feb 2021 20:41:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +127,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "70e70dfe-b415-4d96-adc2-a05ee77d5cee" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -156,50 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "58943ceb-33ca-4916-9616-9ad6ca6dd5ad" + "265713fa-6615-496d-9f1d-05e0c7d2654c" ], "x-ms-correlation-request-id": [ - "58943ceb-33ca-4916-9616-9ad6ca6dd5ad" + "265713fa-6615-496d-9f1d-05e0c7d2654c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225441Z:58943ceb-33ca-4916-9616-9ad6ca6dd5ad" + "WESTUS2:20210216T204232Z:265713fa-6615-496d-9f1d-05e0c7d2654c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:41 GMT" + "Tue, 16 Feb 2021 20:42:31 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "274f52ef-9236-4d75-8841-342151bcd144" + "c8dd5efb-f1f5-4a7f-8df7-d9f82977e09d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -219,44 +222,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "fa548258-656e-4670-85eb-9dd39d11d3cb" + "4ba43941-3cae-4063-9cb9-efb1df1fa550" ], "x-ms-correlation-request-id": [ - "fa548258-656e-4670-85eb-9dd39d11d3cb" + "4ba43941-3cae-4063-9cb9-efb1df1fa550" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225441Z:fa548258-656e-4670-85eb-9dd39d11d3cb" + "WESTUS2:20210216T204232Z:4ba43941-3cae-4063-9cb9-efb1df1fa550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:41 GMT" + "Tue, 16 Feb 2021 20:42:32 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8daae044-c3c0-41f7-9426-e56a4257f532" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -276,50 +282,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "ad2923e6-cd48-491f-a553-54145d77db1d" + "7d14db3b-be4b-4363-a668-6109330cbded" ], "x-ms-correlation-request-id": [ - "ad2923e6-cd48-491f-a553-54145d77db1d" + "7d14db3b-be4b-4363-a668-6109330cbded" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225447Z:ad2923e6-cd48-491f-a553-54145d77db1d" + "WESTUS2:20210216T204240Z:7d14db3b-be4b-4363-a668-6109330cbded" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:47 GMT" + "Tue, 16 Feb 2021 20:42:39 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a507a7b5-97cf-4d55-b960-8f197c8b27a8" + "8daae044-c3c0-41f7-9426-e56a4257f532" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -339,50 +345,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "c3eb9b9e-2fff-44d9-8819-35d0d2a271a4" + "396f7281-5f87-4e58-a3ee-1f180a66d9a2" ], "x-ms-correlation-request-id": [ - "c3eb9b9e-2fff-44d9-8819-35d0d2a271a4" + "396f7281-5f87-4e58-a3ee-1f180a66d9a2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225447Z:c3eb9b9e-2fff-44d9-8819-35d0d2a271a4" + "WESTUS2:20210216T204240Z:396f7281-5f87-4e58-a3ee-1f180a66d9a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:47 GMT" + "Tue, 16 Feb 2021 20:42:39 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee674ea3-7609-4c07-998f-c1407d82a626" + "b8426efe-34cd-46b0-aaaf-6f137f106b22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -402,56 +408,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "5fac813e-0daa-40be-b1c6-7002976b8ddf" + "23af61f3-c42e-490e-814c-815d44d6468b" ], "x-ms-correlation-request-id": [ - "5fac813e-0daa-40be-b1c6-7002976b8ddf" + "23af61f3-c42e-490e-814c-815d44d6468b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225447Z:5fac813e-0daa-40be-b1c6-7002976b8ddf" + "WESTUS2:20210216T204240Z:23af61f3-c42e-490e-814c-815d44d6468b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:47 GMT" + "Tue, 16 Feb 2021 20:42:39 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East 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\": \"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": [ - "d0bbf141-4233-4858-9486-2929a96149b1" + "70e70dfe-b415-4d96-adc2-a05ee77d5cee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "545" + "585" ] }, "ResponseHeaders": { @@ -462,13 +468,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell/operationResults/670e1931-e458-4606-b672-82646ba04053?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell/operationResults/dc9bd977-fdb4-4d20-9aad-fea704308fef?api-version=2021-01-15" ], "x-ms-request-id": [ - "670e1931-e458-4606-b672-82646ba04053" + "dc9bd977-fdb4-4d20-9aad-fea704308fef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/670e1931-e458-4606-b672-82646ba04053?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9bd977-fdb4-4d20-9aad-fea704308fef?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,38 +489,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "c2d93876-661c-4114-9db2-9fa4c110b20e" + "8e752e70-b4bd-4f7d-a290-f2294b7da109" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225310Z:c2d93876-661c-4114-9db2-9fa4c110b20e" + "WESTUS2:20210216T204131Z:8e752e70-b4bd-4f7d-a290-f2294b7da109" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:53:10 GMT" + "Tue, 16 Feb 2021 20:41:31 GMT" ], "Content-Length": [ - "1798" + "1907" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:09.0765639Z\"\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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:29.7007378Z\"\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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/670e1931-e458-4606-b672-82646ba04053?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjcwZTE5MzEtZTQ1OC00NjA2LWI2NzItODI2NDZiYTA0MDUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9bd977-fdb4-4d20-9aad-fea704308fef?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5YmQ5NzctZmRiNC00ZDIwLTlhYWQtZmVhNzA0MzA4ZmVmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "70e70dfe-b415-4d96-adc2-a05ee77d5cee" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -537,19 +546,19 @@ "11998" ], "x-ms-request-id": [ - "65db02f7-8c48-4f52-bec1-29b7bdf0ff38" + "cf6237e9-2b4e-40ac-b058-bb1923ae76da" ], "x-ms-correlation-request-id": [ - "65db02f7-8c48-4f52-bec1-29b7bdf0ff38" + "cf6237e9-2b4e-40ac-b058-bb1923ae76da" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225340Z:65db02f7-8c48-4f52-bec1-29b7bdf0ff38" + "WESTUS2:20210216T204201Z:cf6237e9-2b4e-40ac-b058-bb1923ae76da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:53:40 GMT" + "Tue, 16 Feb 2021 20:42:01 GMT" ], "Content-Length": [ "21" @@ -562,73 +571,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/670e1931-e458-4606-b672-82646ba04053?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjcwZTE5MzEtZTQ1OC00NjA2LWI2NzItODI2NDZiYTA0MDUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dc9bd977-fdb4-4d20-9aad-fea704308fef?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGM5YmQ5NzctZmRiNC00ZDIwLTlhYWQtZmVhNzA0MzA4ZmVmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-gatewayversion": [ - "version=2.11.0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "3ae41f4b-7ee4-4dee-9f52-94ea4515f78f" - ], - "x-ms-correlation-request-id": [ - "3ae41f4b-7ee4-4dee-9f52-94ea4515f78f" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225410Z:3ae41f4b-7ee4-4dee-9f52-94ea4515f78f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 06 Jan 2021 22:54:10 GMT" - ], - "Content-Length": [ - "21" + "x-ms-client-request-id": [ + "70e70dfe-b415-4d96-adc2-a05ee77d5cee" ], - "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/670e1931-e458-4606-b672-82646ba04053?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjcwZTE5MzEtZTQ1OC00NjA2LWI2NzItODI2NDZiYTA0MDUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -648,22 +603,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "c6fc1bfa-f88a-4fde-b7b6-a990d99804ed" + "5156a295-d4e7-4dad-9641-6dfb989d890a" ], "x-ms-correlation-request-id": [ - "c6fc1bfa-f88a-4fde-b7b6-a990d99804ed" + "5156a295-d4e7-4dad-9641-6dfb989d890a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225441Z:c6fc1bfa-f88a-4fde-b7b6-a990d99804ed" + "WESTUS2:20210216T204232Z:5156a295-d4e7-4dad-9641-6dfb989d890a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:40 GMT" + "Tue, 16 Feb 2021 20:42:31 GMT" ], "Content-Length": [ "22" @@ -676,22 +631,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvdGVzdHVwZGF0ZXJlZ2lvbnBvd2Vyc2hlbGw/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "8a5df779-f02a-4ea3-a285-d3c38f68bd3f" + "8daae044-c3c0-41f7-9426-e56a4257f532" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,13 +663,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell/operationResults/bea4b808-ab67-4165-aa79-1036b1ac6218?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell/operationResults/2f08645e-e965-434d-8bc3-eb587cc5beaf?api-version=2021-01-15" ], "x-ms-request-id": [ - "bea4b808-ab67-4165-aa79-1036b1ac6218" + "2f08645e-e965-434d-8bc3-eb587cc5beaf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bea4b808-ab67-4165-aa79-1036b1ac6218?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2f08645e-e965-434d-8bc3-eb587cc5beaf?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,25 +684,25 @@ "1198" ], "x-ms-correlation-request-id": [ - "47b3e953-b29d-4c0a-bdd2-52e9d79baa3e" + "537c66aa-ed53-4a4b-86f3-59b2033608e5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210106T225447Z:47b3e953-b29d-4c0a-bdd2-52e9d79baa3e" + "WESTUS2:20210216T204239Z:537c66aa-ed53-4a4b-86f3-59b2033608e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Jan 2021 22:54:46 GMT" + "Tue, 16 Feb 2021 20:42:39 GMT" ], "Content-Length": [ - "2147" + "2256" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-01-06T22:53:40.2134198Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"e8a02e8f-7ba6-408a-9223-7e6bf41617e1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup4/providers/Microsoft.DocumentDB/databaseAccounts/testupdateregionpowershell\",\r\n \"name\": \"testupdateregionpowershell\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-16T20:41:55.6613368Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell.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 \"instanceId\": \"db43af32-9097-432b-abf4-b6af5fde4810\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://testupdateregionpowershell-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\": \"testupdateregionpowershell-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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.AccountTests/TestPrivateEndpoint.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.AccountTests/TestPrivateEndpoint.json index 3a29de6c8a3c..d1af9b90afbd 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41510211-ebac-4ce2-9e30-6d745fe96a01" + "ab8b9698-5a2c-4984-bbaf-12a9435d6e3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,50 +39,47 @@ "11999" ], "x-ms-request-id": [ - "90755e30-ca26-4e73-aaac-ac5cd0f1a755" + "5077695c-5af8-43c8-a68b-832c750bebc3" ], "x-ms-correlation-request-id": [ - "90755e30-ca26-4e73-aaac-ac5cd0f1a755" + "5077695c-5af8-43c8-a68b-832c750bebc3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204021Z:90755e30-ca26-4e73-aaac-ac5cd0f1a755" + "WESTUS2:20210213T020600Z:5077695c-5af8-43c8-a68b-832c750bebc3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:21 GMT" + "Sat, 13 Feb 2021 02:05:59 GMT" ], "Content-Length": [ - "1682" + "2051" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\r\n \"name\": \"db945\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db945.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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\r\n \"name\": \"db945\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2020-06-11T20:33:55.2120781Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db945.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 \"instanceId\": \"84fac680-a6c3-4e9e-96ed-0a71fff043f1\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db945-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\": \"db945-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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.Network/virtualNetworks/MyVnetPE?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50481bf4-5f54-4798-99a7-bc99ff4da0be" + "d6247a40-a33b-4f1a-8146-4b608d296bd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -96,13 +93,13 @@ "gateway" ], "x-ms-request-id": [ - "018c0f96-38b6-4084-a02f-c17d6b764c7b" + "fa9ff4b8-1c00-4e6b-a4a7-a5176badbeae" ], "x-ms-correlation-request-id": [ - "018c0f96-38b6-4084-a02f-c17d6b764c7b" + "fa9ff4b8-1c00-4e6b-a4a7-a5176badbeae" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204022Z:018c0f96-38b6-4084-a02f-c17d6b764c7b" + "WESTUS2:20210213T020600Z:fa9ff4b8-1c00-4e6b-a4a7-a5176badbeae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +108,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:21 GMT" + "Sat, 13 Feb 2021 02:05:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,16 +124,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6247a40-a33b-4f1a-8146-4b608d296bd5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"0e743840-1afa-4ca7-beca-16ce860da904\"" + "W/\"2356669d-9ace-4d2d-95b3-4bdb75cef683\"" ], "x-ms-request-id": [ - "f893b33f-a7c4-424a-a1d0-2783211eff0c" + "cf6da79b-9ee7-4c07-a77f-34bc42c425f3" ], "x-ms-correlation-request-id": [ - "46f136f3-02d0-493e-b5a5-fade7f2f0add" + "3fcf2cf9-8d22-4dc7-b9c1-80b59a2bd40b" ], "x-ms-arm-service-request-id": [ - "d5c96880-3668-4f3a-9852-83a29336fdc8" + "7f61dc57-6498-4494-91e6-2fd07e2eef94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -169,13 +169,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204030Z:46f136f3-02d0-493e-b5a5-fade7f2f0add" + "WESTUS2:20210213T020609Z:3fcf2cf9-8d22-4dc7-b9c1-80b59a2bd40b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:29 GMT" + "Sat, 13 Feb 2021 02:06:09 GMT" ], "Content-Length": [ "1317" @@ -187,26 +187,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/\\\"0e743840-1afa-4ca7-beca-16ce860da904\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df45bb1e-c477-4dc1-af20-c95405541639\",\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/\\\"0e743840-1afa-4ca7-beca-16ce860da904\\\"\",\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 \"enableVmProtection\": 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/\\\"2356669d-9ace-4d2d-95b3-4bdb75cef683\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ce25273-48ac-4ffd-af5f-e1e9338d9fc8\",\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/\\\"2356669d-9ace-4d2d-95b3-4bdb75cef683\\\"\",\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 \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "540c953b-3288-48a3-ac0d-449e97678d06" + "d6247a40-a33b-4f1a-8146-4b608d296bd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"0e743840-1afa-4ca7-beca-16ce860da904\"" + "W/\"2356669d-9ace-4d2d-95b3-4bdb75cef683\"" ], "x-ms-request-id": [ - "0ff8608e-b954-46ee-bd57-8f6d615c2cc8" + "dfb11ab5-9825-4840-96c4-5a54457f9f1f" ], "x-ms-correlation-request-id": [ - "43b144e0-376a-4e6f-8522-8e6fc47cc94e" + "7f77b8d5-1c23-44cc-8275-a8c1dc911b58" ], "x-ms-arm-service-request-id": [ - "9d2c4649-dd71-45fa-8336-ce3c35afe582" + "b25dbeb7-0279-4497-8477-daba3272ca54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,13 +239,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204030Z:43b144e0-376a-4e6f-8522-8e6fc47cc94e" + "WESTUS2:20210213T020609Z:7f77b8d5-1c23-44cc-8275-a8c1dc911b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:30 GMT" + "Sat, 13 Feb 2021 02:06:09 GMT" ], "Content-Length": [ "1317" @@ -257,26 +257,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/\\\"0e743840-1afa-4ca7-beca-16ce860da904\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df45bb1e-c477-4dc1-af20-c95405541639\",\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/\\\"0e743840-1afa-4ca7-beca-16ce860da904\\\"\",\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 \"enableVmProtection\": 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/\\\"2356669d-9ace-4d2d-95b3-4bdb75cef683\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ce25273-48ac-4ffd-af5f-e1e9338d9fc8\",\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/\\\"2356669d-9ace-4d2d-95b3-4bdb75cef683\\\"\",\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 \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "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 },\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\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f533d121-789a-48d7-9e8f-d7631cfd2897" + "d6247a40-a33b-4f1a-8146-4b608d296bd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -296,19 +296,19 @@ "3" ], "x-ms-request-id": [ - "338caa8a-b866-4bd1-91b8-7606237072a4" + "cb40af57-c3c6-4883-83d3-de95e150bdc6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/338caa8a-b866-4bd1-91b8-7606237072a4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/cb40af57-c3c6-4883-83d3-de95e150bdc6?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "861f5e7a-144c-4eb8-8ed6-2ec3282d7dd9" + "142aa66d-0193-427c-aae8-02bcd4d1fc14" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "d90fd100-d236-49eb-8790-a8cae6736a95" + "01f5abbb-d432-4ef0-b493-4c771beaad25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,13 +321,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204026Z:861f5e7a-144c-4eb8-8ed6-2ec3282d7dd9" + "WESTUS2:20210213T020605Z:142aa66d-0193-427c-aae8-02bcd4d1fc14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:26 GMT" + "Sat, 13 Feb 2021 02:06:05 GMT" ], "Content-Length": [ "1315" @@ -339,20 +339,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/\\\"ef689859-cad7-4d79-8720-429fe45bff44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"df45bb1e-c477-4dc1-af20-c95405541639\",\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/\\\"ef689859-cad7-4d79-8720-429fe45bff44\\\"\",\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 \"enableVmProtection\": 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/\\\"3752438c-c990-496d-b3e9-208a3611c029\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0ce25273-48ac-4ffd-af5f-e1e9338d9fc8\",\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/\\\"3752438c-c990-496d-b3e9-208a3611c029\\\"\",\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 \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/338caa8a-b866-4bd1-91b8-7606237072a4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzM4Y2FhOGEtYjg2Ni00YmQxLTkxYjgtNzYwNjIzNzA3MmE0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/cb40af57-c3c6-4883-83d3-de95e150bdc6?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2I0MGFmNTctYzNjNi00ODgzLTgzZDMtZGU5NWUxNTBiZGM2P2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6247a40-a33b-4f1a-8146-4b608d296bd5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -363,13 +366,13 @@ "no-cache" ], "x-ms-request-id": [ - "a41070a5-c266-4d6a-bb4f-ab1df02b0c84" + "ec232c51-fe1e-4a93-bf2e-0bbde930a09d" ], "x-ms-correlation-request-id": [ - "ecc65e0e-a915-46e3-b43f-0fc46f76a454" + "a58574b4-e240-4016-ba6a-ca5d34d205bc" ], "x-ms-arm-service-request-id": [ - "fad8d703-29b7-439b-86e6-5ac837173fd8" + "0ee65e8f-20ee-41f3-9eeb-3e8b21593683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,13 +385,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204030Z:ecc65e0e-a915-46e3-b43f-0fc46f76a454" + "WESTUS2:20210213T020608Z:a58574b4-e240-4016-ba6a-ca5d34d205bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:29 GMT" + "Sat, 13 Feb 2021 02:06:08 GMT" ], "Content-Length": [ "29" @@ -404,22 +407,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "403acee7-c3db-4d8c-860d-f798ff92e220" + "ebf03b40-b0c1-42e9-8674-f13f6779748e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -433,13 +436,13 @@ "gateway" ], "x-ms-request-id": [ - "7a3ef8f9-ba98-4cd7-8dfe-009af392ea4b" + "afe7e66d-1bd2-49a0-8064-72974b3c0730" ], "x-ms-correlation-request-id": [ - "7a3ef8f9-ba98-4cd7-8dfe-009af392ea4b" + "afe7e66d-1bd2-49a0-8064-72974b3c0730" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204030Z:7a3ef8f9-ba98-4cd7-8dfe-009af392ea4b" + "WESTUS2:20210213T020609Z:afe7e66d-1bd2-49a0-8064-72974b3c0730" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +451,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:30 GMT" + "Sat, 13 Feb 2021 02:06:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -464,16 +467,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ebf03b40-b0c1-42e9-8674-f13f6779748e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -484,16 +490,16 @@ "no-cache" ], "ETag": [ - "W/\"bff4985c-31ef-41b0-b688-da89e3ba0260\"" + "W/\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\"" ], "x-ms-request-id": [ - "0269e23e-a813-4cb5-b92a-8b3c0940d63c" + "8e69c330-b662-44ae-89dd-04e097d36121" ], "x-ms-correlation-request-id": [ - "5fa660f6-6081-42ce-a6f4-811dc92f1e6c" + "46fd1002-d952-4202-91d2-e6cb31a40f59" ], "x-ms-arm-service-request-id": [ - "6c3f898d-312c-4694-943b-2321712b232e" + "66ebbcb3-e118-45dd-8d79-fdb449c4b15e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -503,16 +509,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204114Z:5fa660f6-6081-42ce-a6f4-811dc92f1e6c" + "WESTUS2:20210213T020642Z:46fd1002-d952-4202-91d2-e6cb31a40f59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:13 GMT" + "Sat, 13 Feb 2021 02:06:42 GMT" ], "Content-Length": [ "1925" @@ -524,26 +530,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/\\\"bff4985c-31ef-41b0-b688-da89e3ba0260\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"25835cbb-b3cd-4f2a-8b62-9c01350c0002\",\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/\\\"bff4985c-31ef-41b0-b688-da89e3ba0260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.0a08c72d-f5a1-4ac9-a5c2-f0f0b2fe6e57\"\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/\\\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da6e8647-00ca-4a23-94fb-06145e272767\",\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/\\\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.c6e9adc1-0c9f-4266-b6d4-65a18561cec3\"\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=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfb63b97-9855-41e6-b18e-4d94b883ef27" + "ebf03b40-b0c1-42e9-8674-f13f6779748e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -554,16 +560,16 @@ "no-cache" ], "ETag": [ - "W/\"bff4985c-31ef-41b0-b688-da89e3ba0260\"" + "W/\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\"" ], "x-ms-request-id": [ - "5262de5d-1fd9-423c-9927-15d153fbe5a2" + "3067da23-e8d8-440a-902e-c7358165c048" ], "x-ms-correlation-request-id": [ - "0506b379-0045-4bc2-bd2a-e1f9bede8e60" + "d56200c8-4b5d-4cb9-87b0-52c7c2622217" ], "x-ms-arm-service-request-id": [ - "6aad6c71-438e-47a3-83ec-1067ca48685d" + "82d51bac-25f4-4c05-827c-082a052e840c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,16 +579,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204114Z:0506b379-0045-4bc2-bd2a-e1f9bede8e60" + "WESTUS2:20210213T020643Z:d56200c8-4b5d-4cb9-87b0-52c7c2622217" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:14 GMT" + "Sat, 13 Feb 2021 02:06:42 GMT" ], "Content-Length": [ "1925" @@ -594,26 +600,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/\\\"bff4985c-31ef-41b0-b688-da89e3ba0260\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"25835cbb-b3cd-4f2a-8b62-9c01350c0002\",\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/\\\"bff4985c-31ef-41b0-b688-da89e3ba0260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.0a08c72d-f5a1-4ac9-a5c2-f0f0b2fe6e57\"\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/\\\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da6e8647-00ca-4a23-94fb-06145e272767\",\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/\\\"b5a73b43-8a80-4b92-93c2-985cacbc3bb9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.c6e9adc1-0c9f-4266-b6d4-65a18561cec3\"\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=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "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 },\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/db945\",\r\n \"groupIds\": [\r\n \"Sql\"\r\n ]\r\n },\r\n \"name\": \"plsConnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "67ffe18c-bf40-4a56-943e-0f75f38f6b5e" + "ebf03b40-b0c1-42e9-8674-f13f6779748e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,19 +639,19 @@ "10" ], "x-ms-request-id": [ - "1a20d616-8a7a-49e2-a226-93cb45703689" + "6e809f0c-d328-4c91-ac4e-88d1736d87be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/1a20d616-8a7a-49e2-a226-93cb45703689?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/6e809f0c-d328-4c91-ac4e-88d1736d87be?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "1eb04b47-b6cb-4d49-88c8-d5c82eff8c07" + "b123c169-b80d-40ba-9878-6053d837130a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e4f76168-e382-4f4a-9d48-0a2e26b5d0e3" + "ea4755db-7a83-490e-8a46-a6814b6e0717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,13 +664,13 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204034Z:1eb04b47-b6cb-4d49-88c8-d5c82eff8c07" + "WESTUS2:20210213T020612Z:b123c169-b80d-40ba-9878-6053d837130a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:33 GMT" + "Sat, 13 Feb 2021 02:06:12 GMT" ], "Content-Length": [ "1941" @@ -676,84 +682,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/\\\"258d829b-b498-4d69-9dbe-3fd77ee15086\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"25835cbb-b3cd-4f2a-8b62-9c01350c0002\",\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/\\\"258d829b-b498-4d69-9dbe-3fd77ee15086\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.0a08c72d-f5a1-4ac9-a5c2-f0f0b2fe6e57\"\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/\\\"7bff4c12-4acb-4ed4-9dbb-e2960ee4b297\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"da6e8647-00ca-4a23-94fb-06145e272767\",\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/\\\"7bff4c12-4acb-4ed4-9dbb-e2960ee4b297\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945\",\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 \"subnet\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE/subnets/peSubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/networkInterfaces/mype.nic.c6e9adc1-0c9f-4266-b6d4-65a18561cec3\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/1a20d616-8a7a-49e2-a226-93cb45703689?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWEyMGQ2MTYtOGE3YS00OWUyLWEyMjYtOTNjYjQ1NzAzNjg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/6e809f0c-d328-4c91-ac4e-88d1736d87be?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU4MDlmMGMtZDMyOC00YzkxLWFjNGUtODhkMTczNmQ4N2JlP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b7fc7e8b-7e37-4802-b86d-858dadaad306" - ], - "x-ms-correlation-request-id": [ - "44134f17-746b-4440-b247-600c9b36a421" - ], - "x-ms-arm-service-request-id": [ - "1fe84e75-c0bc-4e4d-8fb8-042797d4a9aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T204044Z:44134f17-746b-4440-b247-600c9b36a421" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 20:40:43 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "ebf03b40-b0c1-42e9-8674-f13f6779748e" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/1a20d616-8a7a-49e2-a226-93cb45703689?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWEyMGQ2MTYtOGE3YS00OWUyLWEyMjYtOTNjYjQ1NzAzNjg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -764,16 +709,16 @@ "no-cache" ], "Retry-After": [ - "10" + "20" ], "x-ms-request-id": [ - "d535bd7d-1b8d-44fc-9630-03fa1dd333bb" + "fbf39f32-f987-4885-b250-3b3ae8975932" ], "x-ms-correlation-request-id": [ - "798d2deb-0a8d-4527-a879-c5d038da5b6d" + "b9ae9775-f48f-4201-a215-cb80dec34b87" ], "x-ms-arm-service-request-id": [ - "296a2850-dd66-4966-9625-cee02322d7c9" + "e3cfb26a-88d2-4a1d-ba48-262bec57982f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,16 +728,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204054Z:798d2deb-0a8d-4527-a879-c5d038da5b6d" + "WESTUS2:20210213T020622Z:b9ae9775-f48f-4201-a215-cb80dec34b87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:40:53 GMT" + "Sat, 13 Feb 2021 02:06:22 GMT" ], "Content-Length": [ "30" @@ -808,80 +753,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/1a20d616-8a7a-49e2-a226-93cb45703689?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWEyMGQ2MTYtOGE3YS00OWUyLWEyMjYtOTNjYjQ1NzAzNjg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/6e809f0c-d328-4c91-ac4e-88d1736d87be?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNmU4MDlmMGMtZDMyOC00YzkxLWFjNGUtODhkMTczNmQ4N2JlP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "ee1473e8-4b3f-4418-91c1-4d2ef41ebd8a" - ], - "x-ms-correlation-request-id": [ - "73383626-d889-4f7a-a06b-1841357c60b1" - ], - "x-ms-arm-service-request-id": [ - "56cb965b-dd43-4a08-863d-989eac6c8f98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200611T204104Z:73383626-d889-4f7a-a06b-1841357c60b1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Jun 2020 20:41:03 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "ebf03b40-b0c1-42e9-8674-f13f6779748e" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/1a20d616-8a7a-49e2-a226-93cb45703689?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWEyMGQ2MTYtOGE3YS00OWUyLWEyMjYtOTNjYjQ1NzAzNjg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -892,13 +776,13 @@ "no-cache" ], "x-ms-request-id": [ - "b1dc78a3-f3d2-4c33-b22b-8c06ae91238f" + "bb53a52e-25c7-46f7-8c4e-4b1e34087b36" ], "x-ms-correlation-request-id": [ - "bdc98ea7-a632-4b4b-b386-d88daa2387be" + "39186cad-790c-44d1-b28a-5024339630b9" ], "x-ms-arm-service-request-id": [ - "8ab9c34c-5599-4756-a437-4df6776647b6" + "2eb4c833-2587-406f-bab7-252d7608323d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -908,16 +792,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204114Z:bdc98ea7-a632-4b4b-b386-d88daa2387be" + "WESTUS2:20210213T020642Z:39186cad-790c-44d1-b28a-5024339630b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:13 GMT" + "Sat, 13 Feb 2021 02:06:41 GMT" ], "Content-Length": [ "29" @@ -939,16 +823,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aba0aa00-21ba-433a-9924-9d48ca9cba36" + "79bcd261-4d5a-43cb-98f6-c64a33232d0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -971,28 +855,25 @@ "11999" ], "x-ms-request-id": [ - "ebafe8c2-8a45-4e74-96bf-5a1b966b3ea5" + "83d68a52-b37a-438e-8d02-b18b34b78a7b" ], "x-ms-correlation-request-id": [ - "ebafe8c2-8a45-4e74-96bf-5a1b966b3ea5" + "83d68a52-b37a-438e-8d02-b18b34b78a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204115Z:ebafe8c2-8a45-4e74-96bf-5a1b966b3ea5" + "WESTUS2:20210213T020644Z:83d68a52-b37a-438e-8d02-b18b34b78a7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:14 GMT" + "Sat, 13 Feb 2021 02:06:43 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1005,16 +886,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18a2331f-00d8-4d4d-a536-20818156157c" + "debdb11f-f526-4ac5-9063-3f12e961150c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1037,28 +918,25 @@ "11996" ], "x-ms-request-id": [ - "2c2eebb0-642f-4c95-abc6-6aa202e88b69" + "6eab2ac2-1a31-4905-b714-23238aa03874" ], "x-ms-correlation-request-id": [ - "2c2eebb0-642f-4c95-abc6-6aa202e88b69" + "6eab2ac2-1a31-4905-b714-23238aa03874" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204116Z:2c2eebb0-642f-4c95-abc6-6aa202e88b69" + "WESTUS2:20210213T020645Z:6eab2ac2-1a31-4905-b714-23238aa03874" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:15 GMT" + "Sat, 13 Feb 2021 02:06:44 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1071,16 +949,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5533ed-dbd7-4999-b83f-cdfe26e06cf5" + "7743f7de-3bde-4379-8d9e-25536c5d8663" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1103,28 +981,25 @@ "11995" ], "x-ms-request-id": [ - "05f302bf-ea1f-4b71-9c32-941c0873d04d" + "ccfdda9a-0954-4eb4-be75-5211888c5371" ], "x-ms-correlation-request-id": [ - "05f302bf-ea1f-4b71-9c32-941c0873d04d" + "ccfdda9a-0954-4eb4-be75-5211888c5371" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204116Z:05f302bf-ea1f-4b71-9c32-941c0873d04d" + "WESTUS2:20210213T020645Z:ccfdda9a-0954-4eb4-be75-5211888c5371" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:15 GMT" + "Sat, 13 Feb 2021 02:06:44 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1137,16 +1012,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b1afec-65fd-4dc3-bb83-adacdbe6275a" + "d1884d52-c079-4d86-933e-58b611bbc9af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1169,28 +1044,25 @@ "11994" ], "x-ms-request-id": [ - "b0bb6455-7867-4a3e-ad19-7475707f7574" + "3d3c03c9-b59c-4417-b79f-eb9d9754a411" ], "x-ms-correlation-request-id": [ - "b0bb6455-7867-4a3e-ad19-7475707f7574" + "3d3c03c9-b59c-4417-b79f-eb9d9754a411" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204116Z:b0bb6455-7867-4a3e-ad19-7475707f7574" + "WESTUS2:20210213T020645Z:3d3c03c9-b59c-4417-b79f-eb9d9754a411" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:15 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1203,16 +1075,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "226e7506-495e-4fcc-8b90-66a5bce208c1" + "33a58933-349c-499c-864c-4230c09ccd08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1235,28 +1107,25 @@ "11993" ], "x-ms-request-id": [ - "07c820ec-66cd-406d-bb7c-8a3082fc3120" + "192e78a4-f3e9-4cc0-9b2c-c7493943448f" ], "x-ms-correlation-request-id": [ - "07c820ec-66cd-406d-bb7c-8a3082fc3120" + "192e78a4-f3e9-4cc0-9b2c-c7493943448f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:07c820ec-66cd-406d-bb7c-8a3082fc3120" + "WESTUS2:20210213T020645Z:192e78a4-f3e9-4cc0-9b2c-c7493943448f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1269,16 +1138,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bc5dde0-b4ae-4ec6-8018-1f3dfea93849" + "6c360815-b51c-403a-b713-e3b3933077cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1301,28 +1170,25 @@ "11992" ], "x-ms-request-id": [ - "dd3146a3-5de5-4c83-972a-f9f6b1ca05b9" + "11be591d-7459-430c-9869-3f1533db6397" ], "x-ms-correlation-request-id": [ - "dd3146a3-5de5-4c83-972a-f9f6b1ca05b9" + "11be591d-7459-430c-9869-3f1533db6397" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:dd3146a3-5de5-4c83-972a-f9f6b1ca05b9" + "WESTUS2:20210213T020646Z:11be591d-7459-430c-9869-3f1533db6397" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1335,16 +1201,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d84ccc35-ca8c-4845-b3bb-7626997f16f6" + "050d480d-dc3d-4ef4-941b-8825a9582f85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1367,28 +1233,25 @@ "11991" ], "x-ms-request-id": [ - "2c4be589-6370-4001-941f-b50900012dae" + "cf2c1b6e-24fc-43ee-ac20-4220cdf8e323" ], "x-ms-correlation-request-id": [ - "2c4be589-6370-4001-941f-b50900012dae" + "cf2c1b6e-24fc-43ee-ac20-4220cdf8e323" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:2c4be589-6370-4001-941f-b50900012dae" + "WESTUS2:20210213T020646Z:cf2c1b6e-24fc-43ee-ac20-4220cdf8e323" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1401,16 +1264,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c2fd2a-3de7-4304-b2f4-fc655a4d6d06" + "fd519c81-0b48-48ad-abea-ff5582fa8be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1433,28 +1296,25 @@ "11990" ], "x-ms-request-id": [ - "f687f195-c7bd-4736-948e-53ff0c21db99" + "51135454-8677-4c5d-aaf0-a8140751aaee" ], "x-ms-correlation-request-id": [ - "f687f195-c7bd-4736-948e-53ff0c21db99" + "51135454-8677-4c5d-aaf0-a8140751aaee" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:f687f195-c7bd-4736-948e-53ff0c21db99" + "WESTUS2:20210213T020646Z:51135454-8677-4c5d-aaf0-a8140751aaee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1467,16 +1327,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8ab4a96-d9ca-4b14-8bb1-17332005679b" + "ccc6619d-7482-446c-902f-27e2e2a7711b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1499,28 +1359,25 @@ "11989" ], "x-ms-request-id": [ - "59bdf957-e791-4af8-9564-8d90085c19d6" + "41c6f207-8756-46aa-927a-eb4453f0881e" ], "x-ms-correlation-request-id": [ - "59bdf957-e791-4af8-9564-8d90085c19d6" + "41c6f207-8756-46aa-927a-eb4453f0881e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:59bdf957-e791-4af8-9564-8d90085c19d6" + "WESTUS2:20210213T020646Z:41c6f207-8756-46aa-927a-eb4453f0881e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:45 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1533,16 +1390,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3f6f7b6-2305-4ec3-8a3a-abb785052d3f" + "e2ee577a-ef1f-4703-9b65-2cf5b3445e5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1565,28 +1422,25 @@ "11988" ], "x-ms-request-id": [ - "b35f03dc-ffae-4e73-83be-2276d55df58d" + "8b2a790a-3389-48fe-8cd9-deabcabcdb1e" ], "x-ms-correlation-request-id": [ - "b35f03dc-ffae-4e73-83be-2276d55df58d" + "8b2a790a-3389-48fe-8cd9-deabcabcdb1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:b35f03dc-ffae-4e73-83be-2276d55df58d" + "WESTUS2:20210213T020646Z:8b2a790a-3389-48fe-8cd9-deabcabcdb1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1599,16 +1453,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19210228-91e7-4b54-a326-966ce7526ecd" + "3ff14a71-d327-4dd5-a3d9-aaf63daa32af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1631,28 +1485,25 @@ "11987" ], "x-ms-request-id": [ - "516e80db-1273-40d5-a433-617d1289895f" + "0c1aee6d-7b9f-4c47-ba27-def5d8f1d491" ], "x-ms-correlation-request-id": [ - "516e80db-1273-40d5-a433-617d1289895f" + "0c1aee6d-7b9f-4c47-ba27-def5d8f1d491" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204117Z:516e80db-1273-40d5-a433-617d1289895f" + "WESTUS2:20210213T020646Z:0c1aee6d-7b9f-4c47-ba27-def5d8f1d491" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:16 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1665,16 +1516,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2122b31-7097-430f-a85f-eca4297e3603" + "4f705b4e-8ee5-48c8-b44b-cf29509d10fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1697,28 +1548,25 @@ "11986" ], "x-ms-request-id": [ - "3ed50c06-b0ed-4196-88ad-d55b3e431f76" + "de04199f-129a-4569-89b9-716c4d45ee08" ], "x-ms-correlation-request-id": [ - "3ed50c06-b0ed-4196-88ad-d55b3e431f76" + "de04199f-129a-4569-89b9-716c4d45ee08" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:3ed50c06-b0ed-4196-88ad-d55b3e431f76" + "WESTUS2:20210213T020647Z:de04199f-129a-4569-89b9-716c4d45ee08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1731,16 +1579,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c208e9-f8e5-4682-9c15-7c09f72809fe" + "4acb7765-64a5-40d0-a749-c39c516511b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1763,28 +1611,25 @@ "11985" ], "x-ms-request-id": [ - "8b7e387e-f032-4bea-b88b-1aa8c14f13db" + "1da3be23-d00f-41d2-8074-d47042b9bf21" ], "x-ms-correlation-request-id": [ - "8b7e387e-f032-4bea-b88b-1aa8c14f13db" + "1da3be23-d00f-41d2-8074-d47042b9bf21" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:8b7e387e-f032-4bea-b88b-1aa8c14f13db" + "WESTUS2:20210213T020647Z:1da3be23-d00f-41d2-8074-d47042b9bf21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1797,16 +1642,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a8fd98-7482-4fb4-ab6b-3256775b4567" + "b33bb9c0-0597-431f-8183-8805b8adb6cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1829,28 +1674,25 @@ "11984" ], "x-ms-request-id": [ - "cf1b3698-4f7b-44d5-8bb4-0a616786cfa0" + "88a8c299-7102-481e-afe9-22ac73891fcc" ], "x-ms-correlation-request-id": [ - "cf1b3698-4f7b-44d5-8bb4-0a616786cfa0" + "88a8c299-7102-481e-afe9-22ac73891fcc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:cf1b3698-4f7b-44d5-8bb4-0a616786cfa0" + "WESTUS2:20210213T020647Z:88a8c299-7102-481e-afe9-22ac73891fcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1863,16 +1705,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de59e7e2-2a4e-47a8-9762-fa502f73eaf9" + "a127cc6e-8c5f-42d4-b48d-1fff2ab5b49b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1895,28 +1737,25 @@ "11983" ], "x-ms-request-id": [ - "9b4eb200-1a25-4ecf-b2a3-5525b8734e7b" + "358be8c9-60da-4ef9-a158-f7714d46df95" ], "x-ms-correlation-request-id": [ - "9b4eb200-1a25-4ecf-b2a3-5525b8734e7b" + "358be8c9-60da-4ef9-a158-f7714d46df95" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:9b4eb200-1a25-4ecf-b2a3-5525b8734e7b" + "WESTUS2:20210213T020647Z:358be8c9-60da-4ef9-a158-f7714d46df95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:46 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1929,16 +1768,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4face797-7461-4053-a67b-0f4bc68f3827" + "6d04aa6d-a00d-44c3-9181-776e8107abcc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -1961,28 +1800,25 @@ "11982" ], "x-ms-request-id": [ - "153a5fb9-daaa-435a-a31f-321282855be0" + "19e48490-bdaa-4b2e-b557-c98bf6b1fe27" ], "x-ms-correlation-request-id": [ - "153a5fb9-daaa-435a-a31f-321282855be0" + "19e48490-bdaa-4b2e-b557-c98bf6b1fe27" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:153a5fb9-daaa-435a-a31f-321282855be0" + "WESTUS2:20210213T020647Z:19e48490-bdaa-4b2e-b557-c98bf6b1fe27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -1995,16 +1831,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd9760e6-3d42-4c5f-904e-25c436a407d4" + "e4e07c2a-d9b7-4881-ae94-b7f0d239b6ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2027,28 +1863,25 @@ "11981" ], "x-ms-request-id": [ - "588011d6-067b-4f30-b532-ca3e276ef0b0" + "b5a4e3cb-5fbb-481e-92d9-622a4ae06456" ], "x-ms-correlation-request-id": [ - "588011d6-067b-4f30-b532-ca3e276ef0b0" + "b5a4e3cb-5fbb-481e-92d9-622a4ae06456" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204118Z:588011d6-067b-4f30-b532-ca3e276ef0b0" + "WESTUS2:20210213T020647Z:b5a4e3cb-5fbb-481e-92d9-622a4ae06456" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:18 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2061,16 +1894,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f96f7a53-166e-490c-86ec-961b31e94527" + "3784d0b3-84cc-4f6a-93ee-2bf956fa7e89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2093,28 +1926,25 @@ "11980" ], "x-ms-request-id": [ - "b8fd2376-891f-487f-be81-e51c762736b1" + "a8748d4e-673e-4a1f-8470-7780a8f79bbe" ], "x-ms-correlation-request-id": [ - "b8fd2376-891f-487f-be81-e51c762736b1" + "a8748d4e-673e-4a1f-8470-7780a8f79bbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:b8fd2376-891f-487f-be81-e51c762736b1" + "WESTUS2:20210213T020648Z:a8748d4e-673e-4a1f-8470-7780a8f79bbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2127,16 +1957,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4669a5e7-29cf-4de7-af40-6447f802cdd4" + "e8aa9935-3a9a-4bf2-b213-234be0f5c357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2159,28 +1989,25 @@ "11979" ], "x-ms-request-id": [ - "32fc25ad-ccc9-4917-9d31-660489eef12c" + "447500ee-a9b8-433a-be86-5bf7dd1d11d6" ], "x-ms-correlation-request-id": [ - "32fc25ad-ccc9-4917-9d31-660489eef12c" + "447500ee-a9b8-433a-be86-5bf7dd1d11d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:32fc25ad-ccc9-4917-9d31-660489eef12c" + "WESTUS2:20210213T020648Z:447500ee-a9b8-433a-be86-5bf7dd1d11d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2193,16 +2020,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f5908d5-ee4f-4ca2-b39b-9c8a7febd8d4" + "040cd55f-9337-420e-9416-6fb01284653e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2225,28 +2052,25 @@ "11978" ], "x-ms-request-id": [ - "cba592f6-ba27-4fdf-8c27-cd75d61928ee" + "d90e5313-ad57-477a-b075-ac8a54390e69" ], "x-ms-correlation-request-id": [ - "cba592f6-ba27-4fdf-8c27-cd75d61928ee" + "d90e5313-ad57-477a-b075-ac8a54390e69" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:cba592f6-ba27-4fdf-8c27-cd75d61928ee" + "WESTUS2:20210213T020648Z:d90e5313-ad57-477a-b075-ac8a54390e69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2259,16 +2083,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df8617f0-41aa-4d07-a946-82d65da36294" + "240aec58-6a8e-4a94-b272-cc0f2b074144" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2291,28 +2115,25 @@ "11977" ], "x-ms-request-id": [ - "e36b2551-d893-4a89-9094-2e9ab3245e74" + "1556ce2a-da40-47b5-acd6-2848aeb20f7b" ], "x-ms-correlation-request-id": [ - "e36b2551-d893-4a89-9094-2e9ab3245e74" + "1556ce2a-da40-47b5-acd6-2848aeb20f7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:e36b2551-d893-4a89-9094-2e9ab3245e74" + "WESTUS2:20210213T020648Z:1556ce2a-da40-47b5-acd6-2848aeb20f7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:47 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2325,16 +2146,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "915677d5-dc8f-4ed7-8e88-c9518d7c5764" + "c317ba1a-5583-43c8-8f24-e9f896201ada" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2357,28 +2178,25 @@ "11976" ], "x-ms-request-id": [ - "e31f6d92-724c-4168-ad12-5bc2b46d5ce4" + "45888c3d-a114-4280-b4a3-76828c7513c2" ], "x-ms-correlation-request-id": [ - "e31f6d92-724c-4168-ad12-5bc2b46d5ce4" + "45888c3d-a114-4280-b4a3-76828c7513c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:e31f6d92-724c-4168-ad12-5bc2b46d5ce4" + "WESTUS2:20210213T020648Z:45888c3d-a114-4280-b4a3-76828c7513c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2391,16 +2209,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce796c58-6823-4ccb-9cc4-fc4eb173b10a" + "ee0bbe27-43af-45ea-9e72-7e68f23d6c03" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2423,28 +2241,25 @@ "11975" ], "x-ms-request-id": [ - "e93fc459-ac7a-40f1-a270-968f38ec5c5d" + "c11c8997-72fc-4a31-b2b7-147898680056" ], "x-ms-correlation-request-id": [ - "e93fc459-ac7a-40f1-a270-968f38ec5c5d" + "c11c8997-72fc-4a31-b2b7-147898680056" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:e93fc459-ac7a-40f1-a270-968f38ec5c5d" + "WESTUS2:20210213T020648Z:c11c8997-72fc-4a31-b2b7-147898680056" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2457,16 +2272,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fedbd966-4229-4cbe-8f4c-6147257bbf46" + "af8e19e8-2229-4523-9862-55462f06a33e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2489,28 +2304,25 @@ "11974" ], "x-ms-request-id": [ - "07775dd4-fa84-4e1c-88c3-a63b0b5e094d" + "9e62ad06-d2d7-46b1-b216-cc1c8925fc33" ], "x-ms-correlation-request-id": [ - "07775dd4-fa84-4e1c-88c3-a63b0b5e094d" + "9e62ad06-d2d7-46b1-b216-cc1c8925fc33" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204119Z:07775dd4-fa84-4e1c-88c3-a63b0b5e094d" + "WESTUS2:20210213T020649Z:9e62ad06-d2d7-46b1-b216-cc1c8925fc33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2523,16 +2335,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4070060f-6f83-406c-a497-ae16c4d69f56" + "27ef77fb-8601-471c-8847-a4f53c0773c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2555,28 +2367,25 @@ "11973" ], "x-ms-request-id": [ - "4f565218-0d48-4a25-88ba-dc2b58096950" + "9925f5e6-93ab-4a33-a447-0954cb90bb95" ], "x-ms-correlation-request-id": [ - "4f565218-0d48-4a25-88ba-dc2b58096950" + "9925f5e6-93ab-4a33-a447-0954cb90bb95" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:4f565218-0d48-4a25-88ba-dc2b58096950" + "WESTUS2:20210213T020649Z:9925f5e6-93ab-4a33-a447-0954cb90bb95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:19 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2589,16 +2398,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ace9f1c-9257-4dc1-9ba4-c53e5b1c648a" + "44c31dcb-d8e8-4178-b5a9-034405d10606" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2621,28 +2430,25 @@ "11972" ], "x-ms-request-id": [ - "39ce1459-8dff-4618-bbd0-b6b3b2e058de" + "8bbf9329-55bf-47df-8f15-5aa386a22353" ], "x-ms-correlation-request-id": [ - "39ce1459-8dff-4618-bbd0-b6b3b2e058de" + "8bbf9329-55bf-47df-8f15-5aa386a22353" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:39ce1459-8dff-4618-bbd0-b6b3b2e058de" + "WESTUS2:20210213T020649Z:8bbf9329-55bf-47df-8f15-5aa386a22353" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2655,16 +2461,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f4cb088-9f1b-4711-8366-3095b0f8b993" + "01c3141b-9cfe-46ea-9937-3c7875fe4b1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2687,28 +2493,25 @@ "11971" ], "x-ms-request-id": [ - "f58ae528-b19c-4b18-a1f0-a663d4f6612d" + "39a4a54e-0938-48a0-93fc-8230dcfd3e97" ], "x-ms-correlation-request-id": [ - "f58ae528-b19c-4b18-a1f0-a663d4f6612d" + "39a4a54e-0938-48a0-93fc-8230dcfd3e97" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:f58ae528-b19c-4b18-a1f0-a663d4f6612d" + "WESTUS2:20210213T020649Z:39a4a54e-0938-48a0-93fc-8230dcfd3e97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:48 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2721,16 +2524,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfd0aae7-cafa-470a-8656-206513e794e0" + "73708991-4eed-411e-8921-d6e214995e2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2753,28 +2556,25 @@ "11970" ], "x-ms-request-id": [ - "5366232b-46e6-4b12-a053-21dd55fb9bf6" + "d6b3809b-5536-45df-8423-fc3c3e9d44a8" ], "x-ms-correlation-request-id": [ - "5366232b-46e6-4b12-a053-21dd55fb9bf6" + "d6b3809b-5536-45df-8423-fc3c3e9d44a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:5366232b-46e6-4b12-a053-21dd55fb9bf6" + "WESTUS2:20210213T020649Z:d6b3809b-5536-45df-8423-fc3c3e9d44a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2787,16 +2587,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9627f7b9-5b9f-496b-8e26-a9cc75a567c3" + "4d4ac13e-b04f-4efe-84d5-9f8264f8fe27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2819,28 +2619,25 @@ "11969" ], "x-ms-request-id": [ - "79ff83e7-a5a5-4bff-94cb-6aaf67915801" + "e8488f7f-ceb9-4ce9-9a2b-568b3755e50d" ], "x-ms-correlation-request-id": [ - "79ff83e7-a5a5-4bff-94cb-6aaf67915801" + "e8488f7f-ceb9-4ce9-9a2b-568b3755e50d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:79ff83e7-a5a5-4bff-94cb-6aaf67915801" + "WESTUS2:20210213T020649Z:e8488f7f-ceb9-4ce9-9a2b-568b3755e50d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2853,16 +2650,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00b1c880-bf78-4d7c-8700-3d67e4c24722" + "c113c48c-ae31-42c7-b6f4-18e6d7294336" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2885,28 +2682,25 @@ "11968" ], "x-ms-request-id": [ - "d4dd95ab-d891-4b20-b080-715477e57d37" + "48ee7cdc-5e12-44f9-a3b0-f0eb02a5995f" ], "x-ms-correlation-request-id": [ - "d4dd95ab-d891-4b20-b080-715477e57d37" + "48ee7cdc-5e12-44f9-a3b0-f0eb02a5995f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:d4dd95ab-d891-4b20-b080-715477e57d37" + "WESTUS2:20210213T020650Z:48ee7cdc-5e12-44f9-a3b0-f0eb02a5995f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2919,16 +2713,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77bd3b4c-a5c9-4786-b97a-f54deb79b0a6" + "3c2f7273-cd25-4b81-909a-d844f10c5537" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -2951,28 +2745,25 @@ "11967" ], "x-ms-request-id": [ - "6bc77958-2d66-4fac-854d-8dbaacce785c" + "d4435d4e-bd59-4f09-a81f-be4bdeb711a4" ], "x-ms-correlation-request-id": [ - "6bc77958-2d66-4fac-854d-8dbaacce785c" + "d4435d4e-bd59-4f09-a81f-be4bdeb711a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:6bc77958-2d66-4fac-854d-8dbaacce785c" + "WESTUS2:20210213T020650Z:d4435d4e-bd59-4f09-a81f-be4bdeb711a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -2985,16 +2776,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae480e74-99f9-45dd-a609-bcdedf9155a3" + "855cbad2-4dd7-455a-81b6-4eaa2aebef6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3017,28 +2808,25 @@ "11966" ], "x-ms-request-id": [ - "63142c59-c2a7-4f65-b5c5-3d6f7b83af3b" + "4432423b-af13-456f-a6ab-69e997aa6dbb" ], "x-ms-correlation-request-id": [ - "63142c59-c2a7-4f65-b5c5-3d6f7b83af3b" + "4432423b-af13-456f-a6ab-69e997aa6dbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204120Z:63142c59-c2a7-4f65-b5c5-3d6f7b83af3b" + "WESTUS2:20210213T020650Z:4432423b-af13-456f-a6ab-69e997aa6dbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:20 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3051,16 +2839,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3942b4e0-ba7b-45bc-93e4-19e4503451f1" + "8f58405a-3ff7-484f-bf89-677e068c88bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3083,28 +2871,25 @@ "11965" ], "x-ms-request-id": [ - "b7ed1d46-d94d-4a0e-9ac1-8bcc298ded55" + "5bdb5f4c-7c27-4333-9470-e201796ebf24" ], "x-ms-correlation-request-id": [ - "b7ed1d46-d94d-4a0e-9ac1-8bcc298ded55" + "5bdb5f4c-7c27-4333-9470-e201796ebf24" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:b7ed1d46-d94d-4a0e-9ac1-8bcc298ded55" + "WESTUS2:20210213T020650Z:5bdb5f4c-7c27-4333-9470-e201796ebf24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3117,16 +2902,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c82c8e88-7d34-44d2-b2f7-9c55ac5a8137" + "44b9374e-e550-4f4a-b382-13525eeb7ac1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3149,28 +2934,25 @@ "11964" ], "x-ms-request-id": [ - "86f2449d-69b5-475c-b543-acbdc64592fa" + "d69feeda-7317-462f-a795-e984341cbfcb" ], "x-ms-correlation-request-id": [ - "86f2449d-69b5-475c-b543-acbdc64592fa" + "d69feeda-7317-462f-a795-e984341cbfcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:86f2449d-69b5-475c-b543-acbdc64592fa" + "WESTUS2:20210213T020650Z:d69feeda-7317-462f-a795-e984341cbfcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:49 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3183,16 +2965,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6200d2b1-78f7-4bd0-a1b1-e0963eec488a" + "8e798ea4-4ab5-4645-b059-26250cdb9e89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3215,28 +2997,25 @@ "11963" ], "x-ms-request-id": [ - "66b931d8-45ff-4145-a9a0-0669d2281056" + "2a103649-d0ce-46ea-9765-a1e8792aa9f4" ], "x-ms-correlation-request-id": [ - "66b931d8-45ff-4145-a9a0-0669d2281056" + "2a103649-d0ce-46ea-9765-a1e8792aa9f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:66b931d8-45ff-4145-a9a0-0669d2281056" + "WESTUS2:20210213T020650Z:2a103649-d0ce-46ea-9765-a1e8792aa9f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3249,16 +3028,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46c9ff19-9165-4e80-8ba7-140f20c889ba" + "859520eb-e447-4d99-81fd-a18b8d3d9cb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3281,28 +3060,25 @@ "11962" ], "x-ms-request-id": [ - "e663f2ba-6205-4a3b-94c2-468e5af7bf08" + "94832f37-d5ef-4a6e-8efd-c6057cff4b27" ], "x-ms-correlation-request-id": [ - "e663f2ba-6205-4a3b-94c2-468e5af7bf08" + "94832f37-d5ef-4a6e-8efd-c6057cff4b27" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:e663f2ba-6205-4a3b-94c2-468e5af7bf08" + "WESTUS2:20210213T020651Z:94832f37-d5ef-4a6e-8efd-c6057cff4b27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3315,16 +3091,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10ca971f-21ba-4f95-bc05-c04390045f6b" + "36d41d55-a1d5-4289-a0d8-4c24d72fcc44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3347,28 +3123,25 @@ "11961" ], "x-ms-request-id": [ - "92bea74a-09e0-4c42-9ab8-a4d9ccfa9641" + "cfd7176b-b212-4478-8ba2-6b85763cc40a" ], "x-ms-correlation-request-id": [ - "92bea74a-09e0-4c42-9ab8-a4d9ccfa9641" + "cfd7176b-b212-4478-8ba2-6b85763cc40a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:92bea74a-09e0-4c42-9ab8-a4d9ccfa9641" + "WESTUS2:20210213T020651Z:cfd7176b-b212-4478-8ba2-6b85763cc40a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3381,16 +3154,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31b4fee8-7906-4e65-8e66-54472bc3ce4e" + "b02e45c7-7003-4e32-bfa0-2316f60ce8a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3413,28 +3186,25 @@ "11960" ], "x-ms-request-id": [ - "18c84d7d-462b-4b21-9c40-10334dc523ab" + "3f4d0840-fa5a-419a-9fa2-87ff00d8582f" ], "x-ms-correlation-request-id": [ - "18c84d7d-462b-4b21-9c40-10334dc523ab" + "3f4d0840-fa5a-419a-9fa2-87ff00d8582f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204121Z:18c84d7d-462b-4b21-9c40-10334dc523ab" + "WESTUS2:20210213T020651Z:3f4d0840-fa5a-419a-9fa2-87ff00d8582f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:21 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3447,16 +3217,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ae736d4-95ab-4f0d-a293-4d4807323502" + "6d44a05e-bc02-44ed-b3e7-bc1bc154dc35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3479,28 +3249,25 @@ "11959" ], "x-ms-request-id": [ - "da409c16-5a3a-490e-8629-b2fe37a76707" + "efff9e39-e3ee-4c8f-b9d8-781cc5e24a00" ], "x-ms-correlation-request-id": [ - "da409c16-5a3a-490e-8629-b2fe37a76707" + "efff9e39-e3ee-4c8f-b9d8-781cc5e24a00" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204122Z:da409c16-5a3a-490e-8629-b2fe37a76707" + "WESTUS2:20210213T020651Z:efff9e39-e3ee-4c8f-b9d8-781cc5e24a00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3513,16 +3280,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99301708-b5b6-4eda-adcb-3e1591c5dabe" + "990d7d18-5e58-4375-a1d5-2f431f36906e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3545,28 +3312,25 @@ "11958" ], "x-ms-request-id": [ - "b4866d9c-6e69-4153-88b6-a084d27408d0" + "3162b8e3-3cd9-45bf-b921-6dd0bfd2b9dd" ], "x-ms-correlation-request-id": [ - "b4866d9c-6e69-4153-88b6-a084d27408d0" + "3162b8e3-3cd9-45bf-b921-6dd0bfd2b9dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204122Z:b4866d9c-6e69-4153-88b6-a084d27408d0" + "WESTUS2:20210213T020651Z:3162b8e3-3cd9-45bf-b921-6dd0bfd2b9dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:50 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3579,16 +3343,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d73f9be3-2b75-4b7a-ac9c-fa0c707afdc2" + "669fc697-59ba-4d73-a284-70db6c4aa4f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3611,28 +3375,25 @@ "11957" ], "x-ms-request-id": [ - "f1ae3d1e-9ab3-4fd2-a2c5-66c5115ce2f4" + "2bcb1a32-c12d-414b-a14d-51f984ad4b65" ], "x-ms-correlation-request-id": [ - "f1ae3d1e-9ab3-4fd2-a2c5-66c5115ce2f4" + "2bcb1a32-c12d-414b-a14d-51f984ad4b65" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204122Z:f1ae3d1e-9ab3-4fd2-a2c5-66c5115ce2f4" + "WESTUS2:20210213T020651Z:2bcb1a32-c12d-414b-a14d-51f984ad4b65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3645,16 +3406,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fce67fd-d994-4eb9-aaa5-41ec5f10c333" + "ef689038-5aeb-40b8-9f7a-21fd99fb0aaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3677,28 +3438,25 @@ "11956" ], "x-ms-request-id": [ - "76b7545b-dc2e-4f4f-a5b2-ea304b0bacbd" + "73205ee7-ebae-4c47-a533-018008b7355d" ], "x-ms-correlation-request-id": [ - "76b7545b-dc2e-4f4f-a5b2-ea304b0bacbd" + "73205ee7-ebae-4c47-a533-018008b7355d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204122Z:76b7545b-dc2e-4f4f-a5b2-ea304b0bacbd" + "WESTUS2:20210213T020652Z:73205ee7-ebae-4c47-a533-018008b7355d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3711,16 +3469,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22e3ed41-d40c-4c0e-bf0b-f0f8a6392098" + "2f1aa23a-14e3-45e7-b2bf-ea2344341049" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3743,28 +3501,25 @@ "11955" ], "x-ms-request-id": [ - "9a934cc0-2743-4bd3-884b-eeb685cc9b32" + "e4e7ce2a-c45b-4a9b-bf33-012d3c22575c" ], "x-ms-correlation-request-id": [ - "9a934cc0-2743-4bd3-884b-eeb685cc9b32" + "e4e7ce2a-c45b-4a9b-bf33-012d3c22575c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204122Z:9a934cc0-2743-4bd3-884b-eeb685cc9b32" + "WESTUS2:20210213T020652Z:e4e7ce2a-c45b-4a9b-bf33-012d3c22575c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3777,16 +3532,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57b729b4-23f9-465c-9831-027d5bc84e4b" + "29fa63ca-b5e4-4c60-a4a9-c147c184477f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3809,28 +3564,25 @@ "11954" ], "x-ms-request-id": [ - "d00005ef-cb83-42f9-90ba-73f2dc7ac628" + "8b887ddc-c160-430d-9f57-f6392864a771" ], "x-ms-correlation-request-id": [ - "d00005ef-cb83-42f9-90ba-73f2dc7ac628" + "8b887ddc-c160-430d-9f57-f6392864a771" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:d00005ef-cb83-42f9-90ba-73f2dc7ac628" + "WESTUS2:20210213T020652Z:8b887ddc-c160-430d-9f57-f6392864a771" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:22 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3843,16 +3595,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6735706f-09f8-4f64-ae4b-a7034e800f8f" + "a2f9e858-5ad2-4f8c-a883-ee8203381977" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3875,28 +3627,25 @@ "11953" ], "x-ms-request-id": [ - "b8ad1a7e-6813-47c0-8ede-919d442cdc80" + "3fdfe4ca-1e99-403e-8244-d3c9cc377c66" ], "x-ms-correlation-request-id": [ - "b8ad1a7e-6813-47c0-8ede-919d442cdc80" + "3fdfe4ca-1e99-403e-8244-d3c9cc377c66" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:b8ad1a7e-6813-47c0-8ede-919d442cdc80" + "WESTUS2:20210213T020652Z:3fdfe4ca-1e99-403e-8244-d3c9cc377c66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3909,16 +3658,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e25f153c-9cc1-45dd-89d1-335f192b33c8" + "83eea843-551c-4918-a594-b4f6100e7234" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -3941,28 +3690,25 @@ "11952" ], "x-ms-request-id": [ - "47673bf0-c2b5-48f3-9273-4c93e8251ec8" + "2f693de9-0072-4fe0-90b8-2572540555d1" ], "x-ms-correlation-request-id": [ - "47673bf0-c2b5-48f3-9273-4c93e8251ec8" + "2f693de9-0072-4fe0-90b8-2572540555d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:47673bf0-c2b5-48f3-9273-4c93e8251ec8" + "WESTUS2:20210213T020652Z:2f693de9-0072-4fe0-90b8-2572540555d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -3975,16 +3721,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "622337df-0f30-44b1-a041-866f321be335" + "93a3f31a-eac1-438f-9c35-4913f9355864" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4007,28 +3753,25 @@ "11951" ], "x-ms-request-id": [ - "31eb632c-1e05-4822-925a-17ad242a400d" + "7a40e55f-923f-42d7-9490-ea6f9db2e4e9" ], "x-ms-correlation-request-id": [ - "31eb632c-1e05-4822-925a-17ad242a400d" + "7a40e55f-923f-42d7-9490-ea6f9db2e4e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:31eb632c-1e05-4822-925a-17ad242a400d" + "WESTUS2:20210213T020652Z:7a40e55f-923f-42d7-9490-ea6f9db2e4e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:51 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4041,16 +3784,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3572e891-d8b5-411e-a48f-0dd9d81785b9" + "ab2c98c5-126a-4cf8-8afd-05f9658a42ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4073,28 +3816,25 @@ "11950" ], "x-ms-request-id": [ - "bbc596af-c288-4800-9da5-0fa3c4c78395" + "c4e5e3e4-2692-4e44-bba5-4df740ffa40d" ], "x-ms-correlation-request-id": [ - "bbc596af-c288-4800-9da5-0fa3c4c78395" + "c4e5e3e4-2692-4e44-bba5-4df740ffa40d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:bbc596af-c288-4800-9da5-0fa3c4c78395" + "WESTUS2:20210213T020652Z:c4e5e3e4-2692-4e44-bba5-4df740ffa40d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:52 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4107,16 +3847,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8888e817-cb1c-48a6-853f-3fc2ba6a1175" + "671b48b8-86e3-4d63-926c-fd973521bb56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4139,28 +3879,25 @@ "11949" ], "x-ms-request-id": [ - "0c77610e-2dfb-405b-909c-27b40eaa7594" + "195d5747-593a-4882-b2d4-6c783f14072c" ], "x-ms-correlation-request-id": [ - "0c77610e-2dfb-405b-909c-27b40eaa7594" + "195d5747-593a-4882-b2d4-6c783f14072c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:0c77610e-2dfb-405b-909c-27b40eaa7594" + "WESTUS2:20210213T020653Z:195d5747-593a-4882-b2d4-6c783f14072c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:52 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4173,16 +3910,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ebb357d-d0f8-4666-aeb7-879671451858" + "478489bf-d3cf-42ae-9b86-dd9fc8e84698" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4205,28 +3942,25 @@ "11948" ], "x-ms-request-id": [ - "d78fa9e5-526a-4821-89c4-0ada7213c1e8" + "b8ecf8ce-53ed-45d4-a092-f881278b32b9" ], "x-ms-correlation-request-id": [ - "d78fa9e5-526a-4821-89c4-0ada7213c1e8" + "b8ecf8ce-53ed-45d4-a092-f881278b32b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:d78fa9e5-526a-4821-89c4-0ada7213c1e8" + "WESTUS2:20210213T020653Z:b8ecf8ce-53ed-45d4-a092-f881278b32b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:52 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4239,16 +3973,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d756833-2e1a-4ff0-a346-6af3985a256d" + "3c8ef259-fa5d-4fc1-affd-5c0fd1ff6ba0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4271,28 +4005,25 @@ "11947" ], "x-ms-request-id": [ - "6fd6e4d1-ad68-41be-8524-5587f0cd0e43" + "9764af61-b7ae-45e7-b016-aa12eb5d51d1" ], "x-ms-correlation-request-id": [ - "6fd6e4d1-ad68-41be-8524-5587f0cd0e43" + "9764af61-b7ae-45e7-b016-aa12eb5d51d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204123Z:6fd6e4d1-ad68-41be-8524-5587f0cd0e43" + "WESTUS2:20210213T020653Z:9764af61-b7ae-45e7-b016-aa12eb5d51d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:23 GMT" + "Sat, 13 Feb 2021 02:06:52 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4305,16 +4036,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b71b976-3212-471b-81bd-bfa7ecb27510" + "c2a2b61f-f3c2-4bd2-8946-c6671695ed1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4337,28 +4068,25 @@ "11946" ], "x-ms-request-id": [ - "fff3f073-bc0c-4149-a307-a8c4fdebd2cb" + "8546c45c-2e0c-4138-9a9b-39d9180ca9d1" ], "x-ms-correlation-request-id": [ - "fff3f073-bc0c-4149-a307-a8c4fdebd2cb" + "8546c45c-2e0c-4138-9a9b-39d9180ca9d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204124Z:fff3f073-bc0c-4149-a307-a8c4fdebd2cb" + "WESTUS2:20210213T020653Z:8546c45c-2e0c-4138-9a9b-39d9180ca9d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:24 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4371,16 +4099,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "560c8334-20bc-4ad6-a2e1-7d9b9eb7cdaf" + "c2b374dd-76c0-47d2-a9a6-3985410ff9d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4403,28 +4131,25 @@ "11945" ], "x-ms-request-id": [ - "839d9049-8702-4ebe-90c3-d686b1f1a1d1" + "6e3c1b80-6c00-4272-8d81-f667e7c42722" ], "x-ms-correlation-request-id": [ - "839d9049-8702-4ebe-90c3-d686b1f1a1d1" + "6e3c1b80-6c00-4272-8d81-f667e7c42722" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204124Z:839d9049-8702-4ebe-90c3-d686b1f1a1d1" + "WESTUS2:20210213T020654Z:6e3c1b80-6c00-4272-8d81-f667e7c42722" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:24 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4437,16 +4162,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02fc23e9-5652-4af3-96e9-341cdecd9f44" + "aba53587-5dc4-4aed-b685-21f950beddce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4469,28 +4194,25 @@ "11944" ], "x-ms-request-id": [ - "38981798-8139-408c-872e-d71646a0dcc0" + "2e79ed20-0433-4857-adfe-ae991ffb0716" ], "x-ms-correlation-request-id": [ - "38981798-8139-408c-872e-d71646a0dcc0" + "2e79ed20-0433-4857-adfe-ae991ffb0716" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204124Z:38981798-8139-408c-872e-d71646a0dcc0" + "WESTUS2:20210213T020654Z:2e79ed20-0433-4857-adfe-ae991ffb0716" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:24 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4503,16 +4225,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51f82997-e387-45bd-866a-b8c0eedee411" + "85adc63b-8e3b-4f6d-9e23-2a3ebe622db2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4535,28 +4257,25 @@ "11943" ], "x-ms-request-id": [ - "e068bd12-6fbe-4479-a90e-5b3cf3d270e8" + "759131aa-9865-435f-bd30-3e368f086a96" ], "x-ms-correlation-request-id": [ - "e068bd12-6fbe-4479-a90e-5b3cf3d270e8" + "759131aa-9865-435f-bd30-3e368f086a96" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204124Z:e068bd12-6fbe-4479-a90e-5b3cf3d270e8" + "WESTUS2:20210213T020654Z:759131aa-9865-435f-bd30-3e368f086a96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:24 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4569,16 +4288,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261d7506-ba4d-4adc-9cc6-66b6b0cb677d" + "38b7a8b4-b7a1-47a4-9c68-ae0aeca1e6c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4601,28 +4320,25 @@ "11942" ], "x-ms-request-id": [ - "fab645e6-2251-4dc7-952a-5eb5806dfacb" + "b3713af0-c805-4ccd-8932-4301d0353973" ], "x-ms-correlation-request-id": [ - "fab645e6-2251-4dc7-952a-5eb5806dfacb" + "b3713af0-c805-4ccd-8932-4301d0353973" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204124Z:fab645e6-2251-4dc7-952a-5eb5806dfacb" + "WESTUS2:20210213T020654Z:b3713af0-c805-4ccd-8932-4301d0353973" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:24 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4635,16 +4351,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e7c26e1-5b21-49c7-8a2d-118865435d40" + "a06d1af2-5be0-4e17-a3c9-acb40424948f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4667,28 +4383,25 @@ "11941" ], "x-ms-request-id": [ - "5fbb2312-2025-4ddc-aad3-efdc35e5af93" + "3b5c3910-974c-4ff2-8b41-23308030be6e" ], "x-ms-correlation-request-id": [ - "5fbb2312-2025-4ddc-aad3-efdc35e5af93" + "3b5c3910-974c-4ff2-8b41-23308030be6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:5fbb2312-2025-4ddc-aad3-efdc35e5af93" + "WESTUS2:20210213T020654Z:3b5c3910-974c-4ff2-8b41-23308030be6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4701,16 +4414,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f93215-c642-409a-ac20-79c3e2d764cd" + "382a0fbb-c6c9-4a89-bf2e-a809de68bd2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4733,28 +4446,25 @@ "11940" ], "x-ms-request-id": [ - "4e6870a3-c52f-4de1-b923-55b753783360" + "2cefb8f1-563c-4525-b7f8-54aefc2f2671" ], "x-ms-correlation-request-id": [ - "4e6870a3-c52f-4de1-b923-55b753783360" + "2cefb8f1-563c-4525-b7f8-54aefc2f2671" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:4e6870a3-c52f-4de1-b923-55b753783360" + "WESTUS2:20210213T020654Z:2cefb8f1-563c-4525-b7f8-54aefc2f2671" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:53 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4767,16 +4477,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03176f1e-35a9-4085-b15f-4c2cffff3035" + "33e86a95-bda8-4e73-8fac-8a97c3bb4257" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4799,28 +4509,25 @@ "11939" ], "x-ms-request-id": [ - "2ed74b5f-8a42-47a4-814c-0603e34672b7" + "776f8a76-b79b-4e2e-b5f6-17b6f1bc419e" ], "x-ms-correlation-request-id": [ - "2ed74b5f-8a42-47a4-814c-0603e34672b7" + "776f8a76-b79b-4e2e-b5f6-17b6f1bc419e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:2ed74b5f-8a42-47a4-814c-0603e34672b7" + "WESTUS2:20210213T020655Z:776f8a76-b79b-4e2e-b5f6-17b6f1bc419e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4833,16 +4540,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c0d9e11-2424-4094-9615-3f6962b01e17" + "cb7a883f-4827-49ce-be4e-2c8874d8f2c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4865,28 +4572,25 @@ "11938" ], "x-ms-request-id": [ - "15fe46cd-6e1c-4298-89e8-0c34bce9417a" + "5b7970cb-dc91-4315-8b3f-578868c72f9b" ], "x-ms-correlation-request-id": [ - "15fe46cd-6e1c-4298-89e8-0c34bce9417a" + "5b7970cb-dc91-4315-8b3f-578868c72f9b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:15fe46cd-6e1c-4298-89e8-0c34bce9417a" + "WESTUS2:20210213T020655Z:5b7970cb-dc91-4315-8b3f-578868c72f9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4899,16 +4603,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41d2ce37-30e2-4fa7-a70f-8537f1627a59" + "e10ac8e6-2d97-4583-8ba4-56ff6fdf6bc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4931,28 +4635,25 @@ "11937" ], "x-ms-request-id": [ - "65967464-3e32-4d33-9bef-6219d17cce9a" + "85f8dbdb-c5d8-474d-8e77-8ab170f9fcc7" ], "x-ms-correlation-request-id": [ - "65967464-3e32-4d33-9bef-6219d17cce9a" + "85f8dbdb-c5d8-474d-8e77-8ab170f9fcc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:65967464-3e32-4d33-9bef-6219d17cce9a" + "WESTUS2:20210213T020655Z:85f8dbdb-c5d8-474d-8e77-8ab170f9fcc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -4965,16 +4666,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e614f5a-9117-4586-b276-e74da3f2a2b4" + "dff19f8b-1014-441e-a5bf-93b70c6a46dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -4997,28 +4698,25 @@ "11936" ], "x-ms-request-id": [ - "c4d7d3e3-c456-4e41-94c1-77888cf7a46c" + "a1309670-7142-4839-b391-e7ce9c4b4214" ], "x-ms-correlation-request-id": [ - "c4d7d3e3-c456-4e41-94c1-77888cf7a46c" + "a1309670-7142-4839-b391-e7ce9c4b4214" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204125Z:c4d7d3e3-c456-4e41-94c1-77888cf7a46c" + "WESTUS2:20210213T020655Z:a1309670-7142-4839-b391-e7ce9c4b4214" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:25 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5031,16 +4729,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "125668d8-46d7-447a-bb8f-cead71a8ea73" + "1a52f0c4-d885-4cc7-8773-f39bde811caf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5063,28 +4761,25 @@ "11935" ], "x-ms-request-id": [ - "5439dbc6-aeb2-4cdb-96da-74c286dc7047" + "d589f49b-ebc0-46a0-8073-15bef5f81e58" ], "x-ms-correlation-request-id": [ - "5439dbc6-aeb2-4cdb-96da-74c286dc7047" + "d589f49b-ebc0-46a0-8073-15bef5f81e58" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:5439dbc6-aeb2-4cdb-96da-74c286dc7047" + "WESTUS2:20210213T020655Z:d589f49b-ebc0-46a0-8073-15bef5f81e58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5097,16 +4792,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0abafc91-1da9-47c0-8a20-92339e3f48fa" + "c6d9f3ca-0040-4059-b6ce-8c9a47c22a8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5129,28 +4824,25 @@ "11934" ], "x-ms-request-id": [ - "ac77f485-826f-4364-9ace-7ddd5a366156" + "f534e9b7-b43b-418c-8b56-47f6b8d49d64" ], "x-ms-correlation-request-id": [ - "ac77f485-826f-4364-9ace-7ddd5a366156" + "f534e9b7-b43b-418c-8b56-47f6b8d49d64" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:ac77f485-826f-4364-9ace-7ddd5a366156" + "WESTUS2:20210213T020655Z:f534e9b7-b43b-418c-8b56-47f6b8d49d64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:54 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5163,16 +4855,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b15e4faf-5365-4dad-ba92-12a1237c995e" + "c199c067-f11d-4bf5-b557-95fd093d0e35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5195,28 +4887,25 @@ "11933" ], "x-ms-request-id": [ - "c751dd3f-601b-48d2-8e8a-d27846d0bb68" + "0413fb9d-0fab-4ef9-8294-6238ab5c0334" ], "x-ms-correlation-request-id": [ - "c751dd3f-601b-48d2-8e8a-d27846d0bb68" + "0413fb9d-0fab-4ef9-8294-6238ab5c0334" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:c751dd3f-601b-48d2-8e8a-d27846d0bb68" + "WESTUS2:20210213T020656Z:0413fb9d-0fab-4ef9-8294-6238ab5c0334" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5229,16 +4918,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c076f52-df43-422f-9770-39033655229a" + "2d09723c-1619-4ba2-b3cb-d747d23d4cb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5261,28 +4950,25 @@ "11932" ], "x-ms-request-id": [ - "6d343ff5-20f4-441a-b147-811bd72e0c7a" + "88b3206e-ae7c-438a-9924-6944efcf6565" ], "x-ms-correlation-request-id": [ - "6d343ff5-20f4-441a-b147-811bd72e0c7a" + "88b3206e-ae7c-438a-9924-6944efcf6565" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:6d343ff5-20f4-441a-b147-811bd72e0c7a" + "WESTUS2:20210213T020656Z:88b3206e-ae7c-438a-9924-6944efcf6565" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5295,16 +4981,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8dbf3b6-acb5-449a-9eab-489f37eb2e17" + "d4ac2e6c-3fa6-48a8-8208-c2075e60d5f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5327,28 +5013,25 @@ "11931" ], "x-ms-request-id": [ - "4b519525-d731-4298-a787-9fe8f6d5631f" + "d18468f2-f04e-4cbe-82dd-fcdfaa4d2b05" ], "x-ms-correlation-request-id": [ - "4b519525-d731-4298-a787-9fe8f6d5631f" + "d18468f2-f04e-4cbe-82dd-fcdfaa4d2b05" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:4b519525-d731-4298-a787-9fe8f6d5631f" + "WESTUS2:20210213T020656Z:d18468f2-f04e-4cbe-82dd-fcdfaa4d2b05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5361,16 +5044,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be15990e-3e41-46af-bffd-d9cdccc1bfbe" + "61efbba9-d381-4682-839a-7c060b4f1759" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5393,28 +5076,25 @@ "11930" ], "x-ms-request-id": [ - "ffaa5e36-da60-4cc6-9b0c-3c4253836661" + "e25a2e02-525b-4664-9448-c708aac08e52" ], "x-ms-correlation-request-id": [ - "ffaa5e36-da60-4cc6-9b0c-3c4253836661" + "e25a2e02-525b-4664-9448-c708aac08e52" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:ffaa5e36-da60-4cc6-9b0c-3c4253836661" + "WESTUS2:20210213T020656Z:e25a2e02-525b-4664-9448-c708aac08e52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5427,16 +5107,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebaf6fd4-44d9-4cba-87cd-a6046b4b9d45" + "f8fd3148-44be-4d60-a43f-aa9c09fdf251" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5459,28 +5139,25 @@ "11929" ], "x-ms-request-id": [ - "fbf37787-dc14-4cc9-a118-e44a21f3ef37" + "c2c0081b-9bbc-4911-a7e7-38442aea8ab7" ], "x-ms-correlation-request-id": [ - "fbf37787-dc14-4cc9-a118-e44a21f3ef37" + "c2c0081b-9bbc-4911-a7e7-38442aea8ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204126Z:fbf37787-dc14-4cc9-a118-e44a21f3ef37" + "WESTUS2:20210213T020656Z:c2c0081b-9bbc-4911-a7e7-38442aea8ab7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5493,16 +5170,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a852a27-46a6-4b69-ab1c-1aa57ae56d9f" + "e802d249-391b-4bce-bae9-3bacd6cbbad5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5525,28 +5202,25 @@ "11928" ], "x-ms-request-id": [ - "7d419a3f-5e59-41a3-9b30-c6213502cef7" + "b17280a6-e02b-451e-b3ee-7fee3d1e2340" ], "x-ms-correlation-request-id": [ - "7d419a3f-5e59-41a3-9b30-c6213502cef7" + "b17280a6-e02b-451e-b3ee-7fee3d1e2340" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:7d419a3f-5e59-41a3-9b30-c6213502cef7" + "WESTUS2:20210213T020656Z:b17280a6-e02b-451e-b3ee-7fee3d1e2340" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:26 GMT" + "Sat, 13 Feb 2021 02:06:56 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5559,16 +5233,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94df2aee-975b-4af0-b88a-7fb429b14b88" + "47a56147-be73-41a3-8430-f8b6ba5ba4d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5591,28 +5265,25 @@ "11927" ], "x-ms-request-id": [ - "c404e8fb-87e6-4117-9297-da09f12ebb77" + "b5b4cb40-a1d5-48da-bf2b-83209c1b65d8" ], "x-ms-correlation-request-id": [ - "c404e8fb-87e6-4117-9297-da09f12ebb77" + "b5b4cb40-a1d5-48da-bf2b-83209c1b65d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:c404e8fb-87e6-4117-9297-da09f12ebb77" + "WESTUS2:20210213T020657Z:b5b4cb40-a1d5-48da-bf2b-83209c1b65d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5625,16 +5296,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4148156-0656-4545-bd15-258e64875ca1" + "b97179bc-3f13-4b04-9b70-3d6808574557" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5657,28 +5328,25 @@ "11926" ], "x-ms-request-id": [ - "fbd454dc-3006-4bf1-b6e5-ac81a612c9b6" + "7967de50-bd27-41ea-bde1-c34dbaaa4cb6" ], "x-ms-correlation-request-id": [ - "fbd454dc-3006-4bf1-b6e5-ac81a612c9b6" + "7967de50-bd27-41ea-bde1-c34dbaaa4cb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:fbd454dc-3006-4bf1-b6e5-ac81a612c9b6" + "WESTUS2:20210213T020657Z:7967de50-bd27-41ea-bde1-c34dbaaa4cb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5691,16 +5359,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e66c6e-81a2-4d91-9e86-18f0817f117b" + "719c581f-be7f-4d6a-984e-098382e3c0d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5723,28 +5391,25 @@ "11925" ], "x-ms-request-id": [ - "c965d423-2f27-45e9-9740-6396b380603a" + "588f9747-1957-419f-be4d-1494b7c7078e" ], "x-ms-correlation-request-id": [ - "c965d423-2f27-45e9-9740-6396b380603a" + "588f9747-1957-419f-be4d-1494b7c7078e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:c965d423-2f27-45e9-9740-6396b380603a" + "WESTUS2:20210213T020657Z:588f9747-1957-419f-be4d-1494b7c7078e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5757,16 +5422,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5858e7a-ab3a-4178-a1b4-88a13dcc9b89" + "2bee29cb-7f9e-4623-ac60-4f2c64b74197" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5789,28 +5454,25 @@ "11924" ], "x-ms-request-id": [ - "34475e82-c7e6-4b56-8e69-44f96ef7ff29" + "1bb4d2b6-0b9d-4868-9705-2346c0763644" ], "x-ms-correlation-request-id": [ - "34475e82-c7e6-4b56-8e69-44f96ef7ff29" + "1bb4d2b6-0b9d-4868-9705-2346c0763644" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:34475e82-c7e6-4b56-8e69-44f96ef7ff29" + "WESTUS2:20210213T020657Z:1bb4d2b6-0b9d-4868-9705-2346c0763644" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5823,16 +5485,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51eaa2d5-4ac8-40dd-b4ab-33eba4d1fa35" + "8c0643bc-5e3b-45a3-b3b7-d785775b8295" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5855,28 +5517,25 @@ "11923" ], "x-ms-request-id": [ - "afdb05ff-c954-4b3f-8d65-49b0cb4926df" + "9e62c526-05a5-4ac9-87da-6a7b54ae320d" ], "x-ms-correlation-request-id": [ - "afdb05ff-c954-4b3f-8d65-49b0cb4926df" + "9e62c526-05a5-4ac9-87da-6a7b54ae320d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:afdb05ff-c954-4b3f-8d65-49b0cb4926df" + "WESTUS2:20210213T020657Z:9e62c526-05a5-4ac9-87da-6a7b54ae320d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5889,16 +5548,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4d62923-4fb6-40dd-a78b-101d739d1767" + "e09378af-c151-4426-b8fd-6704fefe6c2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5921,28 +5580,25 @@ "11922" ], "x-ms-request-id": [ - "5dba7000-a351-4547-af24-db69d0bb5a39" + "bc41041d-5cab-4fb4-a6f0-224095f88cd7" ], "x-ms-correlation-request-id": [ - "5dba7000-a351-4547-af24-db69d0bb5a39" + "bc41041d-5cab-4fb4-a6f0-224095f88cd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204127Z:5dba7000-a351-4547-af24-db69d0bb5a39" + "WESTUS2:20210213T020657Z:bc41041d-5cab-4fb4-a6f0-224095f88cd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -5955,16 +5611,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31a00f71-eb5d-4a3a-a0b1-3cb10ce5b0f8" + "596850d1-32fc-4835-a0c0-0021e89f0780" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -5987,28 +5643,25 @@ "11921" ], "x-ms-request-id": [ - "c2b7fb36-ab7f-4d4b-a7dc-738ed13188c0" + "7093db9f-15e7-4634-9da8-52469f29be68" ], "x-ms-correlation-request-id": [ - "c2b7fb36-ab7f-4d4b-a7dc-738ed13188c0" + "7093db9f-15e7-4634-9da8-52469f29be68" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204128Z:c2b7fb36-ab7f-4d4b-a7dc-738ed13188c0" + "WESTUS2:20210213T020658Z:7093db9f-15e7-4634-9da8-52469f29be68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:27 GMT" + "Sat, 13 Feb 2021 02:06:57 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6021,16 +5674,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8351be9d-78f9-43c4-8dd6-082ea5ff6647" + "09dac495-0d37-41e8-82e2-a2dbe00986b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6053,28 +5706,25 @@ "11920" ], "x-ms-request-id": [ - "1fba3a49-8919-4634-97e0-f084da2ebc33" + "f5a409eb-0821-4689-b2da-7b5ede00f469" ], "x-ms-correlation-request-id": [ - "1fba3a49-8919-4634-97e0-f084da2ebc33" + "f5a409eb-0821-4689-b2da-7b5ede00f469" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204128Z:1fba3a49-8919-4634-97e0-f084da2ebc33" + "WESTUS2:20210213T020658Z:f5a409eb-0821-4689-b2da-7b5ede00f469" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:28 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6087,16 +5737,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4721dc72-cb14-4c7b-968e-aad37ec3e182" + "22f09150-cf26-4c23-80a0-8e5e0c606357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6119,28 +5769,25 @@ "11919" ], "x-ms-request-id": [ - "78cf9caf-dc34-4b6c-b523-48359dc84ab5" + "80103d5d-43c4-4d3f-b6df-b43417af0219" ], "x-ms-correlation-request-id": [ - "78cf9caf-dc34-4b6c-b523-48359dc84ab5" + "80103d5d-43c4-4d3f-b6df-b43417af0219" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204128Z:78cf9caf-dc34-4b6c-b523-48359dc84ab5" + "WESTUS2:20210213T020658Z:80103d5d-43c4-4d3f-b6df-b43417af0219" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:28 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6153,16 +5800,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e60f26b9-c136-4bd5-a841-89b37e54389e" + "fea76c48-3b59-4c2a-beaa-f8c55555743e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6185,28 +5832,25 @@ "11918" ], "x-ms-request-id": [ - "ccc69f41-d865-4714-9440-fc19ed816172" + "58628b21-6bcd-4b0d-9500-b192504a90ca" ], "x-ms-correlation-request-id": [ - "ccc69f41-d865-4714-9440-fc19ed816172" + "58628b21-6bcd-4b0d-9500-b192504a90ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204128Z:ccc69f41-d865-4714-9440-fc19ed816172" + "WESTUS2:20210213T020658Z:58628b21-6bcd-4b0d-9500-b192504a90ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:28 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6219,16 +5863,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "246435d0-6a50-4bcb-a151-8782a970c344" + "add622a5-8438-42c7-bd0a-213a5a5cb5b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6251,28 +5895,25 @@ "11917" ], "x-ms-request-id": [ - "a82811d9-bcd1-4a6c-97b4-d956866c1981" + "2a03040e-a2bd-4bb7-8a26-48fdb40a24b9" ], "x-ms-correlation-request-id": [ - "a82811d9-bcd1-4a6c-97b4-d956866c1981" + "2a03040e-a2bd-4bb7-8a26-48fdb40a24b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204128Z:a82811d9-bcd1-4a6c-97b4-d956866c1981" + "WESTUS2:20210213T020658Z:2a03040e-a2bd-4bb7-8a26-48fdb40a24b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:28 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6285,16 +5926,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c914050-bfe5-4ccb-b31d-331a37c0b271" + "f6f66932-0a4f-42b1-87f4-d83f7421f9e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6317,28 +5958,25 @@ "11916" ], "x-ms-request-id": [ - "fd0e9491-8faa-4a96-af6b-3ca55774fe5d" + "883da7f2-c48a-422e-ae69-6e8a74092d4e" ], "x-ms-correlation-request-id": [ - "fd0e9491-8faa-4a96-af6b-3ca55774fe5d" + "883da7f2-c48a-422e-ae69-6e8a74092d4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:fd0e9491-8faa-4a96-af6b-3ca55774fe5d" + "WESTUS2:20210213T020658Z:883da7f2-c48a-422e-ae69-6e8a74092d4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:28 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6351,16 +5989,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "975b2372-d767-419d-b387-d28ead9e7c28" + "af39af1f-a186-4d50-a6e5-a0163d936acf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6383,28 +6021,25 @@ "11915" ], "x-ms-request-id": [ - "6b1ef67d-e2bb-4352-b701-c36dc198c9f2" + "99879847-8bbe-4e21-8fd8-c4783b2d6f5a" ], "x-ms-correlation-request-id": [ - "6b1ef67d-e2bb-4352-b701-c36dc198c9f2" + "99879847-8bbe-4e21-8fd8-c4783b2d6f5a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:6b1ef67d-e2bb-4352-b701-c36dc198c9f2" + "WESTUS2:20210213T020659Z:99879847-8bbe-4e21-8fd8-c4783b2d6f5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:58 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6417,16 +6052,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ba04e36-9e7b-442a-a143-eea4db196d7a" + "63d6ec9f-951b-490b-b437-09d966191bfb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6449,28 +6084,25 @@ "11914" ], "x-ms-request-id": [ - "0a2b096e-f958-4f91-b530-eaaf6982919c" + "9f004659-d6ec-4303-b995-ebd44f7141ec" ], "x-ms-correlation-request-id": [ - "0a2b096e-f958-4f91-b530-eaaf6982919c" + "9f004659-d6ec-4303-b995-ebd44f7141ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:0a2b096e-f958-4f91-b530-eaaf6982919c" + "WESTUS2:20210213T020659Z:9f004659-d6ec-4303-b995-ebd44f7141ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6483,16 +6115,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f9a24dd-1d43-4fa0-9f54-d28e46277509" + "6a1a1be2-5dc7-4357-9595-391742250bc0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6515,28 +6147,25 @@ "11913" ], "x-ms-request-id": [ - "9cb74621-6ed3-49cc-9a7a-1f5b3d7bda50" + "5fd7b910-77c9-430e-8982-acac51dbd23c" ], "x-ms-correlation-request-id": [ - "9cb74621-6ed3-49cc-9a7a-1f5b3d7bda50" + "5fd7b910-77c9-430e-8982-acac51dbd23c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:9cb74621-6ed3-49cc-9a7a-1f5b3d7bda50" + "WESTUS2:20210213T020659Z:5fd7b910-77c9-430e-8982-acac51dbd23c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6549,16 +6178,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "923e5b32-866a-4448-8210-5d364ef11970" + "53c4fe22-b995-41ee-95bf-5ad1b69d7423" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6581,28 +6210,25 @@ "11912" ], "x-ms-request-id": [ - "e7142dda-5fef-4b9d-89bb-11ce5c946c82" + "7fe1a715-3e85-44bd-a667-c415805be60b" ], "x-ms-correlation-request-id": [ - "e7142dda-5fef-4b9d-89bb-11ce5c946c82" + "7fe1a715-3e85-44bd-a667-c415805be60b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:e7142dda-5fef-4b9d-89bb-11ce5c946c82" + "WESTUS2:20210213T020659Z:7fe1a715-3e85-44bd-a667-c415805be60b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6615,16 +6241,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4125a1a4-28da-4380-822a-11af25b0f859" + "bbb83c1c-393f-4e26-ad41-6e594dd4da58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6647,28 +6273,25 @@ "11911" ], "x-ms-request-id": [ - "68d5739c-79bb-4b47-a39c-a3ffd9791f49" + "9406d6f9-a87b-4a1a-9d5f-2e9f7e9072dc" ], "x-ms-correlation-request-id": [ - "68d5739c-79bb-4b47-a39c-a3ffd9791f49" + "9406d6f9-a87b-4a1a-9d5f-2e9f7e9072dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:68d5739c-79bb-4b47-a39c-a3ffd9791f49" + "WESTUS2:20210213T020659Z:9406d6f9-a87b-4a1a-9d5f-2e9f7e9072dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6681,16 +6304,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b2fb1f3-35b9-47ce-a5cd-c65e64c63017" + "0bb1e1c0-abdb-44e6-8703-9c9fe98b40fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6713,28 +6336,25 @@ "11910" ], "x-ms-request-id": [ - "ea126438-83ed-4cf9-8dd1-2d5cff444447" + "94ced71e-b3af-4a37-8079-6c91286a7548" ], "x-ms-correlation-request-id": [ - "ea126438-83ed-4cf9-8dd1-2d5cff444447" + "94ced71e-b3af-4a37-8079-6c91286a7548" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:ea126438-83ed-4cf9-8dd1-2d5cff444447" + "WESTUS2:20210213T020659Z:94ced71e-b3af-4a37-8079-6c91286a7548" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6747,16 +6367,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47b509a2-3a73-4ed8-93b9-c118d49f1f8f" + "5a148c18-3e8e-4c26-b10c-86033fb0280b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6779,28 +6399,25 @@ "11909" ], "x-ms-request-id": [ - "3808b47b-32b4-435c-a710-a5045d24df08" + "d3e5da9b-361b-4329-84e3-4483cd472741" ], "x-ms-correlation-request-id": [ - "3808b47b-32b4-435c-a710-a5045d24df08" + "d3e5da9b-361b-4329-84e3-4483cd472741" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204129Z:3808b47b-32b4-435c-a710-a5045d24df08" + "WESTUS2:20210213T020659Z:d3e5da9b-361b-4329-84e3-4483cd472741" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:29 GMT" + "Sat, 13 Feb 2021 02:06:59 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6813,16 +6430,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fefb9fa2-c38b-4366-bca0-ee1148abf305" + "4e0e362b-ab66-4c49-85eb-87c2320fbfeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6845,28 +6462,25 @@ "11908" ], "x-ms-request-id": [ - "de0dbedd-ea75-461e-969c-f7b5450a8fab" + "cb50cd67-bf29-4fa8-b9c8-0fddfd6dc35b" ], "x-ms-correlation-request-id": [ - "de0dbedd-ea75-461e-969c-f7b5450a8fab" + "cb50cd67-bf29-4fa8-b9c8-0fddfd6dc35b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:de0dbedd-ea75-461e-969c-f7b5450a8fab" + "WESTUS2:20210213T020700Z:cb50cd67-bf29-4fa8-b9c8-0fddfd6dc35b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6879,16 +6493,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c3aff2f-c84b-4616-b246-968d3e78f2fe" + "a6db7020-2aad-4f89-b73a-076ffb0c0549" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6911,28 +6525,25 @@ "11907" ], "x-ms-request-id": [ - "c4cf52ad-580b-42a4-bfc5-8dfa20c1af74" + "fb08fdf4-80e9-4345-b8cd-da3f406787e2" ], "x-ms-correlation-request-id": [ - "c4cf52ad-580b-42a4-bfc5-8dfa20c1af74" + "fb08fdf4-80e9-4345-b8cd-da3f406787e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:c4cf52ad-580b-42a4-bfc5-8dfa20c1af74" + "WESTUS2:20210213T020700Z:fb08fdf4-80e9-4345-b8cd-da3f406787e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -6945,16 +6556,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22c53537-9b2d-4e1c-89c0-0d9980b25bc2" + "8b7b1fce-b7f7-4020-88b1-4a05cfdde971" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -6977,28 +6588,25 @@ "11906" ], "x-ms-request-id": [ - "c1cd1c21-74cc-4b84-92eb-364993b3cbb6" + "4d5d85c0-7941-4598-9f3c-b7eb06ab6def" ], "x-ms-correlation-request-id": [ - "c1cd1c21-74cc-4b84-92eb-364993b3cbb6" + "4d5d85c0-7941-4598-9f3c-b7eb06ab6def" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:c1cd1c21-74cc-4b84-92eb-364993b3cbb6" + "WESTUS2:20210213T020700Z:4d5d85c0-7941-4598-9f3c-b7eb06ab6def" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7011,16 +6619,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "143e2bc3-52f3-4dfb-8646-fbd92b0a5725" + "3bbe74fd-56b5-472b-b793-2e44a7dd3fa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7043,28 +6651,25 @@ "11905" ], "x-ms-request-id": [ - "e98ad2fa-500c-48b1-bb3d-af26f9b488fd" + "1d1cf92e-925b-44f6-8898-da78ca7bda99" ], "x-ms-correlation-request-id": [ - "e98ad2fa-500c-48b1-bb3d-af26f9b488fd" + "1d1cf92e-925b-44f6-8898-da78ca7bda99" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:e98ad2fa-500c-48b1-bb3d-af26f9b488fd" + "WESTUS2:20210213T020700Z:1d1cf92e-925b-44f6-8898-da78ca7bda99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7077,16 +6682,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08618718-6791-465e-ad5a-d5cfc4a25ab4" + "4d69b019-437d-4b0f-bc32-fbe77a9396e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7109,28 +6714,25 @@ "11904" ], "x-ms-request-id": [ - "3369c944-b203-4f28-ad5c-a72daf49e2df" + "cffee162-09de-44e1-b0f3-e6e3d5378b6b" ], "x-ms-correlation-request-id": [ - "3369c944-b203-4f28-ad5c-a72daf49e2df" + "cffee162-09de-44e1-b0f3-e6e3d5378b6b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:3369c944-b203-4f28-ad5c-a72daf49e2df" + "WESTUS2:20210213T020700Z:cffee162-09de-44e1-b0f3-e6e3d5378b6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7143,16 +6745,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d31bcfa8-7404-45b1-9021-2bede4781908" + "a50487c7-eb7e-4e2f-ac79-6b4b96c67468" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7175,28 +6777,25 @@ "11903" ], "x-ms-request-id": [ - "568ec0fa-958a-4d82-b8c2-a9ed14bcd24d" + "6023908c-1a5e-4d48-b30e-198e8e1fc985" ], "x-ms-correlation-request-id": [ - "568ec0fa-958a-4d82-b8c2-a9ed14bcd24d" + "6023908c-1a5e-4d48-b30e-198e8e1fc985" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:568ec0fa-958a-4d82-b8c2-a9ed14bcd24d" + "WESTUS2:20210213T020700Z:6023908c-1a5e-4d48-b30e-198e8e1fc985" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7209,16 +6808,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1e1c996-8e0a-4b8e-8b06-7783f001c6fc" + "1b395272-462a-4cd8-ad11-bb5c57f9e8d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7241,28 +6840,25 @@ "11902" ], "x-ms-request-id": [ - "d0635fce-baee-4e4f-ba65-d827be1d3295" + "77bfda49-8e0c-4320-89bb-e5b442b405d9" ], "x-ms-correlation-request-id": [ - "d0635fce-baee-4e4f-ba65-d827be1d3295" + "77bfda49-8e0c-4320-89bb-e5b442b405d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204130Z:d0635fce-baee-4e4f-ba65-d827be1d3295" + "WESTUS2:20210213T020701Z:77bfda49-8e0c-4320-89bb-e5b442b405d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:30 GMT" + "Sat, 13 Feb 2021 02:07:00 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7275,16 +6871,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7222713-215c-43cc-bcf4-80fefc95c1ad" + "cccc131b-42ea-4503-8cd6-8393fb5e7330" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7307,28 +6903,25 @@ "11901" ], "x-ms-request-id": [ - "f5841c00-a776-429a-8266-57abea5cf730" + "7b47fc98-c5b8-4b92-9fea-173f719ce16c" ], "x-ms-correlation-request-id": [ - "f5841c00-a776-429a-8266-57abea5cf730" + "7b47fc98-c5b8-4b92-9fea-173f719ce16c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:f5841c00-a776-429a-8266-57abea5cf730" + "WESTUS2:20210213T020701Z:7b47fc98-c5b8-4b92-9fea-173f719ce16c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:01 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7341,16 +6934,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e0e7bdb-a2ca-4fc2-be86-69c07ea8b51a" + "f4001268-63ba-4c90-9f4b-3056ec08eb6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7373,28 +6966,25 @@ "11900" ], "x-ms-request-id": [ - "3f5116ba-5c06-411d-b517-ff8e70a3f855" + "712b0420-85cd-4fcb-8961-5d73271f7adb" ], "x-ms-correlation-request-id": [ - "3f5116ba-5c06-411d-b517-ff8e70a3f855" + "712b0420-85cd-4fcb-8961-5d73271f7adb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:3f5116ba-5c06-411d-b517-ff8e70a3f855" + "WESTUS2:20210213T020701Z:712b0420-85cd-4fcb-8961-5d73271f7adb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:01 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7407,16 +6997,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "135455ff-7952-48ac-8d51-a86bff190aba" + "0a10fdea-fee9-433f-9e1b-1380456c1178" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7439,28 +7029,25 @@ "11899" ], "x-ms-request-id": [ - "7709c25e-108f-47ab-a0e4-fa5b69f3d2ce" + "f613c75c-af65-4811-918b-6f128c0ef8e5" ], "x-ms-correlation-request-id": [ - "7709c25e-108f-47ab-a0e4-fa5b69f3d2ce" + "f613c75c-af65-4811-918b-6f128c0ef8e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:7709c25e-108f-47ab-a0e4-fa5b69f3d2ce" + "WESTUS2:20210213T020701Z:f613c75c-af65-4811-918b-6f128c0ef8e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:01 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7473,16 +7060,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afecf62f-e175-4112-be9a-a42a7f3df50b" + "b64f7d57-b2e8-4fa5-b5f1-0b81ccb639ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7505,28 +7092,25 @@ "11898" ], "x-ms-request-id": [ - "a733ec4b-090b-4f89-a5c9-f626db180b49" + "948e1047-7b80-44af-9613-3969a358bb18" ], "x-ms-correlation-request-id": [ - "a733ec4b-090b-4f89-a5c9-f626db180b49" + "948e1047-7b80-44af-9613-3969a358bb18" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:a733ec4b-090b-4f89-a5c9-f626db180b49" + "WESTUS2:20210213T020701Z:948e1047-7b80-44af-9613-3969a358bb18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:01 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7539,16 +7123,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85b46858-6f5d-453b-8c94-60560999262b" + "3bc27548-1a0c-4ca0-b054-5e3a32dcb97a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7571,28 +7155,25 @@ "11897" ], "x-ms-request-id": [ - "0fed4efc-29ba-497c-9dd7-3382ae0c6b83" + "d48c40d1-8680-4653-9bf0-9d9e1b50aaa0" ], "x-ms-correlation-request-id": [ - "0fed4efc-29ba-497c-9dd7-3382ae0c6b83" + "d48c40d1-8680-4653-9bf0-9d9e1b50aaa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:0fed4efc-29ba-497c-9dd7-3382ae0c6b83" + "WESTUS2:20210213T020701Z:d48c40d1-8680-4653-9bf0-9d9e1b50aaa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:01 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7605,16 +7186,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3dbdfdd-839c-4cef-9260-2a8ede01314a" + "d1af2d63-5218-449b-8f15-b0598526d8f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7637,28 +7218,25 @@ "11896" ], "x-ms-request-id": [ - "14051981-f4f7-48dd-8dbe-ebf83b6190b8" + "6e741dfe-5db2-4464-94ba-8c8289027a85" ], "x-ms-correlation-request-id": [ - "14051981-f4f7-48dd-8dbe-ebf83b6190b8" + "6e741dfe-5db2-4464-94ba-8c8289027a85" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204131Z:14051981-f4f7-48dd-8dbe-ebf83b6190b8" + "WESTUS2:20210213T020702Z:6e741dfe-5db2-4464-94ba-8c8289027a85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:31 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7671,16 +7249,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb91fa51-3022-44fa-82ed-fb7d1dc928bc" + "68c20a37-e186-4545-9976-bdf52777d1ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7703,28 +7281,25 @@ "11895" ], "x-ms-request-id": [ - "8e2fb022-aea3-4e15-900a-07022e56b9f6" + "efe8025c-6421-4d10-8891-e40359a85f2f" ], "x-ms-correlation-request-id": [ - "8e2fb022-aea3-4e15-900a-07022e56b9f6" + "efe8025c-6421-4d10-8891-e40359a85f2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204132Z:8e2fb022-aea3-4e15-900a-07022e56b9f6" + "WESTUS2:20210213T020702Z:efe8025c-6421-4d10-8891-e40359a85f2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7737,16 +7312,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe6c1ecb-e923-4ea4-91e8-63e683ee4da7" + "edea8ceb-f5c7-4900-8440-4987d7977794" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7769,28 +7344,25 @@ "11894" ], "x-ms-request-id": [ - "1a67909a-659c-4448-8b2e-7eaa0b54586c" + "143fe408-5f45-402c-ac61-5d51ea2bc8e0" ], "x-ms-correlation-request-id": [ - "1a67909a-659c-4448-8b2e-7eaa0b54586c" + "143fe408-5f45-402c-ac61-5d51ea2bc8e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204132Z:1a67909a-659c-4448-8b2e-7eaa0b54586c" + "WESTUS2:20210213T020702Z:143fe408-5f45-402c-ac61-5d51ea2bc8e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7803,16 +7375,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7534419e-633b-4103-a03c-10c9ae844bbb" + "569c31f6-b2dc-46b1-9ecc-b25cff95c72d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7835,28 +7407,25 @@ "11893" ], "x-ms-request-id": [ - "89af50d8-8ee9-41f3-a3bf-d58091a18c66" + "544374c0-d72d-429e-aa3f-940953534328" ], "x-ms-correlation-request-id": [ - "89af50d8-8ee9-41f3-a3bf-d58091a18c66" + "544374c0-d72d-429e-aa3f-940953534328" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204132Z:89af50d8-8ee9-41f3-a3bf-d58091a18c66" + "WESTUS2:20210213T020702Z:544374c0-d72d-429e-aa3f-940953534328" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7869,16 +7438,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c22f415d-8229-4934-ba0b-da01fb273b23" + "c515736a-91fe-4f07-bc63-fedcfdce54a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7901,28 +7470,25 @@ "11892" ], "x-ms-request-id": [ - "b5d4f91a-82fd-456b-bfc5-cc95d2250311" + "c55e552a-0f02-46d5-8991-57b1b3005261" ], "x-ms-correlation-request-id": [ - "b5d4f91a-82fd-456b-bfc5-cc95d2250311" + "c55e552a-0f02-46d5-8991-57b1b3005261" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204132Z:b5d4f91a-82fd-456b-bfc5-cc95d2250311" + "WESTUS2:20210213T020702Z:c55e552a-0f02-46d5-8991-57b1b3005261" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -7935,16 +7501,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ccd0cd0-697b-4bba-bad8-38fd66b2f81c" + "88a42bdc-df33-4b7b-9775-f8a6e04002f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -7967,28 +7533,25 @@ "11891" ], "x-ms-request-id": [ - "fb4bb11c-f525-483b-b9cf-a4e69ea3fa3f" + "19059400-4120-40cd-a161-59c5e67baa30" ], "x-ms-correlation-request-id": [ - "fb4bb11c-f525-483b-b9cf-a4e69ea3fa3f" + "19059400-4120-40cd-a161-59c5e67baa30" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204132Z:fb4bb11c-f525-483b-b9cf-a4e69ea3fa3f" + "WESTUS2:20210213T020702Z:19059400-4120-40cd-a161-59c5e67baa30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:02 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8001,16 +7564,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d68b025c-d770-4545-ad6f-060fab4d449c" + "094226a8-ee4a-4d52-b529-72f865b9e782" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8033,28 +7596,25 @@ "11890" ], "x-ms-request-id": [ - "8be8fcae-7325-4fef-aa22-f223cf3a0fd2" + "9ee83657-7832-4510-a729-9534a399b851" ], "x-ms-correlation-request-id": [ - "8be8fcae-7325-4fef-aa22-f223cf3a0fd2" + "9ee83657-7832-4510-a729-9534a399b851" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:8be8fcae-7325-4fef-aa22-f223cf3a0fd2" + "WESTUS2:20210213T020703Z:9ee83657-7832-4510-a729-9534a399b851" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:32 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8067,16 +7627,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fd7dee9-ebd3-4187-800a-cda9915fc048" + "74d50383-1732-412c-a33b-024fbb6e72f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8099,28 +7659,25 @@ "11889" ], "x-ms-request-id": [ - "2883b495-f3dc-4ab3-bed6-6acefdc8305b" + "16fcc4ad-d4d2-4e04-a984-bbbd55c49a9f" ], "x-ms-correlation-request-id": [ - "2883b495-f3dc-4ab3-bed6-6acefdc8305b" + "16fcc4ad-d4d2-4e04-a984-bbbd55c49a9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:2883b495-f3dc-4ab3-bed6-6acefdc8305b" + "WESTUS2:20210213T020703Z:16fcc4ad-d4d2-4e04-a984-bbbd55c49a9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8133,16 +7690,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ca4a8f6-1e06-4e36-a012-6f330b68dfc2" + "dc0142f8-726f-4b55-87d9-481b3e321a11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8165,28 +7722,25 @@ "11888" ], "x-ms-request-id": [ - "c8ac7230-9e8d-4a78-9ddf-d800dfc89a3a" + "608da737-61e3-4505-84f6-7729a2aeffb7" ], "x-ms-correlation-request-id": [ - "c8ac7230-9e8d-4a78-9ddf-d800dfc89a3a" + "608da737-61e3-4505-84f6-7729a2aeffb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:c8ac7230-9e8d-4a78-9ddf-d800dfc89a3a" + "WESTUS2:20210213T020703Z:608da737-61e3-4505-84f6-7729a2aeffb7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8199,16 +7753,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a26d032-d76c-4adc-8aca-bcbdd77d25d3" + "66cd0bda-1f3e-498e-a4b3-84ea8a140eb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8231,28 +7785,25 @@ "11887" ], "x-ms-request-id": [ - "c1fa9207-be45-45f3-9a88-ab6ab688fba2" + "f02620e8-42c1-481d-b452-83df4b98bc78" ], "x-ms-correlation-request-id": [ - "c1fa9207-be45-45f3-9a88-ab6ab688fba2" + "f02620e8-42c1-481d-b452-83df4b98bc78" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:c1fa9207-be45-45f3-9a88-ab6ab688fba2" + "WESTUS2:20210213T020703Z:f02620e8-42c1-481d-b452-83df4b98bc78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8265,16 +7816,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "919f69ab-f256-4e70-a611-0a48b521bf42" + "c61edb22-5cac-4d0e-b863-e1215dad8e67" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8297,28 +7848,25 @@ "11886" ], "x-ms-request-id": [ - "b41f647f-327e-4377-8e82-ccc87a9f76f1" + "dbe76a69-e912-4516-a57a-09b0b1098ff3" ], "x-ms-correlation-request-id": [ - "b41f647f-327e-4377-8e82-ccc87a9f76f1" + "dbe76a69-e912-4516-a57a-09b0b1098ff3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:b41f647f-327e-4377-8e82-ccc87a9f76f1" + "WESTUS2:20210213T020703Z:dbe76a69-e912-4516-a57a-09b0b1098ff3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8331,16 +7879,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3edf09a-677f-4c2f-aad8-6a79c7f5afe5" + "659d3e18-2699-4926-9804-b93c07ba09f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8363,28 +7911,25 @@ "11885" ], "x-ms-request-id": [ - "b1d00e52-e399-4d10-aef3-56d7be840a29" + "16630fec-66d1-4a2f-9d4b-9c43a69eed2c" ], "x-ms-correlation-request-id": [ - "b1d00e52-e399-4d10-aef3-56d7be840a29" + "16630fec-66d1-4a2f-9d4b-9c43a69eed2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:b1d00e52-e399-4d10-aef3-56d7be840a29" + "WESTUS2:20210213T020704Z:16630fec-66d1-4a2f-9d4b-9c43a69eed2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:03 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8397,16 +7942,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18d11782-65e1-44b4-907d-0e9ba6c137ec" + "0c544015-897b-458e-aea4-343b38976e1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8429,28 +7974,25 @@ "11884" ], "x-ms-request-id": [ - "43cf7b54-c572-4f65-8abe-318e96b8d856" + "38aac4a8-cc45-4f13-93ca-8b39f3109c4e" ], "x-ms-correlation-request-id": [ - "43cf7b54-c572-4f65-8abe-318e96b8d856" + "38aac4a8-cc45-4f13-93ca-8b39f3109c4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:43cf7b54-c572-4f65-8abe-318e96b8d856" + "WESTUS2:20210213T020704Z:38aac4a8-cc45-4f13-93ca-8b39f3109c4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8463,16 +8005,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a966b734-39ee-4ae7-b714-df34d145d44a" + "4d12a657-9655-44b7-a799-c5194c25fdb5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8495,28 +8037,25 @@ "11883" ], "x-ms-request-id": [ - "5082f49d-3424-47c9-aa59-dfefb54c133b" + "e4dc6c21-cc35-4f37-935a-018777933539" ], "x-ms-correlation-request-id": [ - "5082f49d-3424-47c9-aa59-dfefb54c133b" + "e4dc6c21-cc35-4f37-935a-018777933539" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204133Z:5082f49d-3424-47c9-aa59-dfefb54c133b" + "WESTUS2:20210213T020704Z:e4dc6c21-cc35-4f37-935a-018777933539" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:33 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8529,16 +8068,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a759b611-2051-47df-93f6-d797b4f9c48b" + "7e8f2f6e-6eb5-460c-af38-4aec799a8fe5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8561,28 +8100,25 @@ "11882" ], "x-ms-request-id": [ - "9bd38e78-d206-413f-bf8f-e1e1b6ab4dd3" + "7738c98e-52f4-4569-8339-75b3b6e93ea9" ], "x-ms-correlation-request-id": [ - "9bd38e78-d206-413f-bf8f-e1e1b6ab4dd3" + "7738c98e-52f4-4569-8339-75b3b6e93ea9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:9bd38e78-d206-413f-bf8f-e1e1b6ab4dd3" + "WESTUS2:20210213T020704Z:7738c98e-52f4-4569-8339-75b3b6e93ea9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8595,16 +8131,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f949febb-91d3-4f16-b816-669ffdda1102" + "6ce20458-c9a9-4ed7-921f-2917e3ae3bc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8627,28 +8163,25 @@ "11881" ], "x-ms-request-id": [ - "e3de626c-68ab-4a43-be8b-d07812985fb1" + "d45be550-f790-42f2-9d23-6f74385cbb3d" ], "x-ms-correlation-request-id": [ - "e3de626c-68ab-4a43-be8b-d07812985fb1" + "d45be550-f790-42f2-9d23-6f74385cbb3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:e3de626c-68ab-4a43-be8b-d07812985fb1" + "WESTUS2:20210213T020704Z:d45be550-f790-42f2-9d23-6f74385cbb3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8661,16 +8194,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59f2abb6-ceb6-4152-bb62-adc0c872604e" + "3895a509-04ff-434d-a8a1-e24585ba1246" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8693,28 +8226,25 @@ "11880" ], "x-ms-request-id": [ - "7ba698ed-54dc-4262-815d-8b352fae784c" + "b99ca05e-cd53-42ad-92e1-1c13681f7f60" ], "x-ms-correlation-request-id": [ - "7ba698ed-54dc-4262-815d-8b352fae784c" + "b99ca05e-cd53-42ad-92e1-1c13681f7f60" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:7ba698ed-54dc-4262-815d-8b352fae784c" + "WESTUS2:20210213T020704Z:b99ca05e-cd53-42ad-92e1-1c13681f7f60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8727,16 +8257,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd49a6cc-1a10-45b4-aabc-81de38e9462f" + "b21ffba5-dd5d-4b2f-86c4-a3e4d8325d3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8759,28 +8289,25 @@ "11879" ], "x-ms-request-id": [ - "740ba696-601b-4c92-9796-31dca09956e2" + "daa270b1-861b-4926-a887-f28063bb9350" ], "x-ms-correlation-request-id": [ - "740ba696-601b-4c92-9796-31dca09956e2" + "daa270b1-861b-4926-a887-f28063bb9350" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:740ba696-601b-4c92-9796-31dca09956e2" + "WESTUS2:20210213T020705Z:daa270b1-861b-4926-a887-f28063bb9350" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:04 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8793,16 +8320,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af321556-8fc8-46a0-993a-dd57ef99475f" + "1949c2cf-466f-4da0-ba92-eb03560310b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8825,28 +8352,25 @@ "11878" ], "x-ms-request-id": [ - "63d4e41f-35f2-47d2-8874-8f07c61235e8" + "dd521118-a48c-4c1c-a7b2-5066aab0bc5a" ], "x-ms-correlation-request-id": [ - "63d4e41f-35f2-47d2-8874-8f07c61235e8" + "dd521118-a48c-4c1c-a7b2-5066aab0bc5a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:63d4e41f-35f2-47d2-8874-8f07c61235e8" + "WESTUS2:20210213T020705Z:dd521118-a48c-4c1c-a7b2-5066aab0bc5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8859,16 +8383,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "092d4a7a-6016-4c96-b92c-d60a402e1116" + "c0690094-f69a-48e2-af89-4657a2cc3cbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8891,28 +8415,25 @@ "11877" ], "x-ms-request-id": [ - "d4965314-dfcb-47fb-ba59-f3c82316292f" + "7fbba062-ad2f-4cfb-a3c8-e0542f0c9ad9" ], "x-ms-correlation-request-id": [ - "d4965314-dfcb-47fb-ba59-f3c82316292f" + "7fbba062-ad2f-4cfb-a3c8-e0542f0c9ad9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:d4965314-dfcb-47fb-ba59-f3c82316292f" + "WESTUS2:20210213T020705Z:7fbba062-ad2f-4cfb-a3c8-e0542f0c9ad9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8925,16 +8446,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b1893ed-d616-4a48-bc8d-c37bdc321a49" + "3c8cedfe-2c9c-4a8d-96bf-0c27a79abaa3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -8957,28 +8478,25 @@ "11876" ], "x-ms-request-id": [ - "10338f86-2f3e-49e1-ae95-5119e2c00340" + "a5932392-2667-4000-8d63-7e52198d1612" ], "x-ms-correlation-request-id": [ - "10338f86-2f3e-49e1-ae95-5119e2c00340" + "a5932392-2667-4000-8d63-7e52198d1612" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204134Z:10338f86-2f3e-49e1-ae95-5119e2c00340" + "WESTUS2:20210213T020705Z:a5932392-2667-4000-8d63-7e52198d1612" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -8991,16 +8509,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fbfe2a6-f065-490c-b259-245f62fc5a1a" + "e9025974-7aa7-4dc9-8828-61a3b44757c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9023,28 +8541,25 @@ "11875" ], "x-ms-request-id": [ - "f434c739-fdd6-469d-815c-0dea0eb21311" + "56efc58a-2a99-46ba-b015-83a2652522eb" ], "x-ms-correlation-request-id": [ - "f434c739-fdd6-469d-815c-0dea0eb21311" + "56efc58a-2a99-46ba-b015-83a2652522eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:f434c739-fdd6-469d-815c-0dea0eb21311" + "WESTUS2:20210213T020705Z:56efc58a-2a99-46ba-b015-83a2652522eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:34 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9057,16 +8572,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fecf9f5-5f36-4909-9f37-ae391033a324" + "fb6ef18b-3e2b-42a1-9fda-7dcf087532aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9089,28 +8604,25 @@ "11874" ], "x-ms-request-id": [ - "5a12ac6d-ba39-4377-a7f9-648a8f49d37d" + "52a43c5f-0c9a-4144-b3dc-74dbab5df765" ], "x-ms-correlation-request-id": [ - "5a12ac6d-ba39-4377-a7f9-648a8f49d37d" + "52a43c5f-0c9a-4144-b3dc-74dbab5df765" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:5a12ac6d-ba39-4377-a7f9-648a8f49d37d" + "WESTUS2:20210213T020705Z:52a43c5f-0c9a-4144-b3dc-74dbab5df765" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9123,16 +8635,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a2bc14a-7a75-48b1-b5a2-58752d10370f" + "bfb320c5-272d-43c6-9d1b-a5a38d8390b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9155,28 +8667,25 @@ "11873" ], "x-ms-request-id": [ - "7cb5b4f3-4748-4125-bdd0-90012d4c2cf6" + "a900f23d-6551-4adb-a829-1237df72c664" ], "x-ms-correlation-request-id": [ - "7cb5b4f3-4748-4125-bdd0-90012d4c2cf6" + "a900f23d-6551-4adb-a829-1237df72c664" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:7cb5b4f3-4748-4125-bdd0-90012d4c2cf6" + "WESTUS2:20210213T020706Z:a900f23d-6551-4adb-a829-1237df72c664" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:05 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9189,16 +8698,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f68d1251-5817-4f8e-ae72-c09122396246" + "f11fd386-db57-48ae-a8e8-f044a0c3fac3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9221,28 +8730,25 @@ "11872" ], "x-ms-request-id": [ - "df06c603-58d0-4331-8916-e12bf002a0e5" + "7683a49f-94c7-4761-8eb1-cf1da2fdd72d" ], "x-ms-correlation-request-id": [ - "df06c603-58d0-4331-8916-e12bf002a0e5" + "7683a49f-94c7-4761-8eb1-cf1da2fdd72d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:df06c603-58d0-4331-8916-e12bf002a0e5" + "WESTUS2:20210213T020706Z:7683a49f-94c7-4761-8eb1-cf1da2fdd72d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9255,16 +8761,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d732bb82-f14f-4b44-b575-9518e096c388" + "bf2bcac5-f6dd-444c-b806-698e9eed1467" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9287,28 +8793,25 @@ "11871" ], "x-ms-request-id": [ - "07efbc64-e114-4fde-a3d7-b4a08b336a1f" + "7cd0eabe-8992-4c4a-8f9a-8400a2cd58d3" ], "x-ms-correlation-request-id": [ - "07efbc64-e114-4fde-a3d7-b4a08b336a1f" + "7cd0eabe-8992-4c4a-8f9a-8400a2cd58d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:07efbc64-e114-4fde-a3d7-b4a08b336a1f" + "WESTUS2:20210213T020706Z:7cd0eabe-8992-4c4a-8f9a-8400a2cd58d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9321,16 +8824,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "febdbe91-fc0e-41eb-a47d-aeb51df16ea7" + "c6686d23-a112-4601-8a68-dad27fc68321" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9353,28 +8856,25 @@ "11870" ], "x-ms-request-id": [ - "982df3dc-ad31-4cfd-83e0-c8c6d76882ee" + "f37d33b3-2608-4fd3-955e-a0e5ee2eeb55" ], "x-ms-correlation-request-id": [ - "982df3dc-ad31-4cfd-83e0-c8c6d76882ee" + "f37d33b3-2608-4fd3-955e-a0e5ee2eeb55" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:982df3dc-ad31-4cfd-83e0-c8c6d76882ee" + "WESTUS2:20210213T020706Z:f37d33b3-2608-4fd3-955e-a0e5ee2eeb55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9387,16 +8887,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "637829fa-62b5-47a3-b791-a3bc14d41698" + "47e83c4d-ccd6-4ee3-9c62-6b85e095e235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9419,28 +8919,25 @@ "11869" ], "x-ms-request-id": [ - "7b3a07ba-6814-4eef-b41e-2f854358fdfe" + "4bfa89ce-94ed-42d7-b6a5-0900b21a0088" ], "x-ms-correlation-request-id": [ - "7b3a07ba-6814-4eef-b41e-2f854358fdfe" + "4bfa89ce-94ed-42d7-b6a5-0900b21a0088" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204135Z:7b3a07ba-6814-4eef-b41e-2f854358fdfe" + "WESTUS2:20210213T020706Z:4bfa89ce-94ed-42d7-b6a5-0900b21a0088" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9453,16 +8950,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ba4ac24-0d76-4ad2-a7af-7364995e50ce" + "616ada6d-5304-48d8-9244-968ba49604ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9485,28 +8982,25 @@ "11868" ], "x-ms-request-id": [ - "565fd000-bff2-4ae8-8f85-8b4cc5ac8074" + "d8b37934-67d2-4f42-abc1-5337d3bbc308" ], "x-ms-correlation-request-id": [ - "565fd000-bff2-4ae8-8f85-8b4cc5ac8074" + "d8b37934-67d2-4f42-abc1-5337d3bbc308" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:565fd000-bff2-4ae8-8f85-8b4cc5ac8074" + "WESTUS2:20210213T020707Z:d8b37934-67d2-4f42-abc1-5337d3bbc308" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:35 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9519,16 +9013,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "365e4a5a-20fc-4d7b-ba31-67005665aa07" + "e4b357d6-6385-436d-a812-93481df7079a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9551,28 +9045,25 @@ "11867" ], "x-ms-request-id": [ - "8db8342a-f226-4367-8992-9c91dee2d997" + "ae4901a2-d2f8-40a0-b37d-95938448c0c5" ], "x-ms-correlation-request-id": [ - "8db8342a-f226-4367-8992-9c91dee2d997" + "ae4901a2-d2f8-40a0-b37d-95938448c0c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:8db8342a-f226-4367-8992-9c91dee2d997" + "WESTUS2:20210213T020707Z:ae4901a2-d2f8-40a0-b37d-95938448c0c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:06 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9585,16 +9076,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d55639c1-e059-4833-b881-3862364d6213" + "b074c877-e68b-470c-ad97-021e08614dae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9617,28 +9108,25 @@ "11866" ], "x-ms-request-id": [ - "cecae75a-1e08-4d56-b011-e737fe22c05c" + "5323257c-3f87-41b9-be8d-077d1975e9ce" ], "x-ms-correlation-request-id": [ - "cecae75a-1e08-4d56-b011-e737fe22c05c" + "5323257c-3f87-41b9-be8d-077d1975e9ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:cecae75a-1e08-4d56-b011-e737fe22c05c" + "WESTUS2:20210213T020707Z:5323257c-3f87-41b9-be8d-077d1975e9ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9651,16 +9139,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c43c94d-838a-4feb-8bfb-9effc7c84d33" + "229bc060-8226-4273-8aab-e8f6a7016cc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9683,28 +9171,25 @@ "11865" ], "x-ms-request-id": [ - "53977085-cb38-4a3f-8be6-6a8d29836fc6" + "b3a97ac3-4657-4291-8c99-b914ee67f782" ], "x-ms-correlation-request-id": [ - "53977085-cb38-4a3f-8be6-6a8d29836fc6" + "b3a97ac3-4657-4291-8c99-b914ee67f782" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:53977085-cb38-4a3f-8be6-6a8d29836fc6" + "WESTUS2:20210213T020707Z:b3a97ac3-4657-4291-8c99-b914ee67f782" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9717,16 +9202,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39f4ab69-4078-4769-84f9-83bd701f49f2" + "b714daee-c511-4228-8cf4-6a6c93889bd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9749,28 +9234,25 @@ "11864" ], "x-ms-request-id": [ - "85641867-0fec-4d7b-b362-cbb072388d45" + "916c07d8-0754-45ff-a5aa-4c969ca55112" ], "x-ms-correlation-request-id": [ - "85641867-0fec-4d7b-b362-cbb072388d45" + "916c07d8-0754-45ff-a5aa-4c969ca55112" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:85641867-0fec-4d7b-b362-cbb072388d45" + "WESTUS2:20210213T020707Z:916c07d8-0754-45ff-a5aa-4c969ca55112" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9783,16 +9265,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b81acc78-f657-4c21-8faa-6d7cb909e692" + "44d579f9-9388-47dc-bfbc-1a84d956c50e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9815,28 +9297,25 @@ "11863" ], "x-ms-request-id": [ - "9f85dd62-da55-4843-8a96-f5979ee918db" + "26b40de1-f91f-4ca6-a925-8fa344d515b9" ], "x-ms-correlation-request-id": [ - "9f85dd62-da55-4843-8a96-f5979ee918db" + "26b40de1-f91f-4ca6-a925-8fa344d515b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:9f85dd62-da55-4843-8a96-f5979ee918db" + "WESTUS2:20210213T020707Z:26b40de1-f91f-4ca6-a925-8fa344d515b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9849,16 +9328,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7f6fb8c-a7f9-4f3e-935e-7c27c4780f36" + "82d21a14-7789-479a-86f8-231a906ea46f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9881,28 +9360,25 @@ "11862" ], "x-ms-request-id": [ - "26de229f-95da-4716-b8ed-83e0a47708cc" + "cb2d53a0-c750-433c-9e2d-a40599091471" ], "x-ms-correlation-request-id": [ - "26de229f-95da-4716-b8ed-83e0a47708cc" + "cb2d53a0-c750-433c-9e2d-a40599091471" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204136Z:26de229f-95da-4716-b8ed-83e0a47708cc" + "WESTUS2:20210213T020708Z:cb2d53a0-c750-433c-9e2d-a40599091471" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:36 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9915,16 +9391,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9aca701-93ce-4780-9e49-b52e0db236d6" + "d664d9c3-4992-4bec-bbcd-2b48b3632cdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -9947,28 +9423,25 @@ "11861" ], "x-ms-request-id": [ - "10b8f0b3-c8d3-4aca-8468-e7421fd4fa06" + "1bafd303-7b22-415d-8219-5cc8d289d803" ], "x-ms-correlation-request-id": [ - "10b8f0b3-c8d3-4aca-8468-e7421fd4fa06" + "1bafd303-7b22-415d-8219-5cc8d289d803" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:10b8f0b3-c8d3-4aca-8468-e7421fd4fa06" + "WESTUS2:20210213T020708Z:1bafd303-7b22-415d-8219-5cc8d289d803" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:07 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -9981,16 +9454,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3810b883-d112-4018-8e11-93987562bac3" + "bbf02528-d07a-4f6c-81cf-347527ffed15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10013,28 +9486,25 @@ "11860" ], "x-ms-request-id": [ - "770dcd46-1b21-419c-b69a-02d050b7888a" + "edd95055-7aa4-4a5f-8490-5a2d0314a748" ], "x-ms-correlation-request-id": [ - "770dcd46-1b21-419c-b69a-02d050b7888a" + "edd95055-7aa4-4a5f-8490-5a2d0314a748" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:770dcd46-1b21-419c-b69a-02d050b7888a" + "WESTUS2:20210213T020708Z:edd95055-7aa4-4a5f-8490-5a2d0314a748" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:08 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10047,16 +9517,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2bce8f8-0acf-4236-bdbe-ea15ef9bc81e" + "233499d2-86ca-44b0-830c-8a563bac3111" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10079,28 +9549,25 @@ "11859" ], "x-ms-request-id": [ - "3f3b352d-ab56-4660-b687-b3f24f2c9c79" + "bc298c52-a030-460f-a459-3744728a484a" ], "x-ms-correlation-request-id": [ - "3f3b352d-ab56-4660-b687-b3f24f2c9c79" + "bc298c52-a030-460f-a459-3744728a484a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:3f3b352d-ab56-4660-b687-b3f24f2c9c79" + "WESTUS2:20210213T020708Z:bc298c52-a030-460f-a459-3744728a484a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:08 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10113,16 +9580,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e4e3419-8dae-471b-8d4f-6825def2ea3c" + "ff1e2b51-5fcc-455f-9d0f-ef0a57415b18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10145,28 +9612,25 @@ "11858" ], "x-ms-request-id": [ - "ade457a8-3b1d-43f2-8385-ba8942033559" + "b142a8e0-b894-490f-b422-c6469ddc5bf1" ], "x-ms-correlation-request-id": [ - "ade457a8-3b1d-43f2-8385-ba8942033559" + "b142a8e0-b894-490f-b422-c6469ddc5bf1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:ade457a8-3b1d-43f2-8385-ba8942033559" + "WESTUS2:20210213T020708Z:b142a8e0-b894-490f-b422-c6469ddc5bf1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:08 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10179,16 +9643,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c99d9db6-35b8-4178-a180-ee447b7c2153" + "3e59e776-c1dc-4451-be96-d93fb45ec385" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10211,28 +9675,25 @@ "11857" ], "x-ms-request-id": [ - "91c89104-6705-4961-a0c8-c75d03cd4927" + "16f2af10-cee8-4216-8a1b-5627b2ba8d38" ], "x-ms-correlation-request-id": [ - "91c89104-6705-4961-a0c8-c75d03cd4927" + "16f2af10-cee8-4216-8a1b-5627b2ba8d38" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:91c89104-6705-4961-a0c8-c75d03cd4927" + "WESTUS2:20210213T020708Z:16f2af10-cee8-4216-8a1b-5627b2ba8d38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:08 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10245,16 +9706,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ce7ee36-ddea-4dd9-908f-4e2ff70c076a" + "46702cfe-9efd-49b4-ae80-74bdfaaf93f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10277,28 +9738,25 @@ "11856" ], "x-ms-request-id": [ - "ea6ca3a5-564b-4f65-9637-db7f7709e81b" + "05a0c9bf-fa46-4563-bb2b-c3258efb8c09" ], "x-ms-correlation-request-id": [ - "ea6ca3a5-564b-4f65-9637-db7f7709e81b" + "05a0c9bf-fa46-4563-bb2b-c3258efb8c09" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204137Z:ea6ca3a5-564b-4f65-9637-db7f7709e81b" + "WESTUS2:20210213T020709Z:05a0c9bf-fa46-4563-bb2b-c3258efb8c09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:37 GMT" + "Sat, 13 Feb 2021 02:07:08 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10311,16 +9769,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "822792c3-0610-47fc-b368-4500346e4fc7" + "c128086b-9ff2-4910-9c65-9968ba9b3b30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10343,28 +9801,25 @@ "11855" ], "x-ms-request-id": [ - "3d3c662a-61e5-402b-aa54-001e927139dd" + "af042d90-ecb1-44d3-9fa3-17b4edb479ea" ], "x-ms-correlation-request-id": [ - "3d3c662a-61e5-402b-aa54-001e927139dd" + "af042d90-ecb1-44d3-9fa3-17b4edb479ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:3d3c662a-61e5-402b-aa54-001e927139dd" + "WESTUS2:20210213T020709Z:af042d90-ecb1-44d3-9fa3-17b4edb479ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10377,16 +9832,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6aef74-ae45-4631-813e-240b093f06e6" + "8c62bad4-da08-4482-aba1-881f71c93e6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10409,28 +9864,25 @@ "11854" ], "x-ms-request-id": [ - "788c5201-8071-4248-8a28-104a0cec8237" + "0b13c2d2-7b13-4f1f-9fe3-fa8c6cbd8c87" ], "x-ms-correlation-request-id": [ - "788c5201-8071-4248-8a28-104a0cec8237" + "0b13c2d2-7b13-4f1f-9fe3-fa8c6cbd8c87" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:788c5201-8071-4248-8a28-104a0cec8237" + "WESTUS2:20210213T020709Z:0b13c2d2-7b13-4f1f-9fe3-fa8c6cbd8c87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10443,16 +9895,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f68b4f4-5abe-4079-83c3-d80a490e8ea6" + "25b67d60-0304-4a65-9d62-a70c25fe8e25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10475,28 +9927,25 @@ "11853" ], "x-ms-request-id": [ - "8dfc996f-fb03-44bc-a3b6-73d5baa817f1" + "a0522c74-19ac-4cdf-b8c4-35157fca528b" ], "x-ms-correlation-request-id": [ - "8dfc996f-fb03-44bc-a3b6-73d5baa817f1" + "a0522c74-19ac-4cdf-b8c4-35157fca528b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:8dfc996f-fb03-44bc-a3b6-73d5baa817f1" + "WESTUS2:20210213T020709Z:a0522c74-19ac-4cdf-b8c4-35157fca528b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10509,16 +9958,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4c71d12-f03e-4c1b-aa5f-adf93b1e7c39" + "a69ea4d7-bd31-42b1-81a4-6c7d016a1a5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10541,28 +9990,25 @@ "11852" ], "x-ms-request-id": [ - "e215580b-6aec-4f19-9655-9e968740a62a" + "b482d2d1-bc69-4b47-866c-3f260704cd97" ], "x-ms-correlation-request-id": [ - "e215580b-6aec-4f19-9655-9e968740a62a" + "b482d2d1-bc69-4b47-866c-3f260704cd97" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:e215580b-6aec-4f19-9655-9e968740a62a" + "WESTUS2:20210213T020709Z:b482d2d1-bc69-4b47-866c-3f260704cd97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10575,16 +10021,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261e71f2-4194-4c18-888a-852e9f33dc60" + "e71bab1f-55b1-4074-a17c-8c6fdb16af51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10607,28 +10053,25 @@ "11851" ], "x-ms-request-id": [ - "9cede5a6-9685-44a1-88d5-130141eaa442" + "5289bff3-73b0-47b2-af49-e5c0b7536bcf" ], "x-ms-correlation-request-id": [ - "9cede5a6-9685-44a1-88d5-130141eaa442" + "5289bff3-73b0-47b2-af49-e5c0b7536bcf" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:9cede5a6-9685-44a1-88d5-130141eaa442" + "WESTUS2:20210213T020709Z:5289bff3-73b0-47b2-af49-e5c0b7536bcf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10641,16 +10084,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41066221-c334-4f83-9c7b-aea95aeeffd8" + "d89e05f0-673b-4645-9e79-976ef05f1f1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10673,28 +10116,25 @@ "11850" ], "x-ms-request-id": [ - "35eb1c9d-d4c7-4202-bc03-9885be7e0db9" + "3b210378-7bdf-49a9-b7fd-354957ac7733" ], "x-ms-correlation-request-id": [ - "35eb1c9d-d4c7-4202-bc03-9885be7e0db9" + "3b210378-7bdf-49a9-b7fd-354957ac7733" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:35eb1c9d-d4c7-4202-bc03-9885be7e0db9" + "WESTUS2:20210213T020710Z:3b210378-7bdf-49a9-b7fd-354957ac7733" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:09 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10707,16 +10147,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b180ef37-d635-4080-b43f-2858d21b9ec4" + "b4ecf46e-72bf-4198-8287-3865818f0237" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10739,28 +10179,25 @@ "11849" ], "x-ms-request-id": [ - "7561518e-fa54-4f21-a798-0e2ff915c076" + "62b9bab5-52de-403d-a3cd-0be4bbfbd5ce" ], "x-ms-correlation-request-id": [ - "7561518e-fa54-4f21-a798-0e2ff915c076" + "62b9bab5-52de-403d-a3cd-0be4bbfbd5ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204138Z:7561518e-fa54-4f21-a798-0e2ff915c076" + "WESTUS2:20210213T020710Z:62b9bab5-52de-403d-a3cd-0be4bbfbd5ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:38 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10773,16 +10210,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5eaa4da-dc5d-404d-8490-08cb92d92750" + "d32c7dc2-7712-4a91-9294-29164962edad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10805,28 +10242,25 @@ "11848" ], "x-ms-request-id": [ - "c3706052-0219-4732-aa0c-57bb4a7319ed" + "6522b79e-8d1f-413b-a3f9-0350b06d402c" ], "x-ms-correlation-request-id": [ - "c3706052-0219-4732-aa0c-57bb4a7319ed" + "6522b79e-8d1f-413b-a3f9-0350b06d402c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:c3706052-0219-4732-aa0c-57bb4a7319ed" + "WESTUS2:20210213T020710Z:6522b79e-8d1f-413b-a3f9-0350b06d402c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10839,16 +10273,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f86343a-5446-4fb7-afb6-b17a1942cf7d" + "db8e1bd8-3628-474a-b72e-249c1359a893" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10871,28 +10305,25 @@ "11847" ], "x-ms-request-id": [ - "ab1c4788-91c4-4233-acb1-bfd3725b42ce" + "aca3bf77-a0d7-4a67-849b-aa2ccffe06a7" ], "x-ms-correlation-request-id": [ - "ab1c4788-91c4-4233-acb1-bfd3725b42ce" + "aca3bf77-a0d7-4a67-849b-aa2ccffe06a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:ab1c4788-91c4-4233-acb1-bfd3725b42ce" + "WESTUS2:20210213T020710Z:aca3bf77-a0d7-4a67-849b-aa2ccffe06a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10905,16 +10336,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c00919d4-c112-470d-b70f-1b761e2f3dd5" + "6d4a3d5d-e766-4195-a9be-99732eb864bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -10937,28 +10368,25 @@ "11846" ], "x-ms-request-id": [ - "1a31c6b4-c479-49c4-b19e-2a135daf6643" + "cd7ad3fc-5d70-4133-b02a-214746c8243b" ], "x-ms-correlation-request-id": [ - "1a31c6b4-c479-49c4-b19e-2a135daf6643" + "cd7ad3fc-5d70-4133-b02a-214746c8243b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:1a31c6b4-c479-49c4-b19e-2a135daf6643" + "WESTUS2:20210213T020710Z:cd7ad3fc-5d70-4133-b02a-214746c8243b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -10971,16 +10399,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92b48764-84e0-49af-a06a-f0d4c39502c4" + "948999af-3df6-4f78-b695-479c9d655f23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11003,28 +10431,25 @@ "11845" ], "x-ms-request-id": [ - "92db8bd0-413d-45be-8d51-ab85c6d55938" + "ffd959bb-fdc3-401e-9e69-897a1334d082" ], "x-ms-correlation-request-id": [ - "92db8bd0-413d-45be-8d51-ab85c6d55938" + "ffd959bb-fdc3-401e-9e69-897a1334d082" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:92db8bd0-413d-45be-8d51-ab85c6d55938" + "WESTUS2:20210213T020711Z:ffd959bb-fdc3-401e-9e69-897a1334d082" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11037,16 +10462,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a010d77-92c2-4d26-ad59-d32f37a8f490" + "1e301da9-abd7-45fe-9846-143e2a89839e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11069,28 +10494,25 @@ "11844" ], "x-ms-request-id": [ - "a8c6493a-cdad-41e1-8076-4e21e17cf208" + "ea3844ba-148a-470a-a538-22c7f2756344" ], "x-ms-correlation-request-id": [ - "a8c6493a-cdad-41e1-8076-4e21e17cf208" + "ea3844ba-148a-470a-a538-22c7f2756344" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:a8c6493a-cdad-41e1-8076-4e21e17cf208" + "WESTUS2:20210213T020711Z:ea3844ba-148a-470a-a538-22c7f2756344" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:10 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11103,16 +10525,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "758d95d4-e70c-4f77-a188-534590ee7bbe" + "7aa79e07-2e81-47e9-bb13-ce92be44d501" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11135,28 +10557,25 @@ "11843" ], "x-ms-request-id": [ - "e1b16510-6ff3-478b-b20e-c844010068fd" + "027fcf21-2349-49b3-8544-e1be748f73cd" ], "x-ms-correlation-request-id": [ - "e1b16510-6ff3-478b-b20e-c844010068fd" + "027fcf21-2349-49b3-8544-e1be748f73cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:e1b16510-6ff3-478b-b20e-c844010068fd" + "WESTUS2:20210213T020711Z:027fcf21-2349-49b3-8544-e1be748f73cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11169,16 +10588,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f6df5b2-76e1-4868-ae2f-1b10a07a1821" + "7a0c9255-370a-4310-bdb0-63112aeb3aea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11201,28 +10620,25 @@ "11842" ], "x-ms-request-id": [ - "b17f59bb-ffda-46e6-9af4-b65860407cec" + "eeccaa4f-7271-4fd4-8648-88ee7c39b550" ], "x-ms-correlation-request-id": [ - "b17f59bb-ffda-46e6-9af4-b65860407cec" + "eeccaa4f-7271-4fd4-8648-88ee7c39b550" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204139Z:b17f59bb-ffda-46e6-9af4-b65860407cec" + "WESTUS2:20210213T020711Z:eeccaa4f-7271-4fd4-8648-88ee7c39b550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11235,16 +10651,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0006748-c2ea-4ccb-80b9-94c8a84af55c" + "444e2e47-c541-4562-a36f-3e2cc36d4def" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11267,28 +10683,25 @@ "11841" ], "x-ms-request-id": [ - "95d7f9b5-a8d8-42ae-82c6-2632535b8c70" + "cd742054-4672-4986-b1d5-edfd8f21b1ee" ], "x-ms-correlation-request-id": [ - "95d7f9b5-a8d8-42ae-82c6-2632535b8c70" + "cd742054-4672-4986-b1d5-edfd8f21b1ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204140Z:95d7f9b5-a8d8-42ae-82c6-2632535b8c70" + "WESTUS2:20210213T020711Z:cd742054-4672-4986-b1d5-edfd8f21b1ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:39 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11301,16 +10714,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1d240f9-109e-41d9-b159-349f19d82a95" + "a01042cb-dc00-4ab2-b169-9a0270517fca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11333,28 +10746,25 @@ "11840" ], "x-ms-request-id": [ - "82e84c1e-46b4-44f0-b2e3-612b53a74bb3" + "710ec241-ff68-4999-a549-35922b9ccfe4" ], "x-ms-correlation-request-id": [ - "82e84c1e-46b4-44f0-b2e3-612b53a74bb3" + "710ec241-ff68-4999-a549-35922b9ccfe4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204140Z:82e84c1e-46b4-44f0-b2e3-612b53a74bb3" + "WESTUS2:20210213T020711Z:710ec241-ff68-4999-a549-35922b9ccfe4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:40 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11367,16 +10777,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44f6bebf-c1ac-47a3-96ac-418b89e4eb2b" + "cfed5b62-269d-4591-8752-348b2f8d372c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11399,28 +10809,25 @@ "11839" ], "x-ms-request-id": [ - "37077764-0016-4951-bc67-8f62fdefd07e" + "df506e44-c0da-4361-9d80-9a72565fe279" ], "x-ms-correlation-request-id": [ - "37077764-0016-4951-bc67-8f62fdefd07e" + "df506e44-c0da-4361-9d80-9a72565fe279" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204140Z:37077764-0016-4951-bc67-8f62fdefd07e" + "WESTUS2:20210213T020711Z:df506e44-c0da-4361-9d80-9a72565fe279" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:40 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11433,16 +10840,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a1e5d4-3e13-44de-a114-0882257f002f" + "78942f24-8aa2-4af3-a1da-d5880271259d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11465,28 +10872,25 @@ "11838" ], "x-ms-request-id": [ - "5eedb6d0-84a0-4b60-85e2-581ad1a789ea" + "7fa49210-cdd0-4bae-9f1f-b57063ed1adc" ], "x-ms-correlation-request-id": [ - "5eedb6d0-84a0-4b60-85e2-581ad1a789ea" + "7fa49210-cdd0-4bae-9f1f-b57063ed1adc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204140Z:5eedb6d0-84a0-4b60-85e2-581ad1a789ea" + "WESTUS2:20210213T020712Z:7fa49210-cdd0-4bae-9f1f-b57063ed1adc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:40 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11499,16 +10903,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d3e1a26-f3d1-4ed5-a1e5-455b478baaad" + "446863e9-3bb4-40a9-a4ad-67b1de6a70ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11531,28 +10935,25 @@ "11837" ], "x-ms-request-id": [ - "5cbe2563-9873-469d-89a8-f87746828871" + "c01e07b3-0fd3-4c0c-a3c2-376d8ce15cee" ], "x-ms-correlation-request-id": [ - "5cbe2563-9873-469d-89a8-f87746828871" + "c01e07b3-0fd3-4c0c-a3c2-376d8ce15cee" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:5cbe2563-9873-469d-89a8-f87746828871" + "WESTUS2:20210213T020712Z:c01e07b3-0fd3-4c0c-a3c2-376d8ce15cee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:40 GMT" + "Sat, 13 Feb 2021 02:07:11 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11565,16 +10966,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0c30609-b87d-4db9-b91e-0df92c1afe3b" + "23a734af-5771-4ef7-8c4b-3006f7a31195" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11597,28 +10998,25 @@ "11836" ], "x-ms-request-id": [ - "d723ee28-d3f5-48d8-bedf-7bf3f11ee818" + "e6bbd65c-a001-4645-9906-42fbb55fe15a" ], "x-ms-correlation-request-id": [ - "d723ee28-d3f5-48d8-bedf-7bf3f11ee818" + "e6bbd65c-a001-4645-9906-42fbb55fe15a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:d723ee28-d3f5-48d8-bedf-7bf3f11ee818" + "WESTUS2:20210213T020712Z:e6bbd65c-a001-4645-9906-42fbb55fe15a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11631,16 +11029,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a4ae5a4-25a0-4410-80f7-41ade96274a9" + "03676023-75d6-4924-a9a2-1956be4fb400" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11663,28 +11061,25 @@ "11835" ], "x-ms-request-id": [ - "f33e05e3-6a8e-4f54-9c01-d18101a3c939" + "5748503e-a843-448a-a9e6-cafb8f69da87" ], "x-ms-correlation-request-id": [ - "f33e05e3-6a8e-4f54-9c01-d18101a3c939" + "5748503e-a843-448a-a9e6-cafb8f69da87" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:f33e05e3-6a8e-4f54-9c01-d18101a3c939" + "WESTUS2:20210213T020712Z:5748503e-a843-448a-a9e6-cafb8f69da87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11697,16 +11092,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25453099-4a6b-4c6d-820d-f97130c4ad7b" + "58cd6717-4c7b-4256-b71b-de59558a8ed7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11729,28 +11124,25 @@ "11834" ], "x-ms-request-id": [ - "0e5515e2-d101-438e-9d76-83fde3dfa092" + "bff8ede0-41d2-4e18-8c29-90ef4f958a70" ], "x-ms-correlation-request-id": [ - "0e5515e2-d101-438e-9d76-83fde3dfa092" + "bff8ede0-41d2-4e18-8c29-90ef4f958a70" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:0e5515e2-d101-438e-9d76-83fde3dfa092" + "WESTUS2:20210213T020712Z:bff8ede0-41d2-4e18-8c29-90ef4f958a70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11763,16 +11155,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f67d82f-9686-4dc7-8f46-0e30b11c8be6" + "35270473-1187-44bb-a2b9-907faba8dfec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11795,28 +11187,25 @@ "11833" ], "x-ms-request-id": [ - "857155d0-86d0-4cae-bfe2-6bb6226de71b" + "491a7275-d877-4f23-ad20-2d1586ee4504" ], "x-ms-correlation-request-id": [ - "857155d0-86d0-4cae-bfe2-6bb6226de71b" + "491a7275-d877-4f23-ad20-2d1586ee4504" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:857155d0-86d0-4cae-bfe2-6bb6226de71b" + "WESTUS2:20210213T020712Z:491a7275-d877-4f23-ad20-2d1586ee4504" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11829,16 +11218,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbb1500d-8c48-41a9-8db3-bcd10e963062" + "c766486c-d58e-4667-96ba-d7523c0e66e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11861,28 +11250,25 @@ "11832" ], "x-ms-request-id": [ - "10005da5-5a10-48ee-8933-00cf942f326d" + "935441db-10cf-45cb-ad16-0ccbad3dd001" ], "x-ms-correlation-request-id": [ - "10005da5-5a10-48ee-8933-00cf942f326d" + "935441db-10cf-45cb-ad16-0ccbad3dd001" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:10005da5-5a10-48ee-8933-00cf942f326d" + "WESTUS2:20210213T020713Z:935441db-10cf-45cb-ad16-0ccbad3dd001" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11895,16 +11281,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16a2e15e-6c66-4447-9cf5-e6a19a930973" + "ff901341-c7da-4d94-bcbe-76b8773cab73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11927,28 +11313,25 @@ "11831" ], "x-ms-request-id": [ - "c088d726-1214-4ec8-b61e-3c020a39f8aa" + "3d40ecc6-ab19-4f31-8f2a-e71d5fed44ec" ], "x-ms-correlation-request-id": [ - "c088d726-1214-4ec8-b61e-3c020a39f8aa" + "3d40ecc6-ab19-4f31-8f2a-e71d5fed44ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:c088d726-1214-4ec8-b61e-3c020a39f8aa" + "WESTUS2:20210213T020713Z:3d40ecc6-ab19-4f31-8f2a-e71d5fed44ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:12 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -11961,16 +11344,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e8bb9c6-fc39-4268-81a9-b649612f575e" + "ace09c23-7ecb-4385-8e95-733c66ecf9cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -11993,28 +11376,25 @@ "11830" ], "x-ms-request-id": [ - "12d860ff-7dab-4d4a-8327-62c6b49413ef" + "e35daeb0-b77c-4d08-bb27-20cd368ccfa0" ], "x-ms-correlation-request-id": [ - "12d860ff-7dab-4d4a-8327-62c6b49413ef" + "e35daeb0-b77c-4d08-bb27-20cd368ccfa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204141Z:12d860ff-7dab-4d4a-8327-62c6b49413ef" + "WESTUS2:20210213T020713Z:e35daeb0-b77c-4d08-bb27-20cd368ccfa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12027,16 +11407,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64aa587a-31e0-4cf4-bd47-ec7a49ad3162" + "0d36e3d6-d457-4837-aa6a-8e4a68346d82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12059,28 +11439,25 @@ "11829" ], "x-ms-request-id": [ - "94edd9f9-f605-4053-8ab0-cdfcce65b65b" + "e4a9c9a6-ecf6-4147-9d06-6e25583a62e5" ], "x-ms-correlation-request-id": [ - "94edd9f9-f605-4053-8ab0-cdfcce65b65b" + "e4a9c9a6-ecf6-4147-9d06-6e25583a62e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:94edd9f9-f605-4053-8ab0-cdfcce65b65b" + "WESTUS2:20210213T020713Z:e4a9c9a6-ecf6-4147-9d06-6e25583a62e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:41 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12093,16 +11470,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "602a2103-13aa-4c19-8f32-759eda87ea2c" + "9c8c5c65-4fe0-4b3b-b64e-19de156f90b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12125,28 +11502,25 @@ "11828" ], "x-ms-request-id": [ - "5cb2de9b-80ac-402e-bb66-e5fe6e9547e1" + "f7ed4820-021e-4316-9e75-9869c0433052" ], "x-ms-correlation-request-id": [ - "5cb2de9b-80ac-402e-bb66-e5fe6e9547e1" + "f7ed4820-021e-4316-9e75-9869c0433052" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:5cb2de9b-80ac-402e-bb66-e5fe6e9547e1" + "WESTUS2:20210213T020713Z:f7ed4820-021e-4316-9e75-9869c0433052" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12159,16 +11533,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17674485-35fa-47c2-a96b-7ef701c179e5" + "0b62d4c0-b088-428a-9265-44f340c1e24d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12191,28 +11565,25 @@ "11827" ], "x-ms-request-id": [ - "41a66bea-e23c-4b56-a44c-d1d4cc3f6188" + "d948ebe4-c517-40fd-bd45-4f5501adbe2b" ], "x-ms-correlation-request-id": [ - "41a66bea-e23c-4b56-a44c-d1d4cc3f6188" + "d948ebe4-c517-40fd-bd45-4f5501adbe2b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:41a66bea-e23c-4b56-a44c-d1d4cc3f6188" + "WESTUS2:20210213T020713Z:d948ebe4-c517-40fd-bd45-4f5501adbe2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12225,16 +11596,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba6cac54-44d5-4507-9703-a426eee16c24" + "7e950f1c-29fb-43a0-8341-cd5755f3d665" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12257,28 +11628,25 @@ "11826" ], "x-ms-request-id": [ - "0e4198a7-7d6a-4536-9a02-ec0bd11a8c77" + "260a338b-3b81-4855-9c71-2ecf41d55aa4" ], "x-ms-correlation-request-id": [ - "0e4198a7-7d6a-4536-9a02-ec0bd11a8c77" + "260a338b-3b81-4855-9c71-2ecf41d55aa4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:0e4198a7-7d6a-4536-9a02-ec0bd11a8c77" + "WESTUS2:20210213T020714Z:260a338b-3b81-4855-9c71-2ecf41d55aa4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12291,16 +11659,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "044e5658-7061-4044-b09b-9f54e517f0f5" + "fa1dd02c-ce1d-4864-bef4-3af4ea838bde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12323,28 +11691,25 @@ "11825" ], "x-ms-request-id": [ - "4605a0d4-03fd-4e62-aef4-be35d17b8c04" + "f94a408f-b677-4ad5-9b2f-c99be5e3022f" ], "x-ms-correlation-request-id": [ - "4605a0d4-03fd-4e62-aef4-be35d17b8c04" + "f94a408f-b677-4ad5-9b2f-c99be5e3022f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:4605a0d4-03fd-4e62-aef4-be35d17b8c04" + "WESTUS2:20210213T020714Z:f94a408f-b677-4ad5-9b2f-c99be5e3022f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:13 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12357,16 +11722,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee12ff2-eb10-44a2-8507-6c26e4bb8184" + "f0da65f7-a3d3-43ae-83d7-c98dbbb405e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12389,28 +11754,25 @@ "11824" ], "x-ms-request-id": [ - "5758b1c4-ede9-4e59-a755-1760f3bd6e95" + "653af1c2-c72e-486c-b0c5-494c1a7e3b1b" ], "x-ms-correlation-request-id": [ - "5758b1c4-ede9-4e59-a755-1760f3bd6e95" + "653af1c2-c72e-486c-b0c5-494c1a7e3b1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:5758b1c4-ede9-4e59-a755-1760f3bd6e95" + "WESTUS2:20210213T020714Z:653af1c2-c72e-486c-b0c5-494c1a7e3b1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12423,16 +11785,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26f00fd3-de0f-4ccd-9829-f69ac9909e19" + "d4d22695-5777-44e6-9ff7-5f74da3df7d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12455,28 +11817,25 @@ "11823" ], "x-ms-request-id": [ - "366cebb4-4035-4b74-b532-2619703e7a99" + "212aefc6-64c5-4403-b68f-cf9dad16399f" ], "x-ms-correlation-request-id": [ - "366cebb4-4035-4b74-b532-2619703e7a99" + "212aefc6-64c5-4403-b68f-cf9dad16399f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204142Z:366cebb4-4035-4b74-b532-2619703e7a99" + "WESTUS2:20210213T020714Z:212aefc6-64c5-4403-b68f-cf9dad16399f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12489,16 +11848,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9f2039c-0c7a-4284-80fe-dbb91233e524" + "cf1071b3-18c1-4f3d-ab79-d2f04a049f1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12521,28 +11880,25 @@ "11822" ], "x-ms-request-id": [ - "d8b2eb08-775c-47f6-9fef-53669fa0d634" + "20f18e98-8c71-4e46-92d4-cad7e1c29423" ], "x-ms-correlation-request-id": [ - "d8b2eb08-775c-47f6-9fef-53669fa0d634" + "20f18e98-8c71-4e46-92d4-cad7e1c29423" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204143Z:d8b2eb08-775c-47f6-9fef-53669fa0d634" + "WESTUS2:20210213T020714Z:20f18e98-8c71-4e46-92d4-cad7e1c29423" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:42 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12555,16 +11911,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "503c2410-4853-44c5-8915-0c32dad334c6" + "5ad8df22-be9c-4c0a-a97e-8b790575b988" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12587,28 +11943,25 @@ "11821" ], "x-ms-request-id": [ - "2f0e6e0e-ea3c-47da-b9a0-b67b6da7b27c" + "126b43b1-8caf-48b7-9642-114d69d4807a" ], "x-ms-correlation-request-id": [ - "2f0e6e0e-ea3c-47da-b9a0-b67b6da7b27c" + "126b43b1-8caf-48b7-9642-114d69d4807a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204143Z:2f0e6e0e-ea3c-47da-b9a0-b67b6da7b27c" + "WESTUS2:20210213T020714Z:126b43b1-8caf-48b7-9642-114d69d4807a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:43 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12621,16 +11974,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39e32ecb-20f3-4c04-9206-bf07a4a4c11c" + "ccd83b60-c8b2-4289-9354-06f359fd91af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12653,28 +12006,25 @@ "11820" ], "x-ms-request-id": [ - "3759de08-afc4-4ef3-86c6-1744061ea3e6" + "f20052dc-e6f7-48ea-9793-9add83769282" ], "x-ms-correlation-request-id": [ - "3759de08-afc4-4ef3-86c6-1744061ea3e6" + "f20052dc-e6f7-48ea-9793-9add83769282" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204143Z:3759de08-afc4-4ef3-86c6-1744061ea3e6" + "WESTUS2:20210213T020715Z:f20052dc-e6f7-48ea-9793-9add83769282" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:43 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12687,16 +12037,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98927fa2-0f28-4238-aaa3-c81989273c66" + "963e3ad5-3192-47f0-ae42-69c9f8d476c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12719,28 +12069,25 @@ "11819" ], "x-ms-request-id": [ - "e4a0c13c-843f-47d0-bc55-9689ff7d989e" + "fa30e281-a63a-43b4-9307-d31364175051" ], "x-ms-correlation-request-id": [ - "e4a0c13c-843f-47d0-bc55-9689ff7d989e" + "fa30e281-a63a-43b4-9307-d31364175051" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204143Z:e4a0c13c-843f-47d0-bc55-9689ff7d989e" + "WESTUS2:20210213T020715Z:fa30e281-a63a-43b4-9307-d31364175051" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:43 GMT" + "Sat, 13 Feb 2021 02:07:14 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12753,16 +12100,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a67b218f-6030-47a9-a3c4-112588637f29" + "f82ee77d-2345-4cac-a2f7-e0c7bdd39ca4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12785,28 +12132,25 @@ "11818" ], "x-ms-request-id": [ - "593ff3c6-5579-4fc7-b7c2-66f4cebd82dc" + "5e8de41d-ca59-49f6-badf-4c0dbb88b4e5" ], "x-ms-correlation-request-id": [ - "593ff3c6-5579-4fc7-b7c2-66f4cebd82dc" + "5e8de41d-ca59-49f6-badf-4c0dbb88b4e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204143Z:593ff3c6-5579-4fc7-b7c2-66f4cebd82dc" + "WESTUS2:20210213T020715Z:5e8de41d-ca59-49f6-badf-4c0dbb88b4e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:43 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12819,16 +12163,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdc5999e-f024-4cca-afe2-db8e020d57aa" + "90b8365e-9ffb-4ae0-a12f-bb226528d844" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12851,28 +12195,25 @@ "11817" ], "x-ms-request-id": [ - "bb89360b-66d0-4293-93f0-34165eda98bf" + "d33d9224-6a20-4266-a934-e9d80df002bb" ], "x-ms-correlation-request-id": [ - "bb89360b-66d0-4293-93f0-34165eda98bf" + "d33d9224-6a20-4266-a934-e9d80df002bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:bb89360b-66d0-4293-93f0-34165eda98bf" + "WESTUS2:20210213T020715Z:d33d9224-6a20-4266-a934-e9d80df002bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:43 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12885,16 +12226,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d848f45c-0c55-41a2-b1e7-4452659747d5" + "c05962cd-116e-4bea-9cee-f79b891f735b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12917,28 +12258,25 @@ "11816" ], "x-ms-request-id": [ - "208bb196-2631-423c-bc54-4e54921bd6c3" + "4b02ea08-3acb-42be-a8f0-9cafe6d0d917" ], "x-ms-correlation-request-id": [ - "208bb196-2631-423c-bc54-4e54921bd6c3" + "4b02ea08-3acb-42be-a8f0-9cafe6d0d917" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:208bb196-2631-423c-bc54-4e54921bd6c3" + "WESTUS2:20210213T020715Z:4b02ea08-3acb-42be-a8f0-9cafe6d0d917" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -12951,16 +12289,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f492237d-79d9-4eb1-9725-a9ee1be5ea01" + "b99c205d-ee8c-4924-b30a-05a58426ad82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -12983,28 +12321,25 @@ "11815" ], "x-ms-request-id": [ - "523430e1-f03d-42fc-8a5f-ea699b8842b8" + "25f9a496-bac0-498b-acbc-deb003a11125" ], "x-ms-correlation-request-id": [ - "523430e1-f03d-42fc-8a5f-ea699b8842b8" + "25f9a496-bac0-498b-acbc-deb003a11125" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:523430e1-f03d-42fc-8a5f-ea699b8842b8" + "WESTUS2:20210213T020715Z:25f9a496-bac0-498b-acbc-deb003a11125" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13017,16 +12352,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55c4ece3-37b7-4ee1-a9ee-66399ea44cc8" + "0428779e-782d-4a2e-ac13-75ea762b1972" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13049,28 +12384,25 @@ "11814" ], "x-ms-request-id": [ - "178e9901-c738-49de-ba79-9743163ee7fc" + "9fed5a87-10b0-45b1-8a05-48d791161bbd" ], "x-ms-correlation-request-id": [ - "178e9901-c738-49de-ba79-9743163ee7fc" + "9fed5a87-10b0-45b1-8a05-48d791161bbd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:178e9901-c738-49de-ba79-9743163ee7fc" + "WESTUS2:20210213T020716Z:9fed5a87-10b0-45b1-8a05-48d791161bbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13083,16 +12415,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d50d6e5-f310-42b4-a38d-58eb593739e0" + "df8068b5-b100-4a2b-b56f-e721cb9a2eb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13115,28 +12447,25 @@ "11813" ], "x-ms-request-id": [ - "28f99e6e-e5ad-4a59-9f2e-03070fb283df" + "c970a6f0-9045-405d-9721-29e4edcf2f80" ], "x-ms-correlation-request-id": [ - "28f99e6e-e5ad-4a59-9f2e-03070fb283df" + "c970a6f0-9045-405d-9721-29e4edcf2f80" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:28f99e6e-e5ad-4a59-9f2e-03070fb283df" + "WESTUS2:20210213T020716Z:c970a6f0-9045-405d-9721-29e4edcf2f80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:15 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13149,16 +12478,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62a41c09-48e4-4da3-9422-a0f46bdc1f65" + "8fc6f822-98a8-485a-80db-911b162140db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13181,28 +12510,25 @@ "11812" ], "x-ms-request-id": [ - "e6d74215-1d1f-4fed-87c1-14fd95f1078e" + "84a9153c-ccb0-446f-9249-7bcf1c51a6a8" ], "x-ms-correlation-request-id": [ - "e6d74215-1d1f-4fed-87c1-14fd95f1078e" + "84a9153c-ccb0-446f-9249-7bcf1c51a6a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:e6d74215-1d1f-4fed-87c1-14fd95f1078e" + "WESTUS2:20210213T020716Z:84a9153c-ccb0-446f-9249-7bcf1c51a6a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13215,16 +12541,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81b8cb1d-c9b3-4cb5-a527-dc22b0c6343b" + "dc433935-5971-40c8-ba0e-78dcac707a00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13247,28 +12573,25 @@ "11811" ], "x-ms-request-id": [ - "00bd4048-159b-48e8-acce-86e64bdd6582" + "08b3b925-3372-4fde-b280-9b3b0e52f32d" ], "x-ms-correlation-request-id": [ - "00bd4048-159b-48e8-acce-86e64bdd6582" + "08b3b925-3372-4fde-b280-9b3b0e52f32d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204144Z:00bd4048-159b-48e8-acce-86e64bdd6582" + "WESTUS2:20210213T020716Z:08b3b925-3372-4fde-b280-9b3b0e52f32d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13281,16 +12604,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b73b81c6-ebd7-400e-aba2-aa44f4390075" + "c0817470-02f9-43d8-b452-2cd362c41460" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13313,28 +12636,25 @@ "11810" ], "x-ms-request-id": [ - "ea9a6572-a571-427e-bcee-33a8fac0078f" + "1b6c1af6-b9a9-4626-893d-5df30f17c281" ], "x-ms-correlation-request-id": [ - "ea9a6572-a571-427e-bcee-33a8fac0078f" + "1b6c1af6-b9a9-4626-893d-5df30f17c281" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:ea9a6572-a571-427e-bcee-33a8fac0078f" + "WESTUS2:20210213T020716Z:1b6c1af6-b9a9-4626-893d-5df30f17c281" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:44 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13347,16 +12667,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05ca241a-400d-450d-a920-bae7fffc8df5" + "1a7a3fbd-02a8-48ff-bdf4-ea71f97a4347" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13379,28 +12699,25 @@ "11809" ], "x-ms-request-id": [ - "94fde343-565b-4d60-ac24-64ca6ecc83c8" + "d8bfb759-93a3-4e39-9463-289e838bb254" ], "x-ms-correlation-request-id": [ - "94fde343-565b-4d60-ac24-64ca6ecc83c8" + "d8bfb759-93a3-4e39-9463-289e838bb254" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:94fde343-565b-4d60-ac24-64ca6ecc83c8" + "WESTUS2:20210213T020716Z:d8bfb759-93a3-4e39-9463-289e838bb254" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13413,16 +12730,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ff3419-97ad-44d4-9650-0a7095aa29d6" + "42041aa5-98e9-43bf-be0c-d368d9e1447b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13445,28 +12762,25 @@ "11808" ], "x-ms-request-id": [ - "6f7d7e00-2d3a-461a-8898-a2e52a234b93" + "0c2d74c7-d19c-4479-a3e3-90fba414e417" ], "x-ms-correlation-request-id": [ - "6f7d7e00-2d3a-461a-8898-a2e52a234b93" + "0c2d74c7-d19c-4479-a3e3-90fba414e417" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:6f7d7e00-2d3a-461a-8898-a2e52a234b93" + "WESTUS2:20210213T020717Z:0c2d74c7-d19c-4479-a3e3-90fba414e417" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13479,16 +12793,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d08b4b5f-d5db-49ad-b347-d1a8bf01c9c0" + "773edc79-0b47-4b8a-a1e7-2844bddc0b55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13511,28 +12825,25 @@ "11807" ], "x-ms-request-id": [ - "54451dd2-8bea-4750-8599-86004ef43006" + "a3a673e9-8c4c-4d89-b106-6027b0806b74" ], "x-ms-correlation-request-id": [ - "54451dd2-8bea-4750-8599-86004ef43006" + "a3a673e9-8c4c-4d89-b106-6027b0806b74" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:54451dd2-8bea-4750-8599-86004ef43006" + "WESTUS2:20210213T020717Z:a3a673e9-8c4c-4d89-b106-6027b0806b74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:16 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13545,16 +12856,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0c298c9-7379-4bd6-941c-d1108b9f126c" + "49a8dcbb-ccd1-437e-b2e4-56907b7a4c6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13577,28 +12888,25 @@ "11806" ], "x-ms-request-id": [ - "e0f23149-1130-421c-8f76-1c8024e62700" + "8d2a97f1-8b88-4b37-9ffa-923a4cee9a38" ], "x-ms-correlation-request-id": [ - "e0f23149-1130-421c-8f76-1c8024e62700" + "8d2a97f1-8b88-4b37-9ffa-923a4cee9a38" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:e0f23149-1130-421c-8f76-1c8024e62700" + "WESTUS2:20210213T020717Z:8d2a97f1-8b88-4b37-9ffa-923a4cee9a38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13611,16 +12919,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6123c236-def0-4f36-9ec4-d6e3d8b134bc" + "f0d94e38-2381-4433-9667-21e651375fae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13643,28 +12951,25 @@ "11805" ], "x-ms-request-id": [ - "3239f6ba-0992-44c9-b742-195ff130a112" + "2c07fbe1-76c9-4332-b043-62c01e971079" ], "x-ms-correlation-request-id": [ - "3239f6ba-0992-44c9-b742-195ff130a112" + "2c07fbe1-76c9-4332-b043-62c01e971079" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:3239f6ba-0992-44c9-b742-195ff130a112" + "WESTUS2:20210213T020717Z:2c07fbe1-76c9-4332-b043-62c01e971079" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13677,16 +12982,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9466a23-3d35-4245-a6d3-233ce7cdf1b3" + "4a6b79ce-af00-4a2a-894e-711969d5b1be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13709,28 +13014,25 @@ "11804" ], "x-ms-request-id": [ - "1db5f4e4-4798-4a55-8da5-a668f4fe5a42" + "f9d2a3bf-4ce8-4768-831b-6cb6f2a1efb3" ], "x-ms-correlation-request-id": [ - "1db5f4e4-4798-4a55-8da5-a668f4fe5a42" + "f9d2a3bf-4ce8-4768-831b-6cb6f2a1efb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204145Z:1db5f4e4-4798-4a55-8da5-a668f4fe5a42" + "WESTUS2:20210213T020717Z:f9d2a3bf-4ce8-4768-831b-6cb6f2a1efb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13743,16 +13045,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83a98f00-98b7-478d-a049-85a3b3c1ee83" + "4d422949-5416-46af-8cfc-d81cc0f8172f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13775,28 +13077,25 @@ "11803" ], "x-ms-request-id": [ - "d14883b7-e968-49dd-a0a5-7f4525b06957" + "59efbe5d-7e1f-4f80-8566-59d507d4711b" ], "x-ms-correlation-request-id": [ - "d14883b7-e968-49dd-a0a5-7f4525b06957" + "59efbe5d-7e1f-4f80-8566-59d507d4711b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:d14883b7-e968-49dd-a0a5-7f4525b06957" + "WESTUS2:20210213T020717Z:59efbe5d-7e1f-4f80-8566-59d507d4711b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13809,16 +13108,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2245df-52c0-422c-9e23-5ae2e21eb546" + "9eeed38b-52f2-4831-9319-cbdceb6dbc9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13841,28 +13140,25 @@ "11802" ], "x-ms-request-id": [ - "c76cc051-b277-41ef-9318-e610068c9109" + "bb5ad951-fcc8-4d19-bf7c-593cec7de5bf" ], "x-ms-correlation-request-id": [ - "c76cc051-b277-41ef-9318-e610068c9109" + "bb5ad951-fcc8-4d19-bf7c-593cec7de5bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:c76cc051-b277-41ef-9318-e610068c9109" + "WESTUS2:20210213T020718Z:bb5ad951-fcc8-4d19-bf7c-593cec7de5bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:45 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13875,16 +13171,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7933203-53bf-4706-91aa-b884346fad6b" + "5c161484-4f63-48af-9545-1cbaf62a7ecb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13907,28 +13203,25 @@ "11801" ], "x-ms-request-id": [ - "6d6783fe-1a8a-44d3-9a1b-03dc4677d5c9" + "acb55161-a6fe-4617-826f-5b58bb399cfd" ], "x-ms-correlation-request-id": [ - "6d6783fe-1a8a-44d3-9a1b-03dc4677d5c9" + "acb55161-a6fe-4617-826f-5b58bb399cfd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:6d6783fe-1a8a-44d3-9a1b-03dc4677d5c9" + "WESTUS2:20210213T020718Z:acb55161-a6fe-4617-826f-5b58bb399cfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -13941,16 +13234,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "041eca4f-c9e3-4efc-a284-c08fcb7df13b" + "5c72c973-d8ba-4ecd-9109-680739101c34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -13973,28 +13266,25 @@ "11800" ], "x-ms-request-id": [ - "b11f7597-eb75-4674-a294-72b4b6d1da36" + "6218435f-7031-43dd-a338-554abcb8d41e" ], "x-ms-correlation-request-id": [ - "b11f7597-eb75-4674-a294-72b4b6d1da36" + "6218435f-7031-43dd-a338-554abcb8d41e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:b11f7597-eb75-4674-a294-72b4b6d1da36" + "WESTUS2:20210213T020718Z:6218435f-7031-43dd-a338-554abcb8d41e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:17 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14007,16 +13297,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b053045-92bf-49d9-9151-529451270ff7" + "002848e1-3e01-4f55-bb06-a55a86ffc26b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14039,28 +13329,25 @@ "11799" ], "x-ms-request-id": [ - "5c63e0a4-b42f-4dbe-8fa1-cadf7bf44445" + "a4ddb39f-d577-486e-8be2-84ffbac0130b" ], "x-ms-correlation-request-id": [ - "5c63e0a4-b42f-4dbe-8fa1-cadf7bf44445" + "a4ddb39f-d577-486e-8be2-84ffbac0130b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:5c63e0a4-b42f-4dbe-8fa1-cadf7bf44445" + "WESTUS2:20210213T020718Z:a4ddb39f-d577-486e-8be2-84ffbac0130b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:18 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14073,16 +13360,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50fa7075-0856-4b1e-a26e-76b336efcef5" + "102e477a-9afb-4720-af0a-18462a126e62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14105,28 +13392,25 @@ "11798" ], "x-ms-request-id": [ - "a6790971-aba4-4d76-be63-af6a4399b37a" + "51f0c0d2-ff6a-4019-be08-db44b8b2ff14" ], "x-ms-correlation-request-id": [ - "a6790971-aba4-4d76-be63-af6a4399b37a" + "51f0c0d2-ff6a-4019-be08-db44b8b2ff14" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:a6790971-aba4-4d76-be63-af6a4399b37a" + "WESTUS2:20210213T020718Z:51f0c0d2-ff6a-4019-be08-db44b8b2ff14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:18 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14139,16 +13423,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9919733-03d6-4b1f-a375-00dc60e55caf" + "fb9842d6-5c7c-4d3c-8224-95e2cef12ea4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14171,28 +13455,25 @@ "11797" ], "x-ms-request-id": [ - "41d2bdf1-b19c-43a6-8c2b-72ab0f0ecdad" + "26eefcb1-ed4b-48a3-92d2-0aa493483ad3" ], "x-ms-correlation-request-id": [ - "41d2bdf1-b19c-43a6-8c2b-72ab0f0ecdad" + "26eefcb1-ed4b-48a3-92d2-0aa493483ad3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:41d2bdf1-b19c-43a6-8c2b-72ab0f0ecdad" + "WESTUS2:20210213T020718Z:26eefcb1-ed4b-48a3-92d2-0aa493483ad3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:18 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14205,16 +13486,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a4dc5a9-8801-4bcc-a87e-531027e36dbd" + "6ecd8cea-7b8f-426b-ad06-ae4a898837c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14237,28 +13518,25 @@ "11796" ], "x-ms-request-id": [ - "51abf764-8f85-4c6a-ae68-923a904c6b55" + "6a0f97ee-1681-4b1f-8b9a-bcce44955f77" ], "x-ms-correlation-request-id": [ - "51abf764-8f85-4c6a-ae68-923a904c6b55" + "6a0f97ee-1681-4b1f-8b9a-bcce44955f77" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204146Z:51abf764-8f85-4c6a-ae68-923a904c6b55" + "WESTUS2:20210213T020719Z:6a0f97ee-1681-4b1f-8b9a-bcce44955f77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:18 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14271,16 +13549,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29de1bd3-33f9-44c6-9617-20fb2399295c" + "191903fb-7dcc-4c29-a9eb-7943ba83712b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14303,28 +13581,25 @@ "11795" ], "x-ms-request-id": [ - "0cc2d8f6-feb5-452b-8fbf-c2cfabeeee32" + "d64e53bc-33f3-4f5f-815f-e60034032509" ], "x-ms-correlation-request-id": [ - "0cc2d8f6-feb5-452b-8fbf-c2cfabeeee32" + "d64e53bc-33f3-4f5f-815f-e60034032509" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:0cc2d8f6-feb5-452b-8fbf-c2cfabeeee32" + "WESTUS2:20210213T020719Z:d64e53bc-33f3-4f5f-815f-e60034032509" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:46 GMT" + "Sat, 13 Feb 2021 02:07:18 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14337,16 +13612,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb1dbbd-9b3c-4131-8036-b76ed0b40690" + "e4deb206-72aa-44b2-838b-ad361194e97e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14369,28 +13644,25 @@ "11794" ], "x-ms-request-id": [ - "013d6648-1b66-4240-963a-d42415eb66f6" + "12ddcbfa-da26-4f39-b3b9-28628876880c" ], "x-ms-correlation-request-id": [ - "013d6648-1b66-4240-963a-d42415eb66f6" + "12ddcbfa-da26-4f39-b3b9-28628876880c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:013d6648-1b66-4240-963a-d42415eb66f6" + "WESTUS2:20210213T020719Z:12ddcbfa-da26-4f39-b3b9-28628876880c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14403,16 +13675,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9857fa-faf5-43ff-a49f-2df7fa795dc0" + "0886b503-7183-408a-879a-146184541cc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14435,28 +13707,25 @@ "11793" ], "x-ms-request-id": [ - "c3a9d668-15f8-4372-a504-9e29bc89d175" + "6d072c08-b1a4-4dab-afc2-c6aa4aa93c1c" ], "x-ms-correlation-request-id": [ - "c3a9d668-15f8-4372-a504-9e29bc89d175" + "6d072c08-b1a4-4dab-afc2-c6aa4aa93c1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:c3a9d668-15f8-4372-a504-9e29bc89d175" + "WESTUS2:20210213T020719Z:6d072c08-b1a4-4dab-afc2-c6aa4aa93c1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14469,16 +13738,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a43bec8-7d0f-4c5b-a819-2fe1a5a62a05" + "8ac08dc4-116f-43cb-ad80-5556abd9e739" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14501,28 +13770,25 @@ "11792" ], "x-ms-request-id": [ - "360823c6-b738-4ec9-84b3-781561a8af36" + "41933321-b39c-4779-84cb-fadf9b002d10" ], "x-ms-correlation-request-id": [ - "360823c6-b738-4ec9-84b3-781561a8af36" + "41933321-b39c-4779-84cb-fadf9b002d10" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:360823c6-b738-4ec9-84b3-781561a8af36" + "WESTUS2:20210213T020719Z:41933321-b39c-4779-84cb-fadf9b002d10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14535,16 +13801,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2129fcb2-d0d3-40be-aac9-afe169057354" + "a2bad2f9-121f-4bab-9e1b-9f873cc6b0f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14567,28 +13833,25 @@ "11791" ], "x-ms-request-id": [ - "ce9afb71-e196-4f48-beca-f9d2022e9384" + "9a3e25a6-7aaa-4ec9-a098-6c9f4183b959" ], "x-ms-correlation-request-id": [ - "ce9afb71-e196-4f48-beca-f9d2022e9384" + "9a3e25a6-7aaa-4ec9-a098-6c9f4183b959" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:ce9afb71-e196-4f48-beca-f9d2022e9384" + "WESTUS2:20210213T020719Z:9a3e25a6-7aaa-4ec9-a098-6c9f4183b959" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14601,16 +13864,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53c2b7e0-68ce-4eb2-b1d1-90862c8ce515" + "05b03e88-3803-4ae1-8c2f-1ee6bfb4aba6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14633,28 +13896,25 @@ "11790" ], "x-ms-request-id": [ - "0879fc52-917d-4ec1-b957-30e04cefac21" + "365164b7-e5db-4e57-8fd2-d26ffead8e85" ], "x-ms-correlation-request-id": [ - "0879fc52-917d-4ec1-b957-30e04cefac21" + "365164b7-e5db-4e57-8fd2-d26ffead8e85" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:0879fc52-917d-4ec1-b957-30e04cefac21" + "WESTUS2:20210213T020720Z:365164b7-e5db-4e57-8fd2-d26ffead8e85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14667,16 +13927,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3a77b61-37b4-4f0a-b0ea-ba60575a479f" + "8439ac84-d8b9-4a0a-a7ae-95a6e476e563" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14699,28 +13959,25 @@ "11789" ], "x-ms-request-id": [ - "452c954c-a283-4cb4-bb90-2482d779afb7" + "2b0f0d82-448a-465a-82e2-3674fcb38953" ], "x-ms-correlation-request-id": [ - "452c954c-a283-4cb4-bb90-2482d779afb7" + "2b0f0d82-448a-465a-82e2-3674fcb38953" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204147Z:452c954c-a283-4cb4-bb90-2482d779afb7" + "WESTUS2:20210213T020720Z:2b0f0d82-448a-465a-82e2-3674fcb38953" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:19 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14733,16 +13990,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff9c80ca-0c54-4a64-8790-a192c0dcd3a6" + "0107f68a-de1e-4997-95e5-136d836f4060" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14765,28 +14022,25 @@ "11788" ], "x-ms-request-id": [ - "29bbdb80-4f01-4f65-8f5e-82d0f920cf8a" + "2d82fca0-e5f2-4973-9074-a72a506ea315" ], "x-ms-correlation-request-id": [ - "29bbdb80-4f01-4f65-8f5e-82d0f920cf8a" + "2d82fca0-e5f2-4973-9074-a72a506ea315" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:29bbdb80-4f01-4f65-8f5e-82d0f920cf8a" + "WESTUS2:20210213T020720Z:2d82fca0-e5f2-4973-9074-a72a506ea315" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:47 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14799,16 +14053,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a69ec461-3e51-4f80-acd7-52c007df0a76" + "4c9d46b5-7cba-4e12-aed5-7ad26237e34f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14831,28 +14085,25 @@ "11787" ], "x-ms-request-id": [ - "279d1b3b-47aa-4f70-b86b-08688722406a" + "036c47a8-4696-4f54-ac8d-12d8b9c2dece" ], "x-ms-correlation-request-id": [ - "279d1b3b-47aa-4f70-b86b-08688722406a" + "036c47a8-4696-4f54-ac8d-12d8b9c2dece" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:279d1b3b-47aa-4f70-b86b-08688722406a" + "WESTUS2:20210213T020720Z:036c47a8-4696-4f54-ac8d-12d8b9c2dece" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14865,16 +14116,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2df36ebc-341f-4ade-8cca-2a2553bd9d2f" + "2e5c49ec-2d8d-43cf-b8fa-b55562b934d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14897,28 +14148,25 @@ "11786" ], "x-ms-request-id": [ - "0e125c74-4d47-410e-b014-addfba4faefd" + "0f9f247d-3509-4fb7-94ea-d3238e585b92" ], "x-ms-correlation-request-id": [ - "0e125c74-4d47-410e-b014-addfba4faefd" + "0f9f247d-3509-4fb7-94ea-d3238e585b92" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:0e125c74-4d47-410e-b014-addfba4faefd" + "WESTUS2:20210213T020720Z:0f9f247d-3509-4fb7-94ea-d3238e585b92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14931,16 +14179,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbe9d450-985b-4c2d-9288-49d9f6fd0d3f" + "d41bac3f-6264-4198-a49d-a5051542f18f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -14963,28 +14211,25 @@ "11785" ], "x-ms-request-id": [ - "c5af9d63-6708-4f1b-b381-1687fbb771a2" + "43f553d8-a7ec-4af3-ad05-373a42c925c2" ], "x-ms-correlation-request-id": [ - "c5af9d63-6708-4f1b-b381-1687fbb771a2" + "43f553d8-a7ec-4af3-ad05-373a42c925c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:c5af9d63-6708-4f1b-b381-1687fbb771a2" + "WESTUS2:20210213T020721Z:43f553d8-a7ec-4af3-ad05-373a42c925c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -14997,16 +14242,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44c8ed0f-6f29-4786-bfdc-f5a495522cf0" + "2f297de5-1386-4d58-83bd-b93bde638c59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15029,28 +14274,25 @@ "11784" ], "x-ms-request-id": [ - "388a5fca-429c-4714-a286-d4a7a99515ed" + "d4de08bb-efaf-4d23-ba24-5cc03a256b46" ], "x-ms-correlation-request-id": [ - "388a5fca-429c-4714-a286-d4a7a99515ed" + "d4de08bb-efaf-4d23-ba24-5cc03a256b46" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:388a5fca-429c-4714-a286-d4a7a99515ed" + "WESTUS2:20210213T020721Z:d4de08bb-efaf-4d23-ba24-5cc03a256b46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15063,16 +14305,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2f2c0e4-646f-4042-8e5b-0f9e98f651ef" + "e4eec5a2-b955-4e7c-b5d5-8225f73f6b79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15095,28 +14337,25 @@ "11783" ], "x-ms-request-id": [ - "e0c1168e-6c1b-4e3f-b72b-524069c64f70" + "e6fdd358-02d4-4897-85cf-aa6470411618" ], "x-ms-correlation-request-id": [ - "e0c1168e-6c1b-4e3f-b72b-524069c64f70" + "e6fdd358-02d4-4897-85cf-aa6470411618" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:e0c1168e-6c1b-4e3f-b72b-524069c64f70" + "WESTUS2:20210213T020721Z:e6fdd358-02d4-4897-85cf-aa6470411618" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:20 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15129,16 +14368,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e3797b-6466-4b2a-b007-6d07bede527e" + "6b2edb98-237e-4112-9201-b298d1e50ff5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15161,28 +14400,25 @@ "11782" ], "x-ms-request-id": [ - "f9a6a5d2-4778-4637-9ed0-fffd9be077c2" + "ddea52e8-9085-4565-a44e-02b09986a28a" ], "x-ms-correlation-request-id": [ - "f9a6a5d2-4778-4637-9ed0-fffd9be077c2" + "ddea52e8-9085-4565-a44e-02b09986a28a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204148Z:f9a6a5d2-4778-4637-9ed0-fffd9be077c2" + "WESTUS2:20210213T020721Z:ddea52e8-9085-4565-a44e-02b09986a28a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15195,16 +14431,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0513de80-660d-46be-a214-0c5552665d03" + "d89006d0-6dfb-4bb8-a969-c0310d42721a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15227,28 +14463,25 @@ "11781" ], "x-ms-request-id": [ - "a37fb3f1-750b-4fcb-b372-b2d196cd6485" + "f28302f4-53f4-4679-959a-372bd247560c" ], "x-ms-correlation-request-id": [ - "a37fb3f1-750b-4fcb-b372-b2d196cd6485" + "f28302f4-53f4-4679-959a-372bd247560c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:a37fb3f1-750b-4fcb-b372-b2d196cd6485" + "WESTUS2:20210213T020721Z:f28302f4-53f4-4679-959a-372bd247560c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:48 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15261,16 +14494,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c3c7fee-d1d8-40ac-8493-4734ace32827" + "cf540d3a-3d3c-46ed-81cb-6b1604d9ee61" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15293,28 +14526,25 @@ "11780" ], "x-ms-request-id": [ - "3c7738db-f9ca-4e1a-b6b1-18efb4a4bb88" + "443bca63-eee9-4462-91a4-6dbe070127a2" ], "x-ms-correlation-request-id": [ - "3c7738db-f9ca-4e1a-b6b1-18efb4a4bb88" + "443bca63-eee9-4462-91a4-6dbe070127a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:3c7738db-f9ca-4e1a-b6b1-18efb4a4bb88" + "WESTUS2:20210213T020721Z:443bca63-eee9-4462-91a4-6dbe070127a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15327,16 +14557,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d201a5-5b63-42a0-a314-4b82ba990cab" + "0358a42c-ada0-42c9-9f16-90e3f68ec7d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15359,28 +14589,25 @@ "11779" ], "x-ms-request-id": [ - "6ae965ec-8d64-4f83-bf26-68ea050c29dd" + "f1059523-6b96-4d88-b31c-7057bda503a3" ], "x-ms-correlation-request-id": [ - "6ae965ec-8d64-4f83-bf26-68ea050c29dd" + "f1059523-6b96-4d88-b31c-7057bda503a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:6ae965ec-8d64-4f83-bf26-68ea050c29dd" + "WESTUS2:20210213T020722Z:f1059523-6b96-4d88-b31c-7057bda503a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15393,16 +14620,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b425a11b-1e29-4af2-a6da-42e227dfedec" + "978e0028-ae6d-435f-96e9-c2577ff37585" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15425,28 +14652,25 @@ "11778" ], "x-ms-request-id": [ - "62384cfd-b9dc-473d-8137-2defce838117" + "7e309e05-a071-47fa-b789-926a3ed62cf7" ], "x-ms-correlation-request-id": [ - "62384cfd-b9dc-473d-8137-2defce838117" + "7e309e05-a071-47fa-b789-926a3ed62cf7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:62384cfd-b9dc-473d-8137-2defce838117" + "WESTUS2:20210213T020722Z:7e309e05-a071-47fa-b789-926a3ed62cf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15459,16 +14683,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48c2c6b-138b-49d7-8e2b-db042434cae5" + "b16400ae-a0f5-4bae-9728-ab068baf8dcc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15491,28 +14715,25 @@ "11777" ], "x-ms-request-id": [ - "17099c1b-4b67-4b19-9178-7ef0c45608da" + "bdff8a0f-0428-478f-a843-3fcbd39fd282" ], "x-ms-correlation-request-id": [ - "17099c1b-4b67-4b19-9178-7ef0c45608da" + "bdff8a0f-0428-478f-a843-3fcbd39fd282" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:17099c1b-4b67-4b19-9178-7ef0c45608da" + "WESTUS2:20210213T020722Z:bdff8a0f-0428-478f-a843-3fcbd39fd282" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:21 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15525,16 +14746,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9191b3ed-b237-49ef-9e8f-ce6918d8df79" + "77bdb7ad-371d-445b-a181-2ba5b91c9c35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15557,28 +14778,25 @@ "11776" ], "x-ms-request-id": [ - "008385a2-f39e-4be1-ae07-65fb79cecfd7" + "ec35d629-cf24-45d5-a3ee-4d673ee1e46b" ], "x-ms-correlation-request-id": [ - "008385a2-f39e-4be1-ae07-65fb79cecfd7" + "ec35d629-cf24-45d5-a3ee-4d673ee1e46b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:008385a2-f39e-4be1-ae07-65fb79cecfd7" + "WESTUS2:20210213T020722Z:ec35d629-cf24-45d5-a3ee-4d673ee1e46b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15591,16 +14809,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15e01656-d287-4e7b-bd05-2730ffbb4e1d" + "219b5711-06b6-4db9-a8d9-3bd279e27ef0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15623,28 +14841,25 @@ "11775" ], "x-ms-request-id": [ - "ab1507bd-f27e-4c32-b347-116c5eb3c877" + "3f68b384-2f47-41de-aa95-98ba3e7e4897" ], "x-ms-correlation-request-id": [ - "ab1507bd-f27e-4c32-b347-116c5eb3c877" + "3f68b384-2f47-41de-aa95-98ba3e7e4897" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204149Z:ab1507bd-f27e-4c32-b347-116c5eb3c877" + "WESTUS2:20210213T020722Z:3f68b384-2f47-41de-aa95-98ba3e7e4897" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15657,16 +14872,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0165f32-4474-4756-a487-2c27a78c6d46" + "616f3132-80cf-458a-85f8-c1e79cb10cf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15689,28 +14904,25 @@ "11774" ], "x-ms-request-id": [ - "0267c4bd-5393-404d-b160-67d6e1e2f3b0" + "a92ea0d0-9f97-465c-8d07-0e5e622b1f5d" ], "x-ms-correlation-request-id": [ - "0267c4bd-5393-404d-b160-67d6e1e2f3b0" + "a92ea0d0-9f97-465c-8d07-0e5e622b1f5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:0267c4bd-5393-404d-b160-67d6e1e2f3b0" + "WESTUS2:20210213T020722Z:a92ea0d0-9f97-465c-8d07-0e5e622b1f5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:49 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15723,16 +14935,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82de4938-a910-4da0-a467-6d1b8b363af6" + "86a47076-3d97-48bf-9ef0-45195b8769ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15755,28 +14967,25 @@ "11773" ], "x-ms-request-id": [ - "0b7ed5a4-9028-4472-a9c4-2e116ed752ca" + "3ac3e337-acfd-4aac-9812-7f5c991dc7d1" ], "x-ms-correlation-request-id": [ - "0b7ed5a4-9028-4472-a9c4-2e116ed752ca" + "3ac3e337-acfd-4aac-9812-7f5c991dc7d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:0b7ed5a4-9028-4472-a9c4-2e116ed752ca" + "WESTUS2:20210213T020723Z:3ac3e337-acfd-4aac-9812-7f5c991dc7d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15789,16 +14998,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ecb77f7-6e95-4340-8533-335af9a31ea9" + "575ea08b-905e-4370-b2ce-cb3128a317a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15821,28 +15030,25 @@ "11772" ], "x-ms-request-id": [ - "422d7c89-e538-4d19-b866-82ee0f752910" + "6553a6c8-2ba3-415f-8cee-8bf2057c9164" ], "x-ms-correlation-request-id": [ - "422d7c89-e538-4d19-b866-82ee0f752910" + "6553a6c8-2ba3-415f-8cee-8bf2057c9164" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:422d7c89-e538-4d19-b866-82ee0f752910" + "WESTUS2:20210213T020723Z:6553a6c8-2ba3-415f-8cee-8bf2057c9164" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15855,16 +15061,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "683e3cf0-80b0-4162-98ea-9baad7074363" + "1c7fd914-2b1d-430d-9103-50d76579cb13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15887,28 +15093,25 @@ "11771" ], "x-ms-request-id": [ - "eb2e2ff6-42c4-4bf6-a1e5-a87feb55cc51" + "b4a97beb-9f23-4902-adda-dd7e47479a84" ], "x-ms-correlation-request-id": [ - "eb2e2ff6-42c4-4bf6-a1e5-a87feb55cc51" + "b4a97beb-9f23-4902-adda-dd7e47479a84" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:eb2e2ff6-42c4-4bf6-a1e5-a87feb55cc51" + "WESTUS2:20210213T020723Z:b4a97beb-9f23-4902-adda-dd7e47479a84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:22 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15921,16 +15124,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ea04a29-25b9-4028-931e-83130d58acd8" + "44663a98-fbf2-4cb6-8116-8f30753419bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -15953,28 +15156,25 @@ "11770" ], "x-ms-request-id": [ - "1c6f94fb-323f-4e0c-935a-edc10ad876bd" + "1e745586-9921-400d-8d9d-7dd2b2e99b51" ], "x-ms-correlation-request-id": [ - "1c6f94fb-323f-4e0c-935a-edc10ad876bd" + "1e745586-9921-400d-8d9d-7dd2b2e99b51" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:1c6f94fb-323f-4e0c-935a-edc10ad876bd" + "WESTUS2:20210213T020723Z:1e745586-9921-400d-8d9d-7dd2b2e99b51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -15987,16 +15187,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f21e9fee-f0c0-4c26-a156-7b736585433a" + "46a66194-e091-4635-93ed-9bdda72f855b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16019,28 +15219,25 @@ "11769" ], "x-ms-request-id": [ - "89dc28e6-4bda-496e-bbe5-95d323206623" + "5f0228c5-3d61-4bb9-a805-9e02222ed737" ], "x-ms-correlation-request-id": [ - "89dc28e6-4bda-496e-bbe5-95d323206623" + "5f0228c5-3d61-4bb9-a805-9e02222ed737" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:89dc28e6-4bda-496e-bbe5-95d323206623" + "WESTUS2:20210213T020723Z:5f0228c5-3d61-4bb9-a805-9e02222ed737" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16053,16 +15250,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1906b2fa-15c7-48c1-b8da-762ee2d3d9e2" + "4266828a-4cd4-4a13-85d7-5ec976c84fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16085,28 +15282,25 @@ "11768" ], "x-ms-request-id": [ - "4a564eea-b598-472f-a2c3-134ba1c1a073" + "1693d35a-7051-4dbe-8340-a53202cb1e90" ], "x-ms-correlation-request-id": [ - "4a564eea-b598-472f-a2c3-134ba1c1a073" + "1693d35a-7051-4dbe-8340-a53202cb1e90" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204150Z:4a564eea-b598-472f-a2c3-134ba1c1a073" + "WESTUS2:20210213T020723Z:1693d35a-7051-4dbe-8340-a53202cb1e90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16119,16 +15313,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "728722fe-11ec-459f-aa41-9817d64c90eb" + "adaf1561-8fd0-4a6f-8cce-4a3b6f935a1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16151,28 +15345,25 @@ "11767" ], "x-ms-request-id": [ - "ab52fc1b-e1d6-466e-8346-a2c7f4db5cb0" + "b82ea4e2-8071-47fa-b463-052fe54d5c0e" ], "x-ms-correlation-request-id": [ - "ab52fc1b-e1d6-466e-8346-a2c7f4db5cb0" + "b82ea4e2-8071-47fa-b463-052fe54d5c0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:ab52fc1b-e1d6-466e-8346-a2c7f4db5cb0" + "WESTUS2:20210213T020724Z:b82ea4e2-8071-47fa-b463-052fe54d5c0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16185,16 +15376,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f80c4d-ad00-4abb-a4d8-26b71e5389ae" + "f33adf30-192a-40e8-a13c-3b57483059b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16217,28 +15408,25 @@ "11766" ], "x-ms-request-id": [ - "c61515ef-41d6-46e9-a814-68d1ea96abaf" + "22ddd2db-6683-429c-bfe7-5053d99b5b62" ], "x-ms-correlation-request-id": [ - "c61515ef-41d6-46e9-a814-68d1ea96abaf" + "22ddd2db-6683-429c-bfe7-5053d99b5b62" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:c61515ef-41d6-46e9-a814-68d1ea96abaf" + "WESTUS2:20210213T020724Z:22ddd2db-6683-429c-bfe7-5053d99b5b62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:50 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16251,16 +15439,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c42dc382-3076-4491-b5c8-f7824745404f" + "1be30fa8-bada-43e6-9729-a9987166da99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16283,28 +15471,25 @@ "11765" ], "x-ms-request-id": [ - "48beb2ec-7eb2-4408-bc8f-f0c6624d399c" + "5d8cc692-f52a-498b-ac1e-9e5f09bb7f0d" ], "x-ms-correlation-request-id": [ - "48beb2ec-7eb2-4408-bc8f-f0c6624d399c" + "5d8cc692-f52a-498b-ac1e-9e5f09bb7f0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:48beb2ec-7eb2-4408-bc8f-f0c6624d399c" + "WESTUS2:20210213T020724Z:5d8cc692-f52a-498b-ac1e-9e5f09bb7f0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:23 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16317,16 +15502,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e337b09e-fc53-4075-9ec2-4a6adb7c4210" + "7fc525b3-821b-41db-b257-3557a5874260" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16349,28 +15534,25 @@ "11764" ], "x-ms-request-id": [ - "e4fd3963-7d64-487e-887a-14a55e1e5cef" + "bb6aa170-5112-485a-bd2f-2c44030fe8e9" ], "x-ms-correlation-request-id": [ - "e4fd3963-7d64-487e-887a-14a55e1e5cef" + "bb6aa170-5112-485a-bd2f-2c44030fe8e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:e4fd3963-7d64-487e-887a-14a55e1e5cef" + "WESTUS2:20210213T020724Z:bb6aa170-5112-485a-bd2f-2c44030fe8e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16383,16 +15565,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f95b5312-1fed-4ad2-82c8-9e05e0f38a95" + "b8990bc4-97c3-44a7-85d9-e79e5960555f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16415,28 +15597,25 @@ "11763" ], "x-ms-request-id": [ - "50ce3f33-2a82-4470-b1e1-409ff6c2fcdb" + "317e1781-6d61-46bd-aefc-c79433939cfc" ], "x-ms-correlation-request-id": [ - "50ce3f33-2a82-4470-b1e1-409ff6c2fcdb" + "317e1781-6d61-46bd-aefc-c79433939cfc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:50ce3f33-2a82-4470-b1e1-409ff6c2fcdb" + "WESTUS2:20210213T020724Z:317e1781-6d61-46bd-aefc-c79433939cfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16449,16 +15628,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ecf51fb-0155-47d8-bded-45d6d0bc0b61" + "be104d6d-198b-4cda-ab9b-8ccbfaf1b08e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16481,28 +15660,25 @@ "11762" ], "x-ms-request-id": [ - "994966e9-d285-4ae6-868a-2367312772db" + "33c688b4-72c3-4f33-894f-7c69898a45b4" ], "x-ms-correlation-request-id": [ - "994966e9-d285-4ae6-868a-2367312772db" + "33c688b4-72c3-4f33-894f-7c69898a45b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:994966e9-d285-4ae6-868a-2367312772db" + "WESTUS2:20210213T020724Z:33c688b4-72c3-4f33-894f-7c69898a45b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16515,16 +15691,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c47a5055-fc57-4629-b205-ba8bf3e75c46" + "f78d2f89-0ff7-4224-b768-9d7719c7098d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16547,28 +15723,25 @@ "11761" ], "x-ms-request-id": [ - "d45c278d-64fd-4eb5-94ae-02d97acc96c6" + "0af8a7b8-d58a-454a-ad19-c9edd63bceff" ], "x-ms-correlation-request-id": [ - "d45c278d-64fd-4eb5-94ae-02d97acc96c6" + "0af8a7b8-d58a-454a-ad19-c9edd63bceff" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204151Z:d45c278d-64fd-4eb5-94ae-02d97acc96c6" + "WESTUS2:20210213T020725Z:0af8a7b8-d58a-454a-ad19-c9edd63bceff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16581,16 +15754,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea3cb835-a519-49ac-a57f-0bc718dcf75f" + "6faa6e5e-4b12-4250-8d5f-25a4ca81ddad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16613,28 +15786,25 @@ "11760" ], "x-ms-request-id": [ - "cccea667-e74d-48e6-bc90-dc5395a6754e" + "014f0cbc-561e-47dc-9576-4ee53a666094" ], "x-ms-correlation-request-id": [ - "cccea667-e74d-48e6-bc90-dc5395a6754e" + "014f0cbc-561e-47dc-9576-4ee53a666094" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:cccea667-e74d-48e6-bc90-dc5395a6754e" + "WESTUS2:20210213T020725Z:014f0cbc-561e-47dc-9576-4ee53a666094" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:51 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16647,16 +15817,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237112ee-363f-4e9c-9e6d-cf62698286b3" + "428d04ed-87cc-4e40-948f-58f855e2c75c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16679,28 +15849,25 @@ "11759" ], "x-ms-request-id": [ - "a589538f-c81f-4a17-91a0-18501637bfa3" + "010eaba1-18a8-4faf-b4fc-3be097e012a0" ], "x-ms-correlation-request-id": [ - "a589538f-c81f-4a17-91a0-18501637bfa3" + "010eaba1-18a8-4faf-b4fc-3be097e012a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:a589538f-c81f-4a17-91a0-18501637bfa3" + "WESTUS2:20210213T020725Z:010eaba1-18a8-4faf-b4fc-3be097e012a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:24 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16713,16 +15880,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a66bb6-b2b2-46f9-8231-0a3bffd41a45" + "91fe6a28-f5dd-430e-81ba-3b49544a7280" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16745,28 +15912,25 @@ "11758" ], "x-ms-request-id": [ - "842f02ca-43cc-457e-b9eb-544223a03546" + "3464ce63-f0d2-404c-b724-0bf0c1dfac3a" ], "x-ms-correlation-request-id": [ - "842f02ca-43cc-457e-b9eb-544223a03546" + "3464ce63-f0d2-404c-b724-0bf0c1dfac3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:842f02ca-43cc-457e-b9eb-544223a03546" + "WESTUS2:20210213T020725Z:3464ce63-f0d2-404c-b724-0bf0c1dfac3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16779,16 +15943,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83aca52d-3d6e-4ddd-9051-9422f135e9a3" + "cd868911-116d-4fca-8877-fdb06390538f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16811,28 +15975,25 @@ "11757" ], "x-ms-request-id": [ - "1aa17633-d5cc-4eaf-ae02-b5c16d0c3d1a" + "7a216b3d-0193-42db-93a0-e69bddd47218" ], "x-ms-correlation-request-id": [ - "1aa17633-d5cc-4eaf-ae02-b5c16d0c3d1a" + "7a216b3d-0193-42db-93a0-e69bddd47218" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:1aa17633-d5cc-4eaf-ae02-b5c16d0c3d1a" + "WESTUS2:20210213T020725Z:7a216b3d-0193-42db-93a0-e69bddd47218" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16845,16 +16006,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78378e49-02ee-4ba6-8304-d98c8c8b3ad5" + "d408301e-1780-4a13-ad60-9623836bf171" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16877,28 +16038,25 @@ "11756" ], "x-ms-request-id": [ - "f9fa3211-a3c0-45ad-8989-d074edbbed2b" + "a23f980b-60c4-4d00-8e88-d78f405574d2" ], "x-ms-correlation-request-id": [ - "f9fa3211-a3c0-45ad-8989-d074edbbed2b" + "a23f980b-60c4-4d00-8e88-d78f405574d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:f9fa3211-a3c0-45ad-8989-d074edbbed2b" + "WESTUS2:20210213T020725Z:a23f980b-60c4-4d00-8e88-d78f405574d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16911,16 +16069,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b7b006a-3387-43e7-b2ab-872f6d93c2b4" + "75187b40-5ea0-46cd-ab51-58c5eb1fe831" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -16943,28 +16101,25 @@ "11755" ], "x-ms-request-id": [ - "6afba862-d613-4bc7-9728-621a57883d48" + "c35078f9-a9ad-4db5-95b4-9fcba38333d7" ], "x-ms-correlation-request-id": [ - "6afba862-d613-4bc7-9728-621a57883d48" + "c35078f9-a9ad-4db5-95b4-9fcba38333d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:6afba862-d613-4bc7-9728-621a57883d48" + "WESTUS2:20210213T020726Z:c35078f9-a9ad-4db5-95b4-9fcba38333d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -16977,16 +16132,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a26292a0-fdab-4294-a404-f05f1431195c" + "2457e36f-efae-4466-8125-ad2e6b3b58a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17009,28 +16164,25 @@ "11754" ], "x-ms-request-id": [ - "95766c6d-9f60-4a90-9709-365e9d7197e8" + "7a1d7400-7893-4a80-9abf-1475df579fc6" ], "x-ms-correlation-request-id": [ - "95766c6d-9f60-4a90-9709-365e9d7197e8" + "7a1d7400-7893-4a80-9abf-1475df579fc6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204152Z:95766c6d-9f60-4a90-9709-365e9d7197e8" + "WESTUS2:20210213T020726Z:7a1d7400-7893-4a80-9abf-1475df579fc6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17043,16 +16195,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9b41af-d3b5-4333-88d1-5f36223c829e" + "31fdf42a-0339-4799-8e02-4f6eca16550d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17075,28 +16227,25 @@ "11753" ], "x-ms-request-id": [ - "7d5eef78-992c-44e0-a36b-6c4e4babe901" + "a57e36b8-d045-491f-bdeb-dd53a6f0129f" ], "x-ms-correlation-request-id": [ - "7d5eef78-992c-44e0-a36b-6c4e4babe901" + "a57e36b8-d045-491f-bdeb-dd53a6f0129f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:7d5eef78-992c-44e0-a36b-6c4e4babe901" + "WESTUS2:20210213T020726Z:a57e36b8-d045-491f-bdeb-dd53a6f0129f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:52 GMT" + "Sat, 13 Feb 2021 02:07:25 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17109,16 +16258,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8cd73f3-32c3-4285-8af0-b17ce86cfceb" + "e6ddf097-c74a-4585-b7d4-1b81401ddce7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17141,28 +16290,25 @@ "11752" ], "x-ms-request-id": [ - "eee3e87e-8a40-40e6-a0e9-6b48bf405a74" + "4186efec-bcb8-493b-9b76-108e553e422d" ], "x-ms-correlation-request-id": [ - "eee3e87e-8a40-40e6-a0e9-6b48bf405a74" + "4186efec-bcb8-493b-9b76-108e553e422d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:eee3e87e-8a40-40e6-a0e9-6b48bf405a74" + "WESTUS2:20210213T020726Z:4186efec-bcb8-493b-9b76-108e553e422d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:26 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17175,16 +16321,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "773debfc-7596-4114-8d4e-fd6e2f120099" + "fc10d0aa-07e9-422e-aedd-2e56a7bc07ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17207,28 +16353,25 @@ "11751" ], "x-ms-request-id": [ - "ffebf642-4e27-45a6-b4eb-9aaa00c3c734" + "b59de9be-08a8-4d1f-8e59-4fac817bb0d9" ], "x-ms-correlation-request-id": [ - "ffebf642-4e27-45a6-b4eb-9aaa00c3c734" + "b59de9be-08a8-4d1f-8e59-4fac817bb0d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:ffebf642-4e27-45a6-b4eb-9aaa00c3c734" + "WESTUS2:20210213T020726Z:b59de9be-08a8-4d1f-8e59-4fac817bb0d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:26 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17241,16 +16384,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3aa4abd-1839-40f6-94d1-1f556fb806cb" + "169a4adf-706f-41e0-aa31-16e372011db8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17273,28 +16416,25 @@ "11750" ], "x-ms-request-id": [ - "24bde80e-6196-4c58-8160-ea8540a638df" + "dd82944a-ecfd-47b9-b71b-62cf0dbe9fb7" ], "x-ms-correlation-request-id": [ - "24bde80e-6196-4c58-8160-ea8540a638df" + "dd82944a-ecfd-47b9-b71b-62cf0dbe9fb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:24bde80e-6196-4c58-8160-ea8540a638df" + "WESTUS2:20210213T020727Z:dd82944a-ecfd-47b9-b71b-62cf0dbe9fb7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:26 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17307,16 +16447,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77d45b54-3f5f-499e-988e-603994aae0bf" + "40aa124d-7b56-4b63-abb9-0af878ce46e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17339,28 +16479,25 @@ "11749" ], "x-ms-request-id": [ - "21c6a009-064c-4381-93f8-2bee175f8b3a" + "d036d25b-e299-4e9a-babc-bc07af4c4b9f" ], "x-ms-correlation-request-id": [ - "21c6a009-064c-4381-93f8-2bee175f8b3a" + "d036d25b-e299-4e9a-babc-bc07af4c4b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:21c6a009-064c-4381-93f8-2bee175f8b3a" + "WESTUS2:20210213T020727Z:d036d25b-e299-4e9a-babc-bc07af4c4b9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:26 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17373,16 +16510,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c79e07ef-22ec-4ea2-84bc-a31e09b6be14" + "edbb95de-57d0-4bc8-8ec9-14953d72d425" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17405,28 +16542,25 @@ "11748" ], "x-ms-request-id": [ - "66aa4e22-1dcb-4532-93cf-2dd9244963dd" + "bc63c348-e55b-4129-af69-29367b870772" ], "x-ms-correlation-request-id": [ - "66aa4e22-1dcb-4532-93cf-2dd9244963dd" + "bc63c348-e55b-4129-af69-29367b870772" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204153Z:66aa4e22-1dcb-4532-93cf-2dd9244963dd" + "WESTUS2:20210213T020727Z:bc63c348-e55b-4129-af69-29367b870772" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:26 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17439,16 +16573,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef098016-b688-4f04-a880-9b98b052e2b8" + "5eb6587d-762d-40fd-b231-c7ce8f91c0d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17471,28 +16605,25 @@ "11747" ], "x-ms-request-id": [ - "985870ca-51f8-43af-9914-589cf33260b6" + "3288b319-ba3c-4e25-8bcd-b577413e53f1" ], "x-ms-correlation-request-id": [ - "985870ca-51f8-43af-9914-589cf33260b6" + "3288b319-ba3c-4e25-8bcd-b577413e53f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:985870ca-51f8-43af-9914-589cf33260b6" + "WESTUS2:20210213T020727Z:3288b319-ba3c-4e25-8bcd-b577413e53f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:53 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17505,16 +16636,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cf4c305-f182-4325-a647-8f3cbcc456bf" + "0f9d941f-bb5a-4859-a76c-29b93b5fbe1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17537,28 +16668,25 @@ "11746" ], "x-ms-request-id": [ - "1fa3d52f-2318-4ee3-b09b-5b0206b7b47c" + "2dbd36c0-993c-405c-a41a-fc4b8992f807" ], "x-ms-correlation-request-id": [ - "1fa3d52f-2318-4ee3-b09b-5b0206b7b47c" + "2dbd36c0-993c-405c-a41a-fc4b8992f807" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:1fa3d52f-2318-4ee3-b09b-5b0206b7b47c" + "WESTUS2:20210213T020727Z:2dbd36c0-993c-405c-a41a-fc4b8992f807" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17571,16 +16699,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42d4c4a5-bed9-4e77-939e-54dc9e7b28c1" + "8800011c-bc3f-4713-b1d0-4714b46a7825" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17603,28 +16731,25 @@ "11745" ], "x-ms-request-id": [ - "f39b832d-761f-4a05-9875-4c55e6d512dd" + "79954a7e-8506-4508-8548-54d4b567075d" ], "x-ms-correlation-request-id": [ - "f39b832d-761f-4a05-9875-4c55e6d512dd" + "79954a7e-8506-4508-8548-54d4b567075d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:f39b832d-761f-4a05-9875-4c55e6d512dd" + "WESTUS2:20210213T020727Z:79954a7e-8506-4508-8548-54d4b567075d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17637,16 +16762,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f85b9a3-190c-47dc-bead-d9c0648f8105" + "389cb5ff-ac57-4b3a-b459-4736c8774418" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17669,28 +16794,25 @@ "11744" ], "x-ms-request-id": [ - "fb965b7d-16a3-4025-9975-516c5453949c" + "8591da54-bc17-44b6-9ac7-0dc1fe1c77fa" ], "x-ms-correlation-request-id": [ - "fb965b7d-16a3-4025-9975-516c5453949c" + "8591da54-bc17-44b6-9ac7-0dc1fe1c77fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:fb965b7d-16a3-4025-9975-516c5453949c" + "WESTUS2:20210213T020728Z:8591da54-bc17-44b6-9ac7-0dc1fe1c77fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17703,16 +16825,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f484480-42c7-4ba8-abaa-b4b0e59e796e" + "af5a0c3b-b1a1-41f3-a175-feb805518c83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17735,28 +16857,25 @@ "11743" ], "x-ms-request-id": [ - "cebf2a09-4733-42fa-90b1-116d894552be" + "5c9720ba-3197-4229-a963-0334751c78a2" ], "x-ms-correlation-request-id": [ - "cebf2a09-4733-42fa-90b1-116d894552be" + "5c9720ba-3197-4229-a963-0334751c78a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:cebf2a09-4733-42fa-90b1-116d894552be" + "WESTUS2:20210213T020728Z:5c9720ba-3197-4229-a963-0334751c78a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17769,16 +16888,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d5bac5d-5879-4c4e-ba1c-4c70a0a2133c" + "0bb8c1c7-cb3c-40d7-bb9c-85684e9aff20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17801,28 +16920,25 @@ "11742" ], "x-ms-request-id": [ - "a96c5ac1-526e-4ccd-86f3-c7250e0e8f3b" + "d5654a09-8b9e-45ba-9b67-593db830dac4" ], "x-ms-correlation-request-id": [ - "a96c5ac1-526e-4ccd-86f3-c7250e0e8f3b" + "d5654a09-8b9e-45ba-9b67-593db830dac4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204154Z:a96c5ac1-526e-4ccd-86f3-c7250e0e8f3b" + "WESTUS2:20210213T020728Z:d5654a09-8b9e-45ba-9b67-593db830dac4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:27 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17835,16 +16951,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d63d3fdb-9ec4-4fd5-8196-9eac4bf8301e" + "91c09265-8446-40b2-ab37-d1a08f0ef46a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17867,28 +16983,25 @@ "11741" ], "x-ms-request-id": [ - "04ed4b87-52dc-4b37-a35e-8db9733f0f52" + "3d543b35-7f11-4e8c-9eaf-55be99ef653b" ], "x-ms-correlation-request-id": [ - "04ed4b87-52dc-4b37-a35e-8db9733f0f52" + "3d543b35-7f11-4e8c-9eaf-55be99ef653b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:04ed4b87-52dc-4b37-a35e-8db9733f0f52" + "WESTUS2:20210213T020728Z:3d543b35-7f11-4e8c-9eaf-55be99ef653b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17901,16 +17014,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06dcdaf7-df0c-4e53-831a-49bde27ab638" + "1768542a-9f55-4163-aded-5153c85fbb1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17933,28 +17046,25 @@ "11740" ], "x-ms-request-id": [ - "d8b5979e-672b-42e5-852d-ba5317778900" + "fec8df5f-9b7a-4ada-85ae-d13f68f562d6" ], "x-ms-correlation-request-id": [ - "d8b5979e-672b-42e5-852d-ba5317778900" + "fec8df5f-9b7a-4ada-85ae-d13f68f562d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:d8b5979e-672b-42e5-852d-ba5317778900" + "WESTUS2:20210213T020728Z:fec8df5f-9b7a-4ada-85ae-d13f68f562d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:54 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -17967,16 +17077,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9310564f-57aa-4813-b586-e096c5ac0780" + "bf32259b-1422-4e4b-8b37-4bffb5e439b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -17999,28 +17109,25 @@ "11739" ], "x-ms-request-id": [ - "4d35901e-45da-4f64-8ca6-6dd019ed6316" + "dec4836a-bbf2-4a6c-b100-0ad42c072d48" ], "x-ms-correlation-request-id": [ - "4d35901e-45da-4f64-8ca6-6dd019ed6316" + "dec4836a-bbf2-4a6c-b100-0ad42c072d48" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:4d35901e-45da-4f64-8ca6-6dd019ed6316" + "WESTUS2:20210213T020728Z:dec4836a-bbf2-4a6c-b100-0ad42c072d48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18033,16 +17140,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edfb3773-1099-416d-9033-fc7e937767e5" + "dcd770da-8dbc-4543-915e-253701ab018a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18065,28 +17172,25 @@ "11738" ], "x-ms-request-id": [ - "d1455d29-46ed-4ce2-a93c-8e1f3b553b48" + "ca9a4436-fc69-420c-b358-867ee14ed3a3" ], "x-ms-correlation-request-id": [ - "d1455d29-46ed-4ce2-a93c-8e1f3b553b48" + "ca9a4436-fc69-420c-b358-867ee14ed3a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:d1455d29-46ed-4ce2-a93c-8e1f3b553b48" + "WESTUS2:20210213T020729Z:ca9a4436-fc69-420c-b358-867ee14ed3a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18099,16 +17203,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97704968-a8e4-4f68-8995-617789e23858" + "018672ab-9061-42fa-9472-2dbde95b6fef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18131,28 +17235,25 @@ "11737" ], "x-ms-request-id": [ - "677063f8-1c4e-45a1-a118-9afab14b1cfb" + "e68310c7-236f-4539-89a8-bb52b0c9db8b" ], "x-ms-correlation-request-id": [ - "677063f8-1c4e-45a1-a118-9afab14b1cfb" + "e68310c7-236f-4539-89a8-bb52b0c9db8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:677063f8-1c4e-45a1-a118-9afab14b1cfb" + "WESTUS2:20210213T020729Z:e68310c7-236f-4539-89a8-bb52b0c9db8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18165,16 +17266,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d17e022-20b5-4dda-9415-b27df5b78b79" + "74fdd2cd-f85a-4534-9c74-16958711853e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18197,28 +17298,25 @@ "11736" ], "x-ms-request-id": [ - "49886521-f4a2-42a8-ac1a-5cad1725d750" + "ec609c2c-8f98-453b-a4c7-e4a06ff8a3ab" ], "x-ms-correlation-request-id": [ - "49886521-f4a2-42a8-ac1a-5cad1725d750" + "ec609c2c-8f98-453b-a4c7-e4a06ff8a3ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:49886521-f4a2-42a8-ac1a-5cad1725d750" + "WESTUS2:20210213T020729Z:ec609c2c-8f98-453b-a4c7-e4a06ff8a3ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:28 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18231,16 +17329,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "236e394b-56e1-47d6-9864-8bb1038ecc96" + "0cbe5968-e668-43ca-b2f3-2fcf8fc3649d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18263,28 +17361,25 @@ "11735" ], "x-ms-request-id": [ - "3f994461-065c-45b1-9a70-a15c905952c8" + "9f65caa5-2320-4b9d-93b8-f264b9739442" ], "x-ms-correlation-request-id": [ - "3f994461-065c-45b1-9a70-a15c905952c8" + "9f65caa5-2320-4b9d-93b8-f264b9739442" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:3f994461-065c-45b1-9a70-a15c905952c8" + "WESTUS2:20210213T020729Z:9f65caa5-2320-4b9d-93b8-f264b9739442" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18297,16 +17392,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37bc9265-41e8-4ac9-a655-57af67f97cd6" + "d921e6fc-4680-4b33-9e8f-7147d7a1f48d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18329,28 +17424,25 @@ "11734" ], "x-ms-request-id": [ - "7793b0f6-4d37-4eed-876e-f9dda3db8445" + "e193b83a-fdad-43fc-8ebd-01508c9e3f3f" ], "x-ms-correlation-request-id": [ - "7793b0f6-4d37-4eed-876e-f9dda3db8445" + "e193b83a-fdad-43fc-8ebd-01508c9e3f3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204155Z:7793b0f6-4d37-4eed-876e-f9dda3db8445" + "WESTUS2:20210213T020729Z:e193b83a-fdad-43fc-8ebd-01508c9e3f3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18363,16 +17455,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d8e2b72-94ec-44a8-a29e-96e80b4982b5" + "1ee48585-183a-498d-a37c-d6fb1e34a9fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18395,28 +17487,25 @@ "11733" ], "x-ms-request-id": [ - "674b473e-8183-4be4-a424-437dcd02458f" + "b9a53a12-060c-4517-b9da-a452827a634d" ], "x-ms-correlation-request-id": [ - "674b473e-8183-4be4-a424-437dcd02458f" + "b9a53a12-060c-4517-b9da-a452827a634d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204156Z:674b473e-8183-4be4-a424-437dcd02458f" + "WESTUS2:20210213T020730Z:b9a53a12-060c-4517-b9da-a452827a634d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:55 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18429,16 +17518,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6020ba6-d590-4851-b574-a752bd79117b" + "0265214a-33fc-49be-a46c-fdf9a8ef90b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18461,28 +17550,25 @@ "11732" ], "x-ms-request-id": [ - "b90f00b1-8c48-4293-a2f3-eb5e50d7d982" + "7a334bba-0164-4a92-bc29-86931258993e" ], "x-ms-correlation-request-id": [ - "b90f00b1-8c48-4293-a2f3-eb5e50d7d982" + "7a334bba-0164-4a92-bc29-86931258993e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204156Z:b90f00b1-8c48-4293-a2f3-eb5e50d7d982" + "WESTUS2:20210213T020730Z:7a334bba-0164-4a92-bc29-86931258993e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:56 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18495,16 +17581,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b9f8e22-5362-49bd-8894-f970e262b8db" + "ff0e7426-3602-4b57-b802-80732f29f5dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18527,28 +17613,25 @@ "11731" ], "x-ms-request-id": [ - "c185ae3f-9af1-420d-9676-66726af7360a" + "74a0345c-6bed-4573-ac51-e62ac4df12b9" ], "x-ms-correlation-request-id": [ - "c185ae3f-9af1-420d-9676-66726af7360a" + "74a0345c-6bed-4573-ac51-e62ac4df12b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204156Z:c185ae3f-9af1-420d-9676-66726af7360a" + "WESTUS2:20210213T020730Z:74a0345c-6bed-4573-ac51-e62ac4df12b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:56 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18561,16 +17644,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc37c9d-79f7-4f5f-afcf-79e9c92d7eb2" + "f2563fc1-0afe-43ad-87fc-f40341af43e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18593,28 +17676,25 @@ "11730" ], "x-ms-request-id": [ - "8636ce0a-c6c6-4531-b372-0032733ea9d8" + "f39189ef-d473-416d-947c-353c9c2f21e0" ], "x-ms-correlation-request-id": [ - "8636ce0a-c6c6-4531-b372-0032733ea9d8" + "f39189ef-d473-416d-947c-353c9c2f21e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204156Z:8636ce0a-c6c6-4531-b372-0032733ea9d8" + "WESTUS2:20210213T020730Z:f39189ef-d473-416d-947c-353c9c2f21e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:56 GMT" + "Sat, 13 Feb 2021 02:07:29 GMT" ], "Content-Length": [ "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", @@ -18627,16 +17707,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "961a316b-c9dc-49dd-b8c5-e4a99322e053" + "e0869c4a-8d4c-4136-8a27-e8002e38fd4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18659,31 +17739,28 @@ "11729" ], "x-ms-request-id": [ - "36ad1201-909a-48c5-9cfd-68890a90e57c" + "b0f3bcaa-87b5-46b2-8295-668f6116c2b2" ], "x-ms-correlation-request-id": [ - "36ad1201-909a-48c5-9cfd-68890a90e57c" + "b0f3bcaa-87b5-46b2-8295-668f6116c2b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204156Z:36ad1201-909a-48c5-9cfd-68890a90e57c" + "WESTUS2:20210213T020730Z:b0f3bcaa-87b5-46b2-8295-668f6116c2b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:56 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -18693,16 +17770,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "201fb25b-694d-4ee6-8303-a5c9be165ddd" + "d6f0237d-3c48-4f71-8144-857395eecbf8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18725,31 +17802,28 @@ "11728" ], "x-ms-request-id": [ - "6d7375b0-5b8e-4089-ab9a-a2cb4e3514e9" + "80dfe709-50e9-4ab0-a104-cb73c3701266" ], "x-ms-correlation-request-id": [ - "6d7375b0-5b8e-4089-ab9a-a2cb4e3514e9" + "80dfe709-50e9-4ab0-a104-cb73c3701266" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204157Z:6d7375b0-5b8e-4089-ab9a-a2cb4e3514e9" + "WESTUS2:20210213T020730Z:80dfe709-50e9-4ab0-a104-cb73c3701266" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -18759,16 +17833,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b559eb6a-cda2-4e17-abdf-0be1d278be11" + "71d5e5a9-8094-412a-b78c-b31cb7dc0391" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18791,31 +17865,28 @@ "11727" ], "x-ms-request-id": [ - "8e0f6866-ccb2-4ede-bac0-4ec932ee1bf2" + "8102aec0-392c-4f15-9e44-04e0b1d83ad5" ], "x-ms-correlation-request-id": [ - "8e0f6866-ccb2-4ede-bac0-4ec932ee1bf2" + "8102aec0-392c-4f15-9e44-04e0b1d83ad5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204157Z:8e0f6866-ccb2-4ede-bac0-4ec932ee1bf2" + "WESTUS2:20210213T020731Z:8102aec0-392c-4f15-9e44-04e0b1d83ad5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -18825,16 +17896,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0308af27-c5f7-456c-b8e6-7b2892573559" + "b3b47338-8a4f-4019-90cf-bd4fd534575d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18857,31 +17928,28 @@ "11726" ], "x-ms-request-id": [ - "ed0fa6d8-1484-4282-b6fb-1c99009caa9d" + "f7bf1d45-43c8-4e60-9f9d-8924745cb762" ], "x-ms-correlation-request-id": [ - "ed0fa6d8-1484-4282-b6fb-1c99009caa9d" + "f7bf1d45-43c8-4e60-9f9d-8924745cb762" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204157Z:ed0fa6d8-1484-4282-b6fb-1c99009caa9d" + "WESTUS2:20210213T020731Z:f7bf1d45-43c8-4e60-9f9d-8924745cb762" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -18891,16 +17959,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a275906-b27c-443a-aa21-a4e9958c2970" + "9fc7f14e-4175-4c5f-b539-724aa2e6d7ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18923,31 +17991,28 @@ "11725" ], "x-ms-request-id": [ - "46878dea-1eb8-483e-b6a5-553e4ab1c22e" + "2ae6c1b9-dcdf-4d8f-9cbb-f76214bf55f9" ], "x-ms-correlation-request-id": [ - "46878dea-1eb8-483e-b6a5-553e4ab1c22e" + "2ae6c1b9-dcdf-4d8f-9cbb-f76214bf55f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204157Z:46878dea-1eb8-483e-b6a5-553e4ab1c22e" + "WESTUS2:20210213T020731Z:2ae6c1b9-dcdf-4d8f-9cbb-f76214bf55f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -18957,16 +18022,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a0c849-34f9-4a43-8017-d833485f4a41" + "d73e81fc-8884-4a4f-85a5-c9d59590dfec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -18989,31 +18054,28 @@ "11724" ], "x-ms-request-id": [ - "c1a4c637-e149-43fc-87c0-87697f356d76" + "1250de82-857a-4512-9005-91efb12d983e" ], "x-ms-correlation-request-id": [ - "c1a4c637-e149-43fc-87c0-87697f356d76" + "1250de82-857a-4512-9005-91efb12d983e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:c1a4c637-e149-43fc-87c0-87697f356d76" + "WESTUS2:20210213T020731Z:1250de82-857a-4512-9005-91efb12d983e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:30 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19023,16 +18085,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07615f3e-d67d-4cb1-a9a4-6671c720cac6" + "21b69c03-4704-406a-b920-c6cb607b8343" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19055,31 +18117,28 @@ "11723" ], "x-ms-request-id": [ - "bbde0f01-63cf-4fd9-8d73-2e5b15eb74a6" + "f90c5134-235f-427a-b52a-31525fc8bfad" ], "x-ms-correlation-request-id": [ - "bbde0f01-63cf-4fd9-8d73-2e5b15eb74a6" + "f90c5134-235f-427a-b52a-31525fc8bfad" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:bbde0f01-63cf-4fd9-8d73-2e5b15eb74a6" + "WESTUS2:20210213T020731Z:f90c5134-235f-427a-b52a-31525fc8bfad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:57 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19089,16 +18148,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6740316-374f-4b69-b972-c227aabce956" + "6a33454d-4cbc-4878-a1da-b0034d67e3a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19121,31 +18180,28 @@ "11722" ], "x-ms-request-id": [ - "add7072b-beca-427e-99d0-9d010723f2d9" + "77cedbb1-5d85-4b5c-96eb-8d6c6feaca23" ], "x-ms-correlation-request-id": [ - "add7072b-beca-427e-99d0-9d010723f2d9" + "77cedbb1-5d85-4b5c-96eb-8d6c6feaca23" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:add7072b-beca-427e-99d0-9d010723f2d9" + "WESTUS2:20210213T020731Z:77cedbb1-5d85-4b5c-96eb-8d6c6feaca23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19155,16 +18211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eef1dc8f-101e-4d89-bd4d-ddaf11d8ed8e" + "72406011-e2ae-4fb4-ae66-28f7ea8a892b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19187,31 +18243,28 @@ "11721" ], "x-ms-request-id": [ - "029d5126-2cd8-447a-be0b-022ad53c9113" + "f02be6d9-c60a-4cb4-a141-0614cd31ea55" ], "x-ms-correlation-request-id": [ - "029d5126-2cd8-447a-be0b-022ad53c9113" + "f02be6d9-c60a-4cb4-a141-0614cd31ea55" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:029d5126-2cd8-447a-be0b-022ad53c9113" + "WESTUS2:20210213T020732Z:f02be6d9-c60a-4cb4-a141-0614cd31ea55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19221,16 +18274,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f179a0fe-d2b5-4a86-89a2-075cbad80c91" + "3d3a1a5d-8c1c-4194-a133-263a0f9ec437" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19253,31 +18306,28 @@ "11720" ], "x-ms-request-id": [ - "40b0728a-f53b-4217-ab5f-55caef731ddb" + "96225935-304d-444f-81d6-4f710921b41f" ], "x-ms-correlation-request-id": [ - "40b0728a-f53b-4217-ab5f-55caef731ddb" + "96225935-304d-444f-81d6-4f710921b41f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:40b0728a-f53b-4217-ab5f-55caef731ddb" + "WESTUS2:20210213T020732Z:96225935-304d-444f-81d6-4f710921b41f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19287,16 +18337,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f293e436-ccf4-45c5-8db4-b6521d032a57" + "86d69059-998c-4fa0-b528-c4a77914b22a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19319,31 +18369,28 @@ "11719" ], "x-ms-request-id": [ - "4afb8d71-4e73-4bb6-a324-5a3ba02a3d96" + "7dbaa356-94a0-4785-8a10-24ec8927dad7" ], "x-ms-correlation-request-id": [ - "4afb8d71-4e73-4bb6-a324-5a3ba02a3d96" + "7dbaa356-94a0-4785-8a10-24ec8927dad7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:4afb8d71-4e73-4bb6-a324-5a3ba02a3d96" + "WESTUS2:20210213T020732Z:7dbaa356-94a0-4785-8a10-24ec8927dad7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19353,16 +18400,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c712279-db54-4afe-9d80-5377bf7bc881" + "83ade399-eaae-4185-a765-b44fac5c7fff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19385,31 +18432,28 @@ "11718" ], "x-ms-request-id": [ - "e766711b-2121-4aa6-aae0-67ff198e0094" + "680ece78-d087-48d0-b6c7-0f4aebf1f3d9" ], "x-ms-correlation-request-id": [ - "e766711b-2121-4aa6-aae0-67ff198e0094" + "680ece78-d087-48d0-b6c7-0f4aebf1f3d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204158Z:e766711b-2121-4aa6-aae0-67ff198e0094" + "WESTUS2:20210213T020732Z:680ece78-d087-48d0-b6c7-0f4aebf1f3d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:31 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19419,16 +18463,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4990fa47-d10b-489f-85b1-cbe28ea99dc0" + "f9949733-21e3-4e7a-bc2c-153505e0e467" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19451,31 +18495,28 @@ "11717" ], "x-ms-request-id": [ - "11601251-933c-4274-8bb9-2615e65a413d" + "4297eec7-18ca-409d-9bca-1ab08d253ca7" ], "x-ms-correlation-request-id": [ - "11601251-933c-4274-8bb9-2615e65a413d" + "4297eec7-18ca-409d-9bca-1ab08d253ca7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:11601251-933c-4274-8bb9-2615e65a413d" + "WESTUS2:20210213T020732Z:4297eec7-18ca-409d-9bca-1ab08d253ca7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:32 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19485,16 +18526,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37f87439-fd13-4fc2-8a97-a00a0cc604c4" + "06d3e8cb-fded-487a-8e77-7ed620df3d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19517,31 +18558,91 @@ "11716" ], "x-ms-request-id": [ - "b2533f97-878c-48a9-af22-e5e241d44fe5" + "d9f05157-0380-420a-ae4a-dce04d26555b" ], "x-ms-correlation-request-id": [ - "b2533f97-878c-48a9-af22-e5e241d44fe5" + "d9f05157-0380-420a-ae4a-dce04d26555b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:b2533f97-878c-48a9-af22-e5e241d44fe5" + "WESTUS2:20210213T020732Z:d9f05157-0380-420a-ae4a-dce04d26555b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:58 GMT" + "Sat, 13 Feb 2021 02:07:32 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccb26e1f-b91f-4378-804b-90618125f3a7" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11715" + ], + "x-ms-request-id": [ + "6d7a6b93-704b-491e-ad01-31067193ebdb" + ], + "x-ms-correlation-request-id": [ + "6d7a6b93-704b-491e-ad01-31067193ebdb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020733Z:6d7a6b93-704b-491e-ad01-31067193ebdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19551,16 +18652,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d602760-4547-4277-a20c-897dfa83adb7" + "8f25f4af-7a16-40c1-9f44-07eff2816b75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19580,34 +18681,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" + "11714" ], "x-ms-request-id": [ - "cc225537-0c1b-4dac-95f0-3e23f5fce459" + "0f6b772a-4383-4ef1-b1b8-2f3a32eff329" ], "x-ms-correlation-request-id": [ - "cc225537-0c1b-4dac-95f0-3e23f5fce459" + "0f6b772a-4383-4ef1-b1b8-2f3a32eff329" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:cc225537-0c1b-4dac-95f0-3e23f5fce459" + "WESTUS2:20210213T020733Z:0f6b772a-4383-4ef1-b1b8-2f3a32eff329" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:32 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19617,16 +18715,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbbbce47-dbaa-4d34-94e2-7a0ff3396ca3" + "4d77eeb5-443f-483c-b338-da123700ae19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19646,34 +18744,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" + "11713" ], "x-ms-request-id": [ - "ff9f8ed0-0949-4ac6-97f4-2f4f9a173529" + "0226df99-6fcc-4ca1-9077-f3283f7991d3" ], "x-ms-correlation-request-id": [ - "ff9f8ed0-0949-4ac6-97f4-2f4f9a173529" + "0226df99-6fcc-4ca1-9077-f3283f7991d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:ff9f8ed0-0949-4ac6-97f4-2f4f9a173529" + "WESTUS2:20210213T020733Z:0226df99-6fcc-4ca1-9077-f3283f7991d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:32 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19683,16 +18778,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc432602-b538-43df-a37d-ec7386199a7f" + "244ef3b8-c8cf-48b1-bdb0-037e65e3dc5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19712,34 +18807,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" + "11712" ], "x-ms-request-id": [ - "f249e63a-a914-4692-8901-68a9193dad90" + "b280460e-b688-445e-8e1d-594a28a12ac2" ], "x-ms-correlation-request-id": [ - "f249e63a-a914-4692-8901-68a9193dad90" + "b280460e-b688-445e-8e1d-594a28a12ac2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:f249e63a-a914-4692-8901-68a9193dad90" + "WESTUS2:20210213T020733Z:b280460e-b688-445e-8e1d-594a28a12ac2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:32 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19749,16 +18841,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a33e9ea5-2b6d-48f3-a826-3819f6dd97ac" + "336ef0ac-2e75-49bb-9f3c-42a1f6217d2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19778,34 +18870,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11711" ], "x-ms-request-id": [ - "a91e7de1-8b6e-48cd-a928-2843429861b4" + "8ec7e789-d8d7-4039-b6e8-f1f2efc361e0" ], "x-ms-correlation-request-id": [ - "a91e7de1-8b6e-48cd-a928-2843429861b4" + "8ec7e789-d8d7-4039-b6e8-f1f2efc361e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204159Z:a91e7de1-8b6e-48cd-a928-2843429861b4" + "WESTUS2:20210213T020733Z:8ec7e789-d8d7-4039-b6e8-f1f2efc361e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19815,16 +18904,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8131fe9-74f1-49ac-a4bd-9ad367a8c579" + "ad49de14-1e34-4f57-a163-3cc15cc59ed9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19844,34 +18933,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" + "11710" ], "x-ms-request-id": [ - "80459a60-5404-4823-b32d-ac79f6af39b4" + "8bbb8b00-105c-4bea-99fc-f8d3d6e9e08a" ], "x-ms-correlation-request-id": [ - "80459a60-5404-4823-b32d-ac79f6af39b4" + "8bbb8b00-105c-4bea-99fc-f8d3d6e9e08a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:80459a60-5404-4823-b32d-ac79f6af39b4" + "WESTUS2:20210213T020733Z:8bbb8b00-105c-4bea-99fc-f8d3d6e9e08a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19881,16 +18967,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27898a49-85f3-4e10-a3ff-e464ee106296" + "8a4206db-5d6c-4f6d-b5d5-a146829e95fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19910,34 +18996,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" + "11709" ], "x-ms-request-id": [ - "46786836-dea6-4b36-aff9-a1ff5a42faba" + "198d4905-1d24-4ef9-8bf4-4add676b9ee4" ], "x-ms-correlation-request-id": [ - "46786836-dea6-4b36-aff9-a1ff5a42faba" + "198d4905-1d24-4ef9-8bf4-4add676b9ee4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:46786836-dea6-4b36-aff9-a1ff5a42faba" + "WESTUS2:20210213T020734Z:198d4905-1d24-4ef9-8bf4-4add676b9ee4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:59 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -19947,16 +19030,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b4bbcce-6daa-45d3-8698-6b05956ae721" + "7a36ea91-c322-48d6-9537-6a217cd6121b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -19976,34 +19059,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11708" ], "x-ms-request-id": [ - "e7c408b0-7f44-43ca-a7a8-d74b1d224839" + "41613ff8-f400-4f48-939f-1b2572bdb426" ], "x-ms-correlation-request-id": [ - "e7c408b0-7f44-43ca-a7a8-d74b1d224839" + "41613ff8-f400-4f48-939f-1b2572bdb426" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:e7c408b0-7f44-43ca-a7a8-d74b1d224839" + "WESTUS2:20210213T020734Z:41613ff8-f400-4f48-939f-1b2572bdb426" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20013,16 +19093,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbc259b9-9acb-4e23-8923-c27e83c87f0e" + "f24651f1-1706-4903-818e-140d4187707b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20042,34 +19122,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "11707" ], "x-ms-request-id": [ - "c2f25f65-34df-4e45-b7cb-bcaab521425d" + "3ae32dcb-2cc1-4bf6-b205-2cb4baba8820" ], "x-ms-correlation-request-id": [ - "c2f25f65-34df-4e45-b7cb-bcaab521425d" + "3ae32dcb-2cc1-4bf6-b205-2cb4baba8820" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:c2f25f65-34df-4e45-b7cb-bcaab521425d" + "WESTUS2:20210213T020734Z:3ae32dcb-2cc1-4bf6-b205-2cb4baba8820" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20079,16 +19156,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f699f69-7b97-41bf-af08-b694610b5d72" + "3252417f-7294-4233-ab1f-4570c37baed1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20108,34 +19185,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11707" + "11706" ], "x-ms-request-id": [ - "764e993c-b7f4-4e7d-8853-e47ad68bd00f" + "10ef1037-216b-4c0d-a4de-f589e1a11af5" ], "x-ms-correlation-request-id": [ - "764e993c-b7f4-4e7d-8853-e47ad68bd00f" + "10ef1037-216b-4c0d-a4de-f589e1a11af5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:764e993c-b7f4-4e7d-8853-e47ad68bd00f" + "WESTUS2:20210213T020734Z:10ef1037-216b-4c0d-a4de-f589e1a11af5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:33 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20145,16 +19219,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f5193cd-d777-49aa-9a84-ca38d82e530a" + "8c2047d0-0b0c-4ad4-b2d3-f7f821bca896" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20174,34 +19248,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" + "11705" ], "x-ms-request-id": [ - "b995e920-6044-4046-af94-c55f5695c22a" + "f658b4a5-33da-4adf-8a26-3dab56b0cd4a" ], "x-ms-correlation-request-id": [ - "b995e920-6044-4046-af94-c55f5695c22a" + "f658b4a5-33da-4adf-8a26-3dab56b0cd4a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:b995e920-6044-4046-af94-c55f5695c22a" + "WESTUS2:20210213T020734Z:f658b4a5-33da-4adf-8a26-3dab56b0cd4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:34 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20211,16 +19282,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c14da7bc-6f86-4708-a919-61d3081e52af" + "5bccdbcc-1890-49a7-8af9-01e6474cd0a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20240,34 +19311,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" + "11704" ], "x-ms-request-id": [ - "8a0313e3-4afe-4f89-95ef-e2e925a78547" + "bb4f36dd-b556-49e6-b6b9-3373be0282ce" ], "x-ms-correlation-request-id": [ - "8a0313e3-4afe-4f89-95ef-e2e925a78547" + "bb4f36dd-b556-49e6-b6b9-3373be0282ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204200Z:8a0313e3-4afe-4f89-95ef-e2e925a78547" + "WESTUS2:20210213T020734Z:bb4f36dd-b556-49e6-b6b9-3373be0282ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:34 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20277,16 +19345,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d1a9603-38c0-4172-9e4c-ca60b02091b9" + "530fa2b8-3666-4cf6-9d18-d5ac09ea1cfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20306,34 +19374,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "11703" ], "x-ms-request-id": [ - "b5dc59b4-05ea-4263-997e-7e442e6ae01b" + "a9a1fc3d-4bda-4c14-824e-d3be834648fa" ], "x-ms-correlation-request-id": [ - "b5dc59b4-05ea-4263-997e-7e442e6ae01b" + "a9a1fc3d-4bda-4c14-824e-d3be834648fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:b5dc59b4-05ea-4263-997e-7e442e6ae01b" + "WESTUS2:20210213T020734Z:a9a1fc3d-4bda-4c14-824e-d3be834648fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:34 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f15f49e-d44a-42ec-8d0b-f6c4c06e26ac" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11702" + ], + "x-ms-request-id": [ + "2aba559b-13b5-4ac1-95f8-313aaaf17d68" + ], + "x-ms-correlation-request-id": [ + "2aba559b-13b5-4ac1-95f8-313aaaf17d68" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020735Z:2aba559b-13b5-4ac1-95f8-313aaaf17d68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20343,16 +19471,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "115e7fbe-b43c-47ba-9e30-87b486b4b1ae" + "b943ab16-f595-4c38-821b-20f011d64bb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20372,34 +19500,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" + "11701" ], "x-ms-request-id": [ - "abf367f9-93de-4bf9-a2f6-81f551f8dfd6" + "373b29cd-4a35-4756-9329-af6a05aefe22" ], "x-ms-correlation-request-id": [ - "abf367f9-93de-4bf9-a2f6-81f551f8dfd6" + "373b29cd-4a35-4756-9329-af6a05aefe22" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:abf367f9-93de-4bf9-a2f6-81f551f8dfd6" + "WESTUS2:20210213T020735Z:373b29cd-4a35-4756-9329-af6a05aefe22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:00 GMT" + "Sat, 13 Feb 2021 02:07:34 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5c9627f-287b-4819-a0d6-c738d847837d" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11700" + ], + "x-ms-request-id": [ + "48f92e28-c53e-4fa1-86a1-0a6e54b27a36" + ], + "x-ms-correlation-request-id": [ + "48f92e28-c53e-4fa1-86a1-0a6e54b27a36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020735Z:48f92e28-c53e-4fa1-86a1-0a6e54b27a36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20409,16 +19597,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03467ef-b60b-4c3a-80ee-30e1d7a939d1" + "5699e276-cdca-411d-8b0e-c38fb4d58d13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20438,34 +19626,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11702" + "11699" ], "x-ms-request-id": [ - "cde88a34-6e6e-44f7-bdb9-9120c097f93d" + "ae7708c6-725a-441c-a49d-285925a7a2fd" ], "x-ms-correlation-request-id": [ - "cde88a34-6e6e-44f7-bdb9-9120c097f93d" + "ae7708c6-725a-441c-a49d-285925a7a2fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:cde88a34-6e6e-44f7-bdb9-9120c097f93d" + "WESTUS2:20210213T020735Z:ae7708c6-725a-441c-a49d-285925a7a2fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:35 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b78fa5f-91e3-4510-9dfe-ca246a5207c1" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11698" + ], + "x-ms-request-id": [ + "36d08eaf-e0f4-4aca-8f61-62a539c9f897" + ], + "x-ms-correlation-request-id": [ + "36d08eaf-e0f4-4aca-8f61-62a539c9f897" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020735Z:36d08eaf-e0f4-4aca-8f61-62a539c9f897" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20475,16 +19723,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bce6c6c-3b59-42a6-8612-b1cfc7bded6c" + "3f437d89-a4d6-4f55-afb6-5cdfaeb78373" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20504,34 +19752,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" + "11697" ], "x-ms-request-id": [ - "9d008ded-93f6-4a27-afec-d0ee465936b7" + "2e8ba6bb-2958-4c88-a00b-5fd570a5b003" ], "x-ms-correlation-request-id": [ - "9d008ded-93f6-4a27-afec-d0ee465936b7" + "2e8ba6bb-2958-4c88-a00b-5fd570a5b003" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:9d008ded-93f6-4a27-afec-d0ee465936b7" + "WESTUS2:20210213T020735Z:2e8ba6bb-2958-4c88-a00b-5fd570a5b003" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:35 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20541,16 +19786,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ac439ab-536f-486c-89f3-397a193465de" + "b2ccaf40-815d-4983-8a4f-e5804b917768" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20570,34 +19815,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "11696" ], "x-ms-request-id": [ - "f14236d3-d770-41f9-a929-765e9b1b6353" + "7e38f452-fa1e-441b-9e29-db8a7a51fa6c" ], "x-ms-correlation-request-id": [ - "f14236d3-d770-41f9-a929-765e9b1b6353" + "7e38f452-fa1e-441b-9e29-db8a7a51fa6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:f14236d3-d770-41f9-a929-765e9b1b6353" + "WESTUS2:20210213T020736Z:7e38f452-fa1e-441b-9e29-db8a7a51fa6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:35 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20607,16 +19849,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bae8aad-3158-470f-9337-ff858d16fd1b" + "6dd3c987-98ec-4e5b-90da-5c27ac427aa1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20636,34 +19878,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" + "11695" ], "x-ms-request-id": [ - "0da8460e-bca8-4a03-9655-974cc963fa5f" + "c2ca9873-cfee-490e-b532-b2b26a71e0c9" ], "x-ms-correlation-request-id": [ - "0da8460e-bca8-4a03-9655-974cc963fa5f" + "c2ca9873-cfee-490e-b532-b2b26a71e0c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:0da8460e-bca8-4a03-9655-974cc963fa5f" + "WESTUS2:20210213T020736Z:c2ca9873-cfee-490e-b532-b2b26a71e0c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:35 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20673,16 +19912,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591cd172-5c16-4cda-912f-2b0ba8fd2845" + "5b9e9eb1-66e3-43fd-b1d0-ebb9049febce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20702,34 +19941,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11698" + "11694" ], "x-ms-request-id": [ - "736fac8e-965b-4be2-af2e-fd5b2c8e5f2d" + "3a6c8fb7-c076-4d4f-9c6a-5d264321aeca" ], "x-ms-correlation-request-id": [ - "736fac8e-965b-4be2-af2e-fd5b2c8e5f2d" + "3a6c8fb7-c076-4d4f-9c6a-5d264321aeca" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204201Z:736fac8e-965b-4be2-af2e-fd5b2c8e5f2d" + "WESTUS2:20210213T020736Z:3a6c8fb7-c076-4d4f-9c6a-5d264321aeca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:35 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20739,16 +19975,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b923a0d6-f8e1-4198-b6d3-0a93a6e30e8f" + "34bf7656-5f2d-4980-929c-e8e2f07093b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20768,34 +20004,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" + "11693" ], "x-ms-request-id": [ - "ded5a5ea-e8df-42b4-b925-5b4d7278e5e8" + "06bec4a2-bcf0-4602-a325-544d10d8a363" ], "x-ms-correlation-request-id": [ - "ded5a5ea-e8df-42b4-b925-5b4d7278e5e8" + "06bec4a2-bcf0-4602-a325-544d10d8a363" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:ded5a5ea-e8df-42b4-b925-5b4d7278e5e8" + "WESTUS2:20210213T020736Z:06bec4a2-bcf0-4602-a325-544d10d8a363" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20805,16 +20038,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a07d2e3b-7397-4222-9f41-07981b651969" + "689eb6b6-361c-4cc7-8fca-ca95abb83830" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20834,34 +20067,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" + "11692" ], "x-ms-request-id": [ - "24099939-4be5-4b54-83fc-7e1324a394de" + "5417e332-f0ec-4d18-9df4-e6d48c581894" ], "x-ms-correlation-request-id": [ - "24099939-4be5-4b54-83fc-7e1324a394de" + "5417e332-f0ec-4d18-9df4-e6d48c581894" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:24099939-4be5-4b54-83fc-7e1324a394de" + "WESTUS2:20210213T020736Z:5417e332-f0ec-4d18-9df4-e6d48c581894" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:01 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20871,16 +20101,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d72c48d-cd11-4b1a-b0f2-95c56b4cbb4d" + "aec22bf2-d486-47c0-9195-2aa16d68a898" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20900,34 +20130,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" + "11691" ], "x-ms-request-id": [ - "985ec06a-3d75-43cc-9c29-99009afc5db3" + "043efaf8-ae77-4d58-bf58-4d177b81ef10" ], "x-ms-correlation-request-id": [ - "985ec06a-3d75-43cc-9c29-99009afc5db3" + "043efaf8-ae77-4d58-bf58-4d177b81ef10" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:985ec06a-3d75-43cc-9c29-99009afc5db3" + "WESTUS2:20210213T020736Z:043efaf8-ae77-4d58-bf58-4d177b81ef10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -20937,16 +20164,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "703f23eb-038d-4025-838f-ba9d41f6282b" + "0f0356fe-cbfe-4c34-9a66-3f244c7d609a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -20966,34 +20193,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" + "11690" ], "x-ms-request-id": [ - "824f3984-4a39-4977-b585-1c89afb8dc72" + "92df44ee-8875-4e60-a318-420284218e3c" ], "x-ms-correlation-request-id": [ - "824f3984-4a39-4977-b585-1c89afb8dc72" + "92df44ee-8875-4e60-a318-420284218e3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:824f3984-4a39-4977-b585-1c89afb8dc72" + "WESTUS2:20210213T020737Z:92df44ee-8875-4e60-a318-420284218e3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21003,16 +20227,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df007970-aaa4-4577-b402-611aef35d73e" + "538a6f5f-21ba-4171-8d49-0d3dd86e83ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21032,34 +20256,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11689" ], "x-ms-request-id": [ - "5ab1bf4b-1b61-479d-8ffd-efee96579b4a" + "f966bb02-f555-4cd4-bc25-42d7277d70c3" ], "x-ms-correlation-request-id": [ - "5ab1bf4b-1b61-479d-8ffd-efee96579b4a" + "f966bb02-f555-4cd4-bc25-42d7277d70c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:5ab1bf4b-1b61-479d-8ffd-efee96579b4a" + "WESTUS2:20210213T020737Z:f966bb02-f555-4cd4-bc25-42d7277d70c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21069,16 +20290,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebf18291-b91e-4b44-b1a3-c5c9545a9628" + "dbfa238c-9746-4baa-ae4f-88a2f7b3464c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21098,34 +20319,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" + "11688" ], "x-ms-request-id": [ - "1598b80c-3a30-4bf0-9325-9efadf3661d1" + "436e9f7d-0313-48af-a982-52b843719409" ], "x-ms-correlation-request-id": [ - "1598b80c-3a30-4bf0-9325-9efadf3661d1" + "436e9f7d-0313-48af-a982-52b843719409" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204202Z:1598b80c-3a30-4bf0-9325-9efadf3661d1" + "WESTUS2:20210213T020737Z:436e9f7d-0313-48af-a982-52b843719409" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21135,16 +20353,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b306bd-082a-454f-bf52-ad43a3315d04" + "e3dc52ca-fa9c-4a76-8ec2-574164dfdd04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21164,34 +20382,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" + "11687" ], "x-ms-request-id": [ - "44ec0e90-3590-4d71-8dc4-2d6f87163506" + "1fee8d5d-253c-455e-abd7-af9457bdae1b" ], "x-ms-correlation-request-id": [ - "44ec0e90-3590-4d71-8dc4-2d6f87163506" + "1fee8d5d-253c-455e-abd7-af9457bdae1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:44ec0e90-3590-4d71-8dc4-2d6f87163506" + "WESTUS2:20210213T020737Z:1fee8d5d-253c-455e-abd7-af9457bdae1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:36 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21201,16 +20416,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76b18ce7-779f-44cb-949f-66a28b12549b" + "46eb5ec4-e193-48db-87c3-4c22445e3735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21230,34 +20445,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11690" + "11686" ], "x-ms-request-id": [ - "00514d49-b893-4daf-9b70-c55da99590fe" + "b56e1343-e534-437a-bade-cef10d635278" ], "x-ms-correlation-request-id": [ - "00514d49-b893-4daf-9b70-c55da99590fe" + "b56e1343-e534-437a-bade-cef10d635278" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:00514d49-b893-4daf-9b70-c55da99590fe" + "WESTUS2:20210213T020737Z:b56e1343-e534-437a-bade-cef10d635278" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:02 GMT" + "Sat, 13 Feb 2021 02:07:37 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "465d3df4-6e51-48fa-bacb-ad0291327b4f" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11685" + ], + "x-ms-request-id": [ + "d6ae1cf5-77c6-46aa-88ce-44176ac8d602" + ], + "x-ms-correlation-request-id": [ + "d6ae1cf5-77c6-46aa-88ce-44176ac8d602" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020737Z:d6ae1cf5-77c6-46aa-88ce-44176ac8d602" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21267,16 +20542,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7934d44-98be-4017-979a-fc151adbebf8" + "98c41272-ccb0-447d-be8b-36d554117e27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21296,34 +20571,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11689" + "11684" ], "x-ms-request-id": [ - "599971ef-ed7d-4f4f-a812-5d722391fc5a" + "600a96b1-3362-4e62-b5dc-ff22e6582719" ], "x-ms-correlation-request-id": [ - "599971ef-ed7d-4f4f-a812-5d722391fc5a" + "600a96b1-3362-4e62-b5dc-ff22e6582719" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:599971ef-ed7d-4f4f-a812-5d722391fc5a" + "WESTUS2:20210213T020738Z:600a96b1-3362-4e62-b5dc-ff22e6582719" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:37 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99c19605-4f74-41fd-a3ce-a91e6e7fd69c" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11683" + ], + "x-ms-request-id": [ + "b530e9be-d076-45b9-8b9c-ecc7313a0180" + ], + "x-ms-correlation-request-id": [ + "b530e9be-d076-45b9-8b9c-ecc7313a0180" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020738Z:b530e9be-d076-45b9-8b9c-ecc7313a0180" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21333,16 +20668,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67592d42-a426-4798-94d2-2661d1a4a0af" + "bcf8b9fc-91b9-42fa-9345-413041e5cfc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21362,34 +20697,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11688" + "11682" ], "x-ms-request-id": [ - "f5395786-e109-4093-a646-7184ef3d13e4" + "92b3bc4d-c69d-4ee8-ab37-5e045a6f89ba" ], "x-ms-correlation-request-id": [ - "f5395786-e109-4093-a646-7184ef3d13e4" + "92b3bc4d-c69d-4ee8-ab37-5e045a6f89ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:f5395786-e109-4093-a646-7184ef3d13e4" + "WESTUS2:20210213T020738Z:92b3bc4d-c69d-4ee8-ab37-5e045a6f89ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:37 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c20f1da6-3689-4257-b7d7-9a0f2ccdf81c" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11681" + ], + "x-ms-request-id": [ + "58027ff6-e2aa-436d-ad46-29c517eea6d6" + ], + "x-ms-correlation-request-id": [ + "58027ff6-e2aa-436d-ad46-29c517eea6d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020738Z:58027ff6-e2aa-436d-ad46-29c517eea6d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21399,16 +20794,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6c32359-c4e6-48f3-8f24-737cc9debe21" + "cee25ff1-5870-45e3-9a47-35068e9866b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21428,34 +20823,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11687" + "11680" ], "x-ms-request-id": [ - "ed6b4947-b328-467f-b739-21aabd455bd9" + "bcd32029-e9a9-455e-86fc-ac40b8b87f08" ], "x-ms-correlation-request-id": [ - "ed6b4947-b328-467f-b739-21aabd455bd9" + "bcd32029-e9a9-455e-86fc-ac40b8b87f08" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:ed6b4947-b328-467f-b739-21aabd455bd9" + "WESTUS2:20210213T020738Z:bcd32029-e9a9-455e-86fc-ac40b8b87f08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:38 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21465,16 +20857,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0269ae42-a9d2-4e52-abcb-1138ca599467" + "55e42bc0-c4e4-4160-bfad-a3002559f1ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21494,34 +20886,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11686" + "11679" ], "x-ms-request-id": [ - "418d1035-a270-4eaf-a432-01337e01160a" + "11d4c7a0-efd2-4b41-a023-42966fffdfe8" ], "x-ms-correlation-request-id": [ - "418d1035-a270-4eaf-a432-01337e01160a" + "11d4c7a0-efd2-4b41-a023-42966fffdfe8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:418d1035-a270-4eaf-a432-01337e01160a" + "WESTUS2:20210213T020738Z:11d4c7a0-efd2-4b41-a023-42966fffdfe8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:38 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21531,16 +20920,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8ebfe14-7424-4be6-b1c1-4298eacd6ee8" + "19eee652-93a4-4db3-9311-23e45720511c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21560,34 +20949,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11685" + "11678" ], "x-ms-request-id": [ - "50267958-a41d-4adc-bc51-4239a8e60329" + "7f9a975b-2b41-4b68-97b3-0d7bc3e7b184" ], "x-ms-correlation-request-id": [ - "50267958-a41d-4adc-bc51-4239a8e60329" + "7f9a975b-2b41-4b68-97b3-0d7bc3e7b184" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204203Z:50267958-a41d-4adc-bc51-4239a8e60329" + "WESTUS2:20210213T020739Z:7f9a975b-2b41-4b68-97b3-0d7bc3e7b184" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:38 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21597,16 +20983,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c486f63-fdc4-4662-9885-0a22c45dbdb6" + "e47dc006-2890-4762-a1a7-5d8035ae22fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21626,34 +21012,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11684" + "11677" ], "x-ms-request-id": [ - "7da24c6b-fe5c-4655-8bdd-b436b518cb64" + "553bf1f2-67f6-498b-a5cb-22d2dabc7d45" ], "x-ms-correlation-request-id": [ - "7da24c6b-fe5c-4655-8bdd-b436b518cb64" + "553bf1f2-67f6-498b-a5cb-22d2dabc7d45" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:7da24c6b-fe5c-4655-8bdd-b436b518cb64" + "WESTUS2:20210213T020739Z:553bf1f2-67f6-498b-a5cb-22d2dabc7d45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:38 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21663,16 +21046,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0019696-3bde-4a84-aa42-163db7b19c75" + "1fcf2b6c-7048-415e-9a1d-ae44b456ed9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21692,34 +21075,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11683" + "11676" ], "x-ms-request-id": [ - "67240451-19d3-44ab-9c38-727e9ef26f55" + "eb6c730b-b9c4-45b3-9dba-76b46e0d7641" ], "x-ms-correlation-request-id": [ - "67240451-19d3-44ab-9c38-727e9ef26f55" + "eb6c730b-b9c4-45b3-9dba-76b46e0d7641" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:67240451-19d3-44ab-9c38-727e9ef26f55" + "WESTUS2:20210213T020739Z:eb6c730b-b9c4-45b3-9dba-76b46e0d7641" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:03 GMT" + "Sat, 13 Feb 2021 02:07:38 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21729,16 +21109,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "990e538d-e8d6-4d9c-9688-3b36d45ee526" + "2cd50258-1688-40ac-802f-343835264541" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21758,34 +21138,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11682" + "11675" ], "x-ms-request-id": [ - "98e22f19-2100-4a5f-bd34-f862dce30b1c" + "df36e9c1-8797-44f5-9d7a-8479897ed899" ], "x-ms-correlation-request-id": [ - "98e22f19-2100-4a5f-bd34-f862dce30b1c" + "df36e9c1-8797-44f5-9d7a-8479897ed899" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:98e22f19-2100-4a5f-bd34-f862dce30b1c" + "WESTUS2:20210213T020739Z:df36e9c1-8797-44f5-9d7a-8479897ed899" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21795,16 +21172,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c865e69-544f-4c08-9943-669cba9c0176" + "c257eadd-9e28-4bd0-9232-afe84a0e5569" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21824,34 +21201,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11681" + "11674" ], "x-ms-request-id": [ - "06371392-20f7-40a3-ac3f-9b04f49fbebd" + "93dc80c0-fd9f-4c62-9024-671003cf0e64" ], "x-ms-correlation-request-id": [ - "06371392-20f7-40a3-ac3f-9b04f49fbebd" + "93dc80c0-fd9f-4c62-9024-671003cf0e64" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:06371392-20f7-40a3-ac3f-9b04f49fbebd" + "WESTUS2:20210213T020739Z:93dc80c0-fd9f-4c62-9024-671003cf0e64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21861,16 +21235,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dacd6bfd-746d-4718-82af-44d7eb42e136" + "9434cace-0552-4152-9681-88ba5bd51bb7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21890,34 +21264,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11680" + "11673" ], "x-ms-request-id": [ - "1da1dec6-cac6-4dd5-8396-4641b7a0aea3" + "271d16fc-2b4f-41e7-be84-b36a59e0f5f4" ], "x-ms-correlation-request-id": [ - "1da1dec6-cac6-4dd5-8396-4641b7a0aea3" + "271d16fc-2b4f-41e7-be84-b36a59e0f5f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:1da1dec6-cac6-4dd5-8396-4641b7a0aea3" + "WESTUS2:20210213T020740Z:271d16fc-2b4f-41e7-be84-b36a59e0f5f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21927,16 +21298,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "529b0b46-875d-4006-9e4b-01c509daca67" + "d7c0d960-cd54-470e-a5c6-e22f54f108ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -21956,34 +21327,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11679" + "11672" ], "x-ms-request-id": [ - "c36981eb-8db3-4b2e-a9eb-9d2dd3fcb7ea" + "45364369-9b35-45b9-9025-a70d7b84b47f" ], "x-ms-correlation-request-id": [ - "c36981eb-8db3-4b2e-a9eb-9d2dd3fcb7ea" + "45364369-9b35-45b9-9025-a70d7b84b47f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:c36981eb-8db3-4b2e-a9eb-9d2dd3fcb7ea" + "WESTUS2:20210213T020740Z:45364369-9b35-45b9-9025-a70d7b84b47f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -21993,16 +21361,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1373d4-4481-45d4-85f7-1b352b2c5ea8" + "7aa508b4-6501-471c-89e3-e474c540de12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22022,34 +21390,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11678" + "11671" ], "x-ms-request-id": [ - "dc8eff79-c89a-48d5-8ac0-dd5f2c62b8b9" + "59679d24-50f9-4c0b-90a2-d25daa125bab" ], "x-ms-correlation-request-id": [ - "dc8eff79-c89a-48d5-8ac0-dd5f2c62b8b9" + "59679d24-50f9-4c0b-90a2-d25daa125bab" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204204Z:dc8eff79-c89a-48d5-8ac0-dd5f2c62b8b9" + "WESTUS2:20210213T020740Z:59679d24-50f9-4c0b-90a2-d25daa125bab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22059,16 +21424,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea2e5564-5610-4aa8-b092-3c0104b098f4" + "d3a6aec6-d3b1-40da-a691-60bc814da4ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22088,34 +21453,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11677" + "11670" ], "x-ms-request-id": [ - "65454de8-ec2e-4af8-b038-26cb545815f7" + "4322e42e-cca7-4394-85e1-d9dd5085c33a" ], "x-ms-correlation-request-id": [ - "65454de8-ec2e-4af8-b038-26cb545815f7" + "4322e42e-cca7-4394-85e1-d9dd5085c33a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:65454de8-ec2e-4af8-b038-26cb545815f7" + "WESTUS2:20210213T020740Z:4322e42e-cca7-4394-85e1-d9dd5085c33a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22125,16 +21487,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9834d8a-bf17-441a-843e-f6518eaf4870" + "d6b4a98e-6716-4619-9b89-74ce68b682ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22154,34 +21516,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11676" + "11669" ], "x-ms-request-id": [ - "d23de176-d675-4f91-a1d6-ca9b8bcd0a71" + "12d8c44e-13b5-44f7-a177-b1ad76bc6438" ], "x-ms-correlation-request-id": [ - "d23de176-d675-4f91-a1d6-ca9b8bcd0a71" + "12d8c44e-13b5-44f7-a177-b1ad76bc6438" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:d23de176-d675-4f91-a1d6-ca9b8bcd0a71" + "WESTUS2:20210213T020740Z:12d8c44e-13b5-44f7-a177-b1ad76bc6438" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:04 GMT" + "Sat, 13 Feb 2021 02:07:39 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e450fad-a902-4216-9873-7dd8a0eef4f1" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11668" + ], + "x-ms-request-id": [ + "248cf5fc-ffcc-46d0-a372-d09afb814a38" + ], + "x-ms-correlation-request-id": [ + "248cf5fc-ffcc-46d0-a372-d09afb814a38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020740Z:248cf5fc-ffcc-46d0-a372-d09afb814a38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22191,16 +21613,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1757fe75-9a43-424a-97bd-b027a6f08b76" + "22e33138-1a60-4afe-933e-20b7a88d33cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22220,34 +21642,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11675" + "11667" ], "x-ms-request-id": [ - "f23353a1-7320-4742-b551-233663c1304d" + "3452babb-fd6c-4db4-8237-5c908b6eb493" ], "x-ms-correlation-request-id": [ - "f23353a1-7320-4742-b551-233663c1304d" + "3452babb-fd6c-4db4-8237-5c908b6eb493" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:f23353a1-7320-4742-b551-233663c1304d" + "WESTUS2:20210213T020741Z:3452babb-fd6c-4db4-8237-5c908b6eb493" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:40 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cc8acef-cfa2-45f4-86dc-c4649fa278b4" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11666" + ], + "x-ms-request-id": [ + "077f8583-0e7b-4c6a-bfce-56967d01463d" + ], + "x-ms-correlation-request-id": [ + "077f8583-0e7b-4c6a-bfce-56967d01463d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020741Z:077f8583-0e7b-4c6a-bfce-56967d01463d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22257,16 +21739,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a453e88-d470-44e4-9c42-214842adc8be" + "af0cda45-ff10-4f09-8cf9-d44234c0a33d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22286,34 +21768,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11674" + "11665" ], "x-ms-request-id": [ - "bcd34b56-7a56-4ecc-b718-28da0cba780a" + "c9b65f82-64fe-4079-9724-dd4bc71347fa" ], "x-ms-correlation-request-id": [ - "bcd34b56-7a56-4ecc-b718-28da0cba780a" + "c9b65f82-64fe-4079-9724-dd4bc71347fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:bcd34b56-7a56-4ecc-b718-28da0cba780a" + "WESTUS2:20210213T020741Z:c9b65f82-64fe-4079-9724-dd4bc71347fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:40 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af14023d-148b-4efe-bd87-9e64aedd7778" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11664" + ], + "x-ms-request-id": [ + "6d0329c1-8376-405a-bbe7-2c43d657ba6a" + ], + "x-ms-correlation-request-id": [ + "6d0329c1-8376-405a-bbe7-2c43d657ba6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020741Z:6d0329c1-8376-405a-bbe7-2c43d657ba6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22323,16 +21865,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20c1c120-d128-492a-b8f4-14216dd99927" + "3e55e1ac-d270-4f48-aa44-55b097cde789" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22352,34 +21894,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11673" + "11663" ], "x-ms-request-id": [ - "7505d7a7-d822-428d-9b9b-890ccb6dfa3b" + "d6ea74bd-9c24-491d-b229-08195dd10e7c" ], "x-ms-correlation-request-id": [ - "7505d7a7-d822-428d-9b9b-890ccb6dfa3b" + "d6ea74bd-9c24-491d-b229-08195dd10e7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:7505d7a7-d822-428d-9b9b-890ccb6dfa3b" + "WESTUS2:20210213T020741Z:d6ea74bd-9c24-491d-b229-08195dd10e7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:40 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22389,16 +21928,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6060912a-6c32-48f7-950d-94f0cc6808f6" + "005c3ef2-9b37-4123-834c-3fd4dfb23482" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22418,34 +21957,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11672" + "11662" ], "x-ms-request-id": [ - "4c9baec6-14f5-47e8-be3a-701c93986ce1" + "222d1ead-b3aa-4833-bf50-3f054767fb07" ], "x-ms-correlation-request-id": [ - "4c9baec6-14f5-47e8-be3a-701c93986ce1" + "222d1ead-b3aa-4833-bf50-3f054767fb07" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:4c9baec6-14f5-47e8-be3a-701c93986ce1" + "WESTUS2:20210213T020741Z:222d1ead-b3aa-4833-bf50-3f054767fb07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22455,16 +21991,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44cbbb2c-75cd-4289-9eef-9c2cf214bb2b" + "03a80104-a964-4034-b20e-a4ca3bd14224" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22484,34 +22020,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11671" + "11661" ], "x-ms-request-id": [ - "91f02ea6-af27-46a2-870c-693642831273" + "7e40873f-cdbc-408b-9fac-243831fa3b7a" ], "x-ms-correlation-request-id": [ - "91f02ea6-af27-46a2-870c-693642831273" + "7e40873f-cdbc-408b-9fac-243831fa3b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204205Z:91f02ea6-af27-46a2-870c-693642831273" + "WESTUS2:20210213T020742Z:7e40873f-cdbc-408b-9fac-243831fa3b7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22521,16 +22054,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64404c99-8e54-4647-a4b4-e2b009473296" + "b3a89f72-1fe9-44c5-b8d5-316513b6353d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22550,34 +22083,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11670" + "11660" ], "x-ms-request-id": [ - "4f9d51ea-1033-4c09-945e-ebf3c9f23952" + "dbe7f950-2ba2-43e1-99fd-993ccea9ec0d" ], "x-ms-correlation-request-id": [ - "4f9d51ea-1033-4c09-945e-ebf3c9f23952" + "dbe7f950-2ba2-43e1-99fd-993ccea9ec0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:4f9d51ea-1033-4c09-945e-ebf3c9f23952" + "WESTUS2:20210213T020742Z:dbe7f950-2ba2-43e1-99fd-993ccea9ec0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22587,16 +22117,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2fa86f5-b128-42e0-84a5-9ec6dbea1e17" + "e27f2ca8-0c41-4c60-92e0-40d1d360aaed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22616,34 +22146,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11669" + "11659" ], "x-ms-request-id": [ - "23613c6e-a013-4784-8b0c-1e3721a75faa" + "228475e3-2c3c-4d6c-a855-e00e62d03d93" ], "x-ms-correlation-request-id": [ - "23613c6e-a013-4784-8b0c-1e3721a75faa" + "228475e3-2c3c-4d6c-a855-e00e62d03d93" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:23613c6e-a013-4784-8b0c-1e3721a75faa" + "WESTUS2:20210213T020742Z:228475e3-2c3c-4d6c-a855-e00e62d03d93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:05 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22653,16 +22180,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56c83ef0-4b3a-478b-809f-928635518c3a" + "d09efbce-c47c-4cd0-88db-4c10a4daf590" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22682,34 +22209,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11668" + "11658" ], "x-ms-request-id": [ - "4a4e7080-f61f-4c25-aa91-3f6ab9727e96" + "3ba28ee9-47f7-44eb-9d17-792c93bce5df" ], "x-ms-correlation-request-id": [ - "4a4e7080-f61f-4c25-aa91-3f6ab9727e96" + "3ba28ee9-47f7-44eb-9d17-792c93bce5df" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:4a4e7080-f61f-4c25-aa91-3f6ab9727e96" + "WESTUS2:20210213T020742Z:3ba28ee9-47f7-44eb-9d17-792c93bce5df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22719,16 +22243,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e137615d-c648-43ad-9da4-4510e045e779" + "f34a11ee-1155-40a4-a6f7-c3d4c3983a67" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22748,34 +22272,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11667" + "11657" ], "x-ms-request-id": [ - "1d06596f-a597-4996-a645-67c5dd051abe" + "b313353d-cb8b-4ecb-aa41-62ab3d3dddeb" ], "x-ms-correlation-request-id": [ - "1d06596f-a597-4996-a645-67c5dd051abe" + "b313353d-cb8b-4ecb-aa41-62ab3d3dddeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:1d06596f-a597-4996-a645-67c5dd051abe" + "WESTUS2:20210213T020742Z:b313353d-cb8b-4ecb-aa41-62ab3d3dddeb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:41 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22785,16 +22306,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7da82be-cb5b-4951-afae-99cc83b5c1c9" + "b206f38b-2146-4058-b6b6-40945f1ab84c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22814,34 +22335,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11666" + "11656" ], "x-ms-request-id": [ - "e1af3c4f-4e23-41c2-a84d-65171ce880a0" + "d73c534a-64b9-4574-9437-cd3f480d9f0f" ], "x-ms-correlation-request-id": [ - "e1af3c4f-4e23-41c2-a84d-65171ce880a0" + "d73c534a-64b9-4574-9437-cd3f480d9f0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:e1af3c4f-4e23-41c2-a84d-65171ce880a0" + "WESTUS2:20210213T020742Z:d73c534a-64b9-4574-9437-cd3f480d9f0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:42 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22851,16 +22369,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d71b092f-e7cc-44ce-84e8-b0864dc771aa" + "c5b51d2c-0d62-4e50-b2ee-88cba2e842b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22880,34 +22398,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11665" + "11655" ], "x-ms-request-id": [ - "dd2ab645-197c-4a08-90ff-7d3bac59930d" + "5b97fd75-0d5a-4bc2-8944-e070927701ef" ], "x-ms-correlation-request-id": [ - "dd2ab645-197c-4a08-90ff-7d3bac59930d" + "5b97fd75-0d5a-4bc2-8944-e070927701ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:dd2ab645-197c-4a08-90ff-7d3bac59930d" + "WESTUS2:20210213T020742Z:5b97fd75-0d5a-4bc2-8944-e070927701ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:42 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22917,16 +22432,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32bd1756-3ad7-4223-9d11-07f4cda8058a" + "d3fd8735-2010-4108-9300-5c1f4c21ef45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -22946,34 +22461,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11664" + "11654" ], "x-ms-request-id": [ - "2da9ca84-4167-4ad9-aa67-4d1bfa775b42" + "d3b662ce-343d-45ea-b8d5-d058f2895a84" ], "x-ms-correlation-request-id": [ - "2da9ca84-4167-4ad9-aa67-4d1bfa775b42" + "d3b662ce-343d-45ea-b8d5-d058f2895a84" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204206Z:2da9ca84-4167-4ad9-aa67-4d1bfa775b42" + "WESTUS2:20210213T020743Z:d3b662ce-343d-45ea-b8d5-d058f2895a84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:42 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -22983,16 +22495,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "632fa858-3c81-4c6c-bd30-58065d944cb3" + "25ed3fa0-b039-48b5-92e3-f395b66d35c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23012,34 +22524,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11663" + "11653" ], "x-ms-request-id": [ - "119c0a8f-6844-49c0-92c3-60e0b7b04f7b" + "4276b38e-cd3e-4d19-bfb8-ed42f7cf22e7" ], "x-ms-correlation-request-id": [ - "119c0a8f-6844-49c0-92c3-60e0b7b04f7b" + "4276b38e-cd3e-4d19-bfb8-ed42f7cf22e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:119c0a8f-6844-49c0-92c3-60e0b7b04f7b" + "WESTUS2:20210213T020743Z:4276b38e-cd3e-4d19-bfb8-ed42f7cf22e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:42 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23049,16 +22558,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9465182c-1f0a-42e7-b0ea-24177ba03bf0" + "4ac6dfee-37c8-4c68-b462-be4d676bf2fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23078,34 +22587,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11662" + "11652" ], "x-ms-request-id": [ - "a9b75787-5d9b-436d-bbc8-79788e0b9798" + "25a57f3e-11ae-4af9-ab6b-2c3a6e78bb82" ], "x-ms-correlation-request-id": [ - "a9b75787-5d9b-436d-bbc8-79788e0b9798" + "25a57f3e-11ae-4af9-ab6b-2c3a6e78bb82" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:a9b75787-5d9b-436d-bbc8-79788e0b9798" + "WESTUS2:20210213T020743Z:25a57f3e-11ae-4af9-ab6b-2c3a6e78bb82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:06 GMT" + "Sat, 13 Feb 2021 02:07:42 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41464001-bddf-4b5c-b12d-eb9dbf5315f5" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11651" + ], + "x-ms-request-id": [ + "fa73862b-cddc-4528-8dea-3df2eaf5e916" + ], + "x-ms-correlation-request-id": [ + "fa73862b-cddc-4528-8dea-3df2eaf5e916" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020743Z:fa73862b-cddc-4528-8dea-3df2eaf5e916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23115,16 +22684,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91a3cb9-2cc1-439c-9659-a73364f9f0b6" + "12c8a432-4137-4231-953f-701873786907" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23144,34 +22713,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11661" + "11650" ], "x-ms-request-id": [ - "573be304-2230-4c66-bf77-1442ac126575" + "2fa96176-6967-4b52-bf3e-5b16f4e11a7e" ], "x-ms-correlation-request-id": [ - "573be304-2230-4c66-bf77-1442ac126575" + "2fa96176-6967-4b52-bf3e-5b16f4e11a7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:573be304-2230-4c66-bf77-1442ac126575" + "WESTUS2:20210213T020743Z:2fa96176-6967-4b52-bf3e-5b16f4e11a7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:43 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6af40a1e-0634-44f5-8d46-5b222434a694" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11649" + ], + "x-ms-request-id": [ + "9d8ae4bb-b1c8-4972-9c35-45758a52b1dd" + ], + "x-ms-correlation-request-id": [ + "9d8ae4bb-b1c8-4972-9c35-45758a52b1dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020743Z:9d8ae4bb-b1c8-4972-9c35-45758a52b1dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23181,16 +22810,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbbaa3e9-65e2-466e-ae35-1c3df35e0995" + "705d7fa8-0ee8-402e-917c-fe73550ece7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23210,34 +22839,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11660" + "11648" ], "x-ms-request-id": [ - "241bb21c-8f16-477a-9ca4-e6ecfc9f803e" + "d3cb57b7-f3ea-4f23-b1e4-22b0a37b3b93" ], "x-ms-correlation-request-id": [ - "241bb21c-8f16-477a-9ca4-e6ecfc9f803e" + "d3cb57b7-f3ea-4f23-b1e4-22b0a37b3b93" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:241bb21c-8f16-477a-9ca4-e6ecfc9f803e" + "WESTUS2:20210213T020744Z:d3cb57b7-f3ea-4f23-b1e4-22b0a37b3b93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:43 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78744c0d-b650-4555-b6a4-95f38fd5c004" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11647" + ], + "x-ms-request-id": [ + "1b140eb6-8485-4320-bec1-959bdf59ab6a" + ], + "x-ms-correlation-request-id": [ + "1b140eb6-8485-4320-bec1-959bdf59ab6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020744Z:1b140eb6-8485-4320-bec1-959bdf59ab6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23247,16 +22936,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f19b5f05-396d-43ac-860c-f55a3943c76c" + "5de5e950-e333-4265-81c3-9918486892a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23276,34 +22965,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11659" + "11646" ], "x-ms-request-id": [ - "2dfced77-caf3-4031-b22d-519e1313cfbe" + "28a72812-f13a-4636-872c-0b9ce707cf55" ], "x-ms-correlation-request-id": [ - "2dfced77-caf3-4031-b22d-519e1313cfbe" + "28a72812-f13a-4636-872c-0b9ce707cf55" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:2dfced77-caf3-4031-b22d-519e1313cfbe" + "WESTUS2:20210213T020744Z:28a72812-f13a-4636-872c-0b9ce707cf55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:43 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23313,16 +22999,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5deeeaa2-e3de-4857-b2ab-c56f9a89d0b0" + "23fc0d22-84ff-4fd7-b83d-d83780a884dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23342,34 +23028,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11658" + "11645" ], "x-ms-request-id": [ - "83dcda8c-fa26-4f69-850c-91c6da6ce197" + "ac346fed-1c77-47e1-94c9-0f893b279836" ], "x-ms-correlation-request-id": [ - "83dcda8c-fa26-4f69-850c-91c6da6ce197" + "ac346fed-1c77-47e1-94c9-0f893b279836" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:83dcda8c-fa26-4f69-850c-91c6da6ce197" + "WESTUS2:20210213T020744Z:ac346fed-1c77-47e1-94c9-0f893b279836" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:43 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23379,16 +23062,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afb1af74-32b3-45f4-8f4a-bc948786ed58" + "567729b1-0f14-4f48-987b-aac0620c7bc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23408,34 +23091,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11657" + "11644" ], "x-ms-request-id": [ - "ff742635-f94e-4a24-a371-9e8055999d99" + "9e4cc477-128d-4a16-afc5-b368568546c9" ], "x-ms-correlation-request-id": [ - "ff742635-f94e-4a24-a371-9e8055999d99" + "9e4cc477-128d-4a16-afc5-b368568546c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204207Z:ff742635-f94e-4a24-a371-9e8055999d99" + "WESTUS2:20210213T020744Z:9e4cc477-128d-4a16-afc5-b368568546c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23445,16 +23125,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78762d24-2cf4-44ed-850e-ec5867ecb435" + "149b1235-8778-4b70-bdd8-1cec1884d760" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23474,34 +23154,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11656" + "11643" ], "x-ms-request-id": [ - "2e7914d5-59b3-481c-94d8-710d1ac766f9" + "14afdc9f-06eb-4b99-9a26-de76d2f91d26" ], "x-ms-correlation-request-id": [ - "2e7914d5-59b3-481c-94d8-710d1ac766f9" + "14afdc9f-06eb-4b99-9a26-de76d2f91d26" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:2e7914d5-59b3-481c-94d8-710d1ac766f9" + "WESTUS2:20210213T020744Z:14afdc9f-06eb-4b99-9a26-de76d2f91d26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23511,16 +23188,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60defcc6-1722-45a0-a33d-45ae910febca" + "958ce306-11de-4b12-aac3-48cb64046a33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23540,34 +23217,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11655" + "11642" ], "x-ms-request-id": [ - "ce7806b2-f7c3-4283-9147-17f648070491" + "1b16237f-e871-4b9a-aa80-975ff7b86d2f" ], "x-ms-correlation-request-id": [ - "ce7806b2-f7c3-4283-9147-17f648070491" + "1b16237f-e871-4b9a-aa80-975ff7b86d2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:ce7806b2-f7c3-4283-9147-17f648070491" + "WESTUS2:20210213T020745Z:1b16237f-e871-4b9a-aa80-975ff7b86d2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23577,16 +23251,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb16c1e5-b6a4-4e34-bfa4-22521ab1603a" + "7248d3ca-7c23-4221-8caf-c0516f07f5fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23606,34 +23280,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11654" + "11641" ], "x-ms-request-id": [ - "487c03ad-efc2-46b8-9fe9-1b34d6aa95d3" + "6005243b-ba4f-47dc-9ead-7e241b15f5c3" ], "x-ms-correlation-request-id": [ - "487c03ad-efc2-46b8-9fe9-1b34d6aa95d3" + "6005243b-ba4f-47dc-9ead-7e241b15f5c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:487c03ad-efc2-46b8-9fe9-1b34d6aa95d3" + "WESTUS2:20210213T020745Z:6005243b-ba4f-47dc-9ead-7e241b15f5c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:07 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23643,16 +23314,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d6a1e00-4ea5-418d-ba6e-8829b2a96a74" + "1ef1b864-7267-488a-afce-e545d35af9b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23672,34 +23343,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11653" + "11640" ], "x-ms-request-id": [ - "c2f72473-99a9-461e-b5d6-ade87493c7a2" + "1c3b6f43-01ef-4653-b729-5a018bc1b0f2" ], "x-ms-correlation-request-id": [ - "c2f72473-99a9-461e-b5d6-ade87493c7a2" + "1c3b6f43-01ef-4653-b729-5a018bc1b0f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:c2f72473-99a9-461e-b5d6-ade87493c7a2" + "WESTUS2:20210213T020745Z:1c3b6f43-01ef-4653-b729-5a018bc1b0f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23709,16 +23377,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce47039-340f-4995-b985-1bd6806f0761" + "e806aed5-a9ef-4e04-b3e4-78e8440b537a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23738,34 +23406,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11652" + "11639" ], "x-ms-request-id": [ - "263e214e-076a-46fe-8828-df88f19a19ec" + "2a860b12-4548-4034-acaf-d0f9be3e3764" ], "x-ms-correlation-request-id": [ - "263e214e-076a-46fe-8828-df88f19a19ec" + "2a860b12-4548-4034-acaf-d0f9be3e3764" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:263e214e-076a-46fe-8828-df88f19a19ec" + "WESTUS2:20210213T020745Z:2a860b12-4548-4034-acaf-d0f9be3e3764" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23775,16 +23440,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa779901-d3a0-4d91-ab54-934fd3775efc" + "885fc96a-c195-4890-bc97-9f6a6e7bb1e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23804,34 +23469,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11651" + "11638" ], "x-ms-request-id": [ - "f08c1cc3-5359-44e5-acb4-9950d4823b87" + "16ebb394-7f38-4adc-96eb-bbc18d117d42" ], "x-ms-correlation-request-id": [ - "f08c1cc3-5359-44e5-acb4-9950d4823b87" + "16ebb394-7f38-4adc-96eb-bbc18d117d42" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:f08c1cc3-5359-44e5-acb4-9950d4823b87" + "WESTUS2:20210213T020745Z:16ebb394-7f38-4adc-96eb-bbc18d117d42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:44 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23841,16 +23503,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd53129e-0d60-48b1-8e7f-1ea8220c6be4" + "6430ad68-7fa6-4180-9828-86ba024c0128" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23870,34 +23532,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11650" + "11637" ], "x-ms-request-id": [ - "7d5d6c58-4be4-4e2d-9045-a835cd6e12ec" + "7aa8020c-f6d5-4892-a5f4-b09ddf5e3e68" ], "x-ms-correlation-request-id": [ - "7d5d6c58-4be4-4e2d-9045-a835cd6e12ec" + "7aa8020c-f6d5-4892-a5f4-b09ddf5e3e68" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204208Z:7d5d6c58-4be4-4e2d-9045-a835cd6e12ec" + "WESTUS2:20210213T020745Z:7aa8020c-f6d5-4892-a5f4-b09ddf5e3e68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:45 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23907,16 +23566,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b81e5f0-55a7-412b-9a08-a01bc4de0dcf" + "6c24eace-bdd3-4988-bd9f-76d3d7d8fcae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -23936,34 +23595,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11649" + "11636" ], "x-ms-request-id": [ - "83f17fbe-24c2-4d37-b695-8066761e0f74" + "1e887877-099b-4094-aed0-8c0024ee4561" ], "x-ms-correlation-request-id": [ - "83f17fbe-24c2-4d37-b695-8066761e0f74" + "1e887877-099b-4094-aed0-8c0024ee4561" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:83f17fbe-24c2-4d37-b695-8066761e0f74" + "WESTUS2:20210213T020746Z:1e887877-099b-4094-aed0-8c0024ee4561" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:45 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -23973,16 +23629,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c474c0fe-9372-48ee-9e62-526e9760fdf8" + "16568a5b-6669-4ad7-b962-55dccb28d0e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24002,34 +23658,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11648" + "11635" ], "x-ms-request-id": [ - "17bbb96f-ec93-4563-b21c-9bb576337579" + "48f75be6-9850-436b-8ff0-2eb2afd445c2" ], "x-ms-correlation-request-id": [ - "17bbb96f-ec93-4563-b21c-9bb576337579" + "48f75be6-9850-436b-8ff0-2eb2afd445c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:17bbb96f-ec93-4563-b21c-9bb576337579" + "WESTUS2:20210213T020746Z:48f75be6-9850-436b-8ff0-2eb2afd445c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:08 GMT" + "Sat, 13 Feb 2021 02:07:45 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e8fd541-b069-4787-8741-13f53e820830" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11634" + ], + "x-ms-request-id": [ + "3584c4e1-ce8c-4792-9709-841cf5273266" + ], + "x-ms-correlation-request-id": [ + "3584c4e1-ce8c-4792-9709-841cf5273266" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020746Z:3584c4e1-ce8c-4792-9709-841cf5273266" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24039,16 +23755,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "353a7b8f-1e1a-4161-be22-7581803426da" + "27dd7f0a-4d0a-459d-bb82-e9190717a37c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24068,34 +23784,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11647" + "11633" ], "x-ms-request-id": [ - "bd7528ea-bf0b-4454-ac0a-31ce606bddc1" + "6798360a-a140-4511-8b7f-2dd426d9e3c7" ], "x-ms-correlation-request-id": [ - "bd7528ea-bf0b-4454-ac0a-31ce606bddc1" + "6798360a-a140-4511-8b7f-2dd426d9e3c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:bd7528ea-bf0b-4454-ac0a-31ce606bddc1" + "WESTUS2:20210213T020746Z:6798360a-a140-4511-8b7f-2dd426d9e3c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:45 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "598cb57b-edab-46ff-9f8a-660b1eae2d44" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11632" + ], + "x-ms-request-id": [ + "031a33af-9405-49be-b415-7b447d4c0678" + ], + "x-ms-correlation-request-id": [ + "031a33af-9405-49be-b415-7b447d4c0678" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020746Z:031a33af-9405-49be-b415-7b447d4c0678" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24105,16 +23881,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4497e0ad-f30b-4e00-b765-0a55b5bd60f5" + "dc0eca5f-f7b2-46d3-8638-7f3173f9c261" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24134,34 +23910,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11646" + "11631" ], "x-ms-request-id": [ - "964529a5-6687-42c0-927b-74f7b4793553" + "7fe5bf50-50fa-4719-87db-305c0bbe7b99" ], "x-ms-correlation-request-id": [ - "964529a5-6687-42c0-927b-74f7b4793553" + "7fe5bf50-50fa-4719-87db-305c0bbe7b99" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:964529a5-6687-42c0-927b-74f7b4793553" + "WESTUS2:20210213T020746Z:7fe5bf50-50fa-4719-87db-305c0bbe7b99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:46 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5d2bbbd-911f-4596-aa07-3898c4507414" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11630" + ], + "x-ms-request-id": [ + "83bd7dc1-e409-4070-80d3-574aeeb55e80" + ], + "x-ms-correlation-request-id": [ + "83bd7dc1-e409-4070-80d3-574aeeb55e80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020747Z:83bd7dc1-e409-4070-80d3-574aeeb55e80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24171,16 +24007,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba015cfd-2d67-4fa9-a25c-de64dabfd167" + "6b2cb65a-237d-4e11-ae23-135e9d824828" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24200,34 +24036,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11645" + "11629" ], "x-ms-request-id": [ - "093872cb-e0eb-49af-ac54-9c6b879ca6ae" + "50dc188f-fd4f-4264-ab4e-b0dae2d94650" ], "x-ms-correlation-request-id": [ - "093872cb-e0eb-49af-ac54-9c6b879ca6ae" + "50dc188f-fd4f-4264-ab4e-b0dae2d94650" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:093872cb-e0eb-49af-ac54-9c6b879ca6ae" + "WESTUS2:20210213T020747Z:50dc188f-fd4f-4264-ab4e-b0dae2d94650" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:46 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24237,16 +24070,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d334a92-c8ed-4e29-adcd-815c2c84de88" + "207a6af8-029b-401c-9449-fd14e7e32ffe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24266,34 +24099,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11644" + "11628" ], "x-ms-request-id": [ - "07b03883-b2e3-4e8b-8941-683dd159cc62" + "834ffd96-30cf-457c-99c6-835338f95622" ], "x-ms-correlation-request-id": [ - "07b03883-b2e3-4e8b-8941-683dd159cc62" + "834ffd96-30cf-457c-99c6-835338f95622" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204209Z:07b03883-b2e3-4e8b-8941-683dd159cc62" + "WESTUS2:20210213T020747Z:834ffd96-30cf-457c-99c6-835338f95622" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:46 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24303,16 +24133,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e66dc5-916f-4e24-ae5c-b141cb69519f" + "710ba4d1-0047-4f2f-8160-cf15dcae9b5f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24332,34 +24162,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11643" + "11627" ], "x-ms-request-id": [ - "402260d1-d908-4201-9c17-e440bfd1b4c6" + "7b62f3ce-a9d8-4815-9e2d-c8b2ed690d7f" ], "x-ms-correlation-request-id": [ - "402260d1-d908-4201-9c17-e440bfd1b4c6" + "7b62f3ce-a9d8-4815-9e2d-c8b2ed690d7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:402260d1-d908-4201-9c17-e440bfd1b4c6" + "WESTUS2:20210213T020747Z:7b62f3ce-a9d8-4815-9e2d-c8b2ed690d7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:46 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24369,16 +24196,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e73ad9d-e5d9-40ca-825b-092f4e02444e" + "2ba776da-a1c6-4573-bbd4-b317a097b887" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24398,34 +24225,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11642" + "11626" ], "x-ms-request-id": [ - "173d0bc1-c69f-4fb3-acf8-b156d5e45678" + "4e5166b7-25db-4ae8-995f-f22af4ee0224" ], "x-ms-correlation-request-id": [ - "173d0bc1-c69f-4fb3-acf8-b156d5e45678" + "4e5166b7-25db-4ae8-995f-f22af4ee0224" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:173d0bc1-c69f-4fb3-acf8-b156d5e45678" + "WESTUS2:20210213T020747Z:4e5166b7-25db-4ae8-995f-f22af4ee0224" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:46 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24435,16 +24259,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f63da21-048e-4151-9dda-7d646942dd15" + "ef2e194b-e750-4952-90b5-32db1a046884" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24464,34 +24288,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11641" + "11625" ], "x-ms-request-id": [ - "3429ce6d-961e-4a48-a7bb-e41bf3b4841a" + "663ca847-17d0-44f0-bc92-ce25290cdb60" ], "x-ms-correlation-request-id": [ - "3429ce6d-961e-4a48-a7bb-e41bf3b4841a" + "663ca847-17d0-44f0-bc92-ce25290cdb60" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:3429ce6d-961e-4a48-a7bb-e41bf3b4841a" + "WESTUS2:20210213T020747Z:663ca847-17d0-44f0-bc92-ce25290cdb60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:09 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24501,16 +24322,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88ea40f2-2fd0-4f4a-b749-a501cc7e6888" + "1105eb71-4ba1-40a6-af34-5e4e7ec39fdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24530,34 +24351,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11640" + "11624" ], "x-ms-request-id": [ - "ddb351d6-10fe-4b0f-b380-4dd5f9a38b69" + "81db0e84-c864-40ec-9b23-29d3649a4f23" ], "x-ms-correlation-request-id": [ - "ddb351d6-10fe-4b0f-b380-4dd5f9a38b69" + "81db0e84-c864-40ec-9b23-29d3649a4f23" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:ddb351d6-10fe-4b0f-b380-4dd5f9a38b69" + "WESTUS2:20210213T020748Z:81db0e84-c864-40ec-9b23-29d3649a4f23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24567,16 +24385,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27ccbb66-38d3-4c64-bbeb-2542db062ef1" + "281dd3bb-effd-4bb4-942f-63059f6fcad5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24596,34 +24414,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11639" + "11623" ], "x-ms-request-id": [ - "fc23a486-1ec4-4aa0-b8a1-3fbef599feba" + "e6a08f2d-4453-4a21-903a-31368b9d80bf" ], "x-ms-correlation-request-id": [ - "fc23a486-1ec4-4aa0-b8a1-3fbef599feba" + "e6a08f2d-4453-4a21-903a-31368b9d80bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:fc23a486-1ec4-4aa0-b8a1-3fbef599feba" + "WESTUS2:20210213T020748Z:e6a08f2d-4453-4a21-903a-31368b9d80bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24633,16 +24448,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac3a096e-357c-4f87-97f5-4f956b8e5106" + "d0d0e8bb-91fc-4d6c-ac0e-6dd0c84f0050" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24662,34 +24477,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11638" + "11622" ], "x-ms-request-id": [ - "5f94fefd-dddf-465f-b057-a92cd242857b" + "07ff48d5-52ad-4188-b96f-b0ff68fa4d7c" ], "x-ms-correlation-request-id": [ - "5f94fefd-dddf-465f-b057-a92cd242857b" + "07ff48d5-52ad-4188-b96f-b0ff68fa4d7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:5f94fefd-dddf-465f-b057-a92cd242857b" + "WESTUS2:20210213T020748Z:07ff48d5-52ad-4188-b96f-b0ff68fa4d7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24699,16 +24511,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "994e8c50-1337-4b51-bebf-5b94376b4cfb" + "f35cdf10-f406-4fbc-9285-dae75e692209" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24728,34 +24540,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11637" + "11621" ], "x-ms-request-id": [ - "6b900f24-a972-4d40-aa6f-0e06a8a1193c" + "8781c6f8-60b5-4a70-9a4c-158dbcb3dd66" ], "x-ms-correlation-request-id": [ - "6b900f24-a972-4d40-aa6f-0e06a8a1193c" + "8781c6f8-60b5-4a70-9a4c-158dbcb3dd66" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204210Z:6b900f24-a972-4d40-aa6f-0e06a8a1193c" + "WESTUS2:20210213T020748Z:8781c6f8-60b5-4a70-9a4c-158dbcb3dd66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24765,16 +24574,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "810d5428-82d8-4a7c-a2a1-fda7685298e6" + "6a49dcd9-8347-4225-a4c9-38aa04c67d7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24794,34 +24603,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11636" + "11620" ], "x-ms-request-id": [ - "16cabe01-5589-43b6-a664-eed44d702e77" + "09f0ae53-93fb-4d8c-a66e-1685c87299bc" ], "x-ms-correlation-request-id": [ - "16cabe01-5589-43b6-a664-eed44d702e77" + "09f0ae53-93fb-4d8c-a66e-1685c87299bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:16cabe01-5589-43b6-a664-eed44d702e77" + "WESTUS2:20210213T020748Z:09f0ae53-93fb-4d8c-a66e-1685c87299bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:47 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24831,16 +24637,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e1217f3-df6d-4c51-9be7-a1f837f36b20" + "59b4eb02-518e-43b7-9e71-7291b228c46a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24860,34 +24666,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11635" + "11619" ], "x-ms-request-id": [ - "80535c01-ec91-474d-bf46-6a1425bb0f89" + "e6ea0cb5-ee68-40ff-b32f-500852f0d4aa" ], "x-ms-correlation-request-id": [ - "80535c01-ec91-474d-bf46-6a1425bb0f89" + "e6ea0cb5-ee68-40ff-b32f-500852f0d4aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:80535c01-ec91-474d-bf46-6a1425bb0f89" + "WESTUS2:20210213T020748Z:e6ea0cb5-ee68-40ff-b32f-500852f0d4aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:10 GMT" + "Sat, 13 Feb 2021 02:07:48 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24897,16 +24700,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c063c76d-455f-44b5-8186-5f8951986772" + "40c06840-b153-4e79-94bc-c97b7efde279" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24926,34 +24729,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11634" + "11618" ], "x-ms-request-id": [ - "93971fba-3c64-44fb-8bcb-9eb39d3a4066" + "4b60438b-bf0e-4f2b-98ed-3a231cd2c946" ], "x-ms-correlation-request-id": [ - "93971fba-3c64-44fb-8bcb-9eb39d3a4066" + "4b60438b-bf0e-4f2b-98ed-3a231cd2c946" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:93971fba-3c64-44fb-8bcb-9eb39d3a4066" + "WESTUS2:20210213T020749Z:4b60438b-bf0e-4f2b-98ed-3a231cd2c946" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:48 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a34327e6-8dde-4c1e-84a3-2bc79a5454fd" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11617" + ], + "x-ms-request-id": [ + "fc32a981-a1bf-4c8d-b6d1-596ba7e11e0c" + ], + "x-ms-correlation-request-id": [ + "fc32a981-a1bf-4c8d-b6d1-596ba7e11e0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020749Z:fc32a981-a1bf-4c8d-b6d1-596ba7e11e0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -24963,16 +24826,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ffccf38-583c-4226-8fcf-01965977870c" + "88d3679b-7030-4694-8132-59fa5fbc2eef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -24992,34 +24855,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11633" + "11616" ], "x-ms-request-id": [ - "0930b1f4-8e19-4982-bd6f-fdfaeb7402fc" + "1bae922a-385c-4dc1-b120-d8d627b0d910" ], "x-ms-correlation-request-id": [ - "0930b1f4-8e19-4982-bd6f-fdfaeb7402fc" + "1bae922a-385c-4dc1-b120-d8d627b0d910" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:0930b1f4-8e19-4982-bd6f-fdfaeb7402fc" + "WESTUS2:20210213T020749Z:1bae922a-385c-4dc1-b120-d8d627b0d910" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:48 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00d3ba95-3cb0-4bb5-8596-0cae45a9e635" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11615" + ], + "x-ms-request-id": [ + "df0a7601-5cf7-41b1-a780-b1c5cb312693" + ], + "x-ms-correlation-request-id": [ + "df0a7601-5cf7-41b1-a780-b1c5cb312693" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020749Z:df0a7601-5cf7-41b1-a780-b1c5cb312693" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25029,16 +24952,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79d3db94-7e59-4ab0-a028-1a02dbdaf98d" + "7f48b1a3-ac3e-4817-babe-a3281c939801" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25058,34 +24981,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11632" + "11614" ], "x-ms-request-id": [ - "62bddd80-b2d2-456c-89d4-0990ded89551" + "16e6c81b-0966-4bbc-9e1b-23bf3515a90f" ], "x-ms-correlation-request-id": [ - "62bddd80-b2d2-456c-89d4-0990ded89551" + "16e6c81b-0966-4bbc-9e1b-23bf3515a90f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:62bddd80-b2d2-456c-89d4-0990ded89551" + "WESTUS2:20210213T020749Z:16e6c81b-0966-4bbc-9e1b-23bf3515a90f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:48 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48be390f-6e35-456b-b5e4-3b047b000c28" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11613" + ], + "x-ms-request-id": [ + "87af4635-e4a7-40fc-8123-7624cb31ed32" + ], + "x-ms-correlation-request-id": [ + "87af4635-e4a7-40fc-8123-7624cb31ed32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020749Z:87af4635-e4a7-40fc-8123-7624cb31ed32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25095,16 +25078,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a79f0e0-fee8-4108-bcf7-d40a8a6acdf4" + "8b22000e-3aab-4abb-842d-0b66c16dd7c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25124,34 +25107,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11631" + "11612" ], "x-ms-request-id": [ - "df33b64d-39a7-4a98-b7f7-7da9fe408808" + "c8124a71-a03b-4285-afe5-9e661f0fb426" ], "x-ms-correlation-request-id": [ - "df33b64d-39a7-4a98-b7f7-7da9fe408808" + "c8124a71-a03b-4285-afe5-9e661f0fb426" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:df33b64d-39a7-4a98-b7f7-7da9fe408808" + "WESTUS2:20210213T020750Z:c8124a71-a03b-4285-afe5-9e661f0fb426" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:49 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25161,16 +25141,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea0f9d67-9202-464b-aec5-824df6cd2ab2" + "f330f621-0d9d-44d6-a06d-0c69e19ebca6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25190,34 +25170,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11630" + "11611" ], "x-ms-request-id": [ - "a68e15b9-4063-49eb-9c35-c9cffe4381da" + "922755bc-c934-4c4e-a05d-8c351843ad1b" ], "x-ms-correlation-request-id": [ - "a68e15b9-4063-49eb-9c35-c9cffe4381da" + "922755bc-c934-4c4e-a05d-8c351843ad1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204211Z:a68e15b9-4063-49eb-9c35-c9cffe4381da" + "WESTUS2:20210213T020750Z:922755bc-c934-4c4e-a05d-8c351843ad1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:49 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25227,16 +25204,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "491fbde6-b0bf-467c-83f6-55a2f4d23ab4" + "7d7a01d3-a716-46b7-ac53-2564cf31f28d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25256,34 +25233,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11629" + "11610" ], "x-ms-request-id": [ - "d2f0226d-f3be-405b-bdbf-eb1c0caa85c6" + "fda994e0-a0aa-4fd8-9189-a9e0487a15e4" ], "x-ms-correlation-request-id": [ - "d2f0226d-f3be-405b-bdbf-eb1c0caa85c6" + "fda994e0-a0aa-4fd8-9189-a9e0487a15e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:d2f0226d-f3be-405b-bdbf-eb1c0caa85c6" + "WESTUS2:20210213T020750Z:fda994e0-a0aa-4fd8-9189-a9e0487a15e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:49 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25293,16 +25267,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "138dd753-2004-472c-9d4c-bc7f7d47e49a" + "a83a44dc-2dab-4d94-93a2-186e7789a415" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25322,34 +25296,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11628" + "11609" ], "x-ms-request-id": [ - "bb303298-5b84-4819-94a6-ab63ba23bbd4" + "a6818ffc-f3ac-44fb-bbdf-4605d8c11be0" ], "x-ms-correlation-request-id": [ - "bb303298-5b84-4819-94a6-ab63ba23bbd4" + "a6818ffc-f3ac-44fb-bbdf-4605d8c11be0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:bb303298-5b84-4819-94a6-ab63ba23bbd4" + "WESTUS2:20210213T020750Z:a6818ffc-f3ac-44fb-bbdf-4605d8c11be0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:11 GMT" + "Sat, 13 Feb 2021 02:07:49 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25359,16 +25330,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bafcb33e-59a8-4775-9031-dabf8c239f4a" + "7881c06f-01eb-454a-87ee-b0f543777d92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25388,34 +25359,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11627" + "11608" ], "x-ms-request-id": [ - "6b0e40f2-056c-4144-b699-efc5d4d7b0db" + "f9354aa6-9cf4-49da-a556-2ed61f74aac0" ], "x-ms-correlation-request-id": [ - "6b0e40f2-056c-4144-b699-efc5d4d7b0db" + "f9354aa6-9cf4-49da-a556-2ed61f74aac0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:6b0e40f2-056c-4144-b699-efc5d4d7b0db" + "WESTUS2:20210213T020750Z:f9354aa6-9cf4-49da-a556-2ed61f74aac0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:49 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25425,16 +25393,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8b096fe-e107-4c52-aa5f-d13cd4ce64ab" + "5be1fd84-9d4b-4020-bea0-4d8dceb81360" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25454,34 +25422,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11626" + "11607" ], "x-ms-request-id": [ - "abbdae7a-3347-4451-bc46-e53f2430724e" + "11c4db1a-1f81-4fbc-bcf6-2d7103ac2367" ], "x-ms-correlation-request-id": [ - "abbdae7a-3347-4451-bc46-e53f2430724e" + "11c4db1a-1f81-4fbc-bcf6-2d7103ac2367" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:abbdae7a-3347-4451-bc46-e53f2430724e" + "WESTUS2:20210213T020750Z:11c4db1a-1f81-4fbc-bcf6-2d7103ac2367" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25491,16 +25456,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "598a1ffc-08c8-4221-984e-2e21738ff459" + "a4d9ca88-97ff-4228-a237-ab896bbd0960" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25520,34 +25485,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11625" + "11606" ], "x-ms-request-id": [ - "afa9db59-4602-4bd7-a4a6-d2720ee41273" + "8fa18056-6964-4210-993d-bacdab4a5178" ], "x-ms-correlation-request-id": [ - "afa9db59-4602-4bd7-a4a6-d2720ee41273" + "8fa18056-6964-4210-993d-bacdab4a5178" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:afa9db59-4602-4bd7-a4a6-d2720ee41273" + "WESTUS2:20210213T020751Z:8fa18056-6964-4210-993d-bacdab4a5178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25557,16 +25519,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6442ab7d-897e-44b3-a275-1e11dba7bf00" + "82614ee2-9986-4254-97b1-1a54c74fa8fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25586,34 +25548,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11624" + "11605" ], "x-ms-request-id": [ - "e229e9ca-209e-4df1-958c-d59f6d943af3" + "6f344e13-2b42-4c29-a251-ff8c6c081150" ], "x-ms-correlation-request-id": [ - "e229e9ca-209e-4df1-958c-d59f6d943af3" + "6f344e13-2b42-4c29-a251-ff8c6c081150" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:e229e9ca-209e-4df1-958c-d59f6d943af3" + "WESTUS2:20210213T020751Z:6f344e13-2b42-4c29-a251-ff8c6c081150" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25623,16 +25582,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e060ed6e-2733-49c3-964f-96d57d5b14c3" + "59779683-9a67-4418-bf6c-41d78692209d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25652,34 +25611,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11623" + "11604" ], "x-ms-request-id": [ - "11c6382f-84aa-43db-880a-91d4165df7fd" + "8a0ee8ac-8637-4041-9f0d-4ddcae302901" ], "x-ms-correlation-request-id": [ - "11c6382f-84aa-43db-880a-91d4165df7fd" + "8a0ee8ac-8637-4041-9f0d-4ddcae302901" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204212Z:11c6382f-84aa-43db-880a-91d4165df7fd" + "WESTUS2:20210213T020751Z:8a0ee8ac-8637-4041-9f0d-4ddcae302901" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25689,16 +25645,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94064df9-55be-4318-9158-82ac5e994fc5" + "fbabc997-2d30-451d-a708-4751573f63a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25718,34 +25674,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" + "11603" ], "x-ms-request-id": [ - "25f5814a-4eb7-4b48-be0e-a68e0cbe01d7" + "89d2a54e-9c75-4370-ba50-79a5ae37bb40" ], "x-ms-correlation-request-id": [ - "25f5814a-4eb7-4b48-be0e-a68e0cbe01d7" + "89d2a54e-9c75-4370-ba50-79a5ae37bb40" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:25f5814a-4eb7-4b48-be0e-a68e0cbe01d7" + "WESTUS2:20210213T020751Z:89d2a54e-9c75-4370-ba50-79a5ae37bb40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25755,16 +25708,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f443a138-e896-4a13-86f4-10bd0463cd5e" + "a1023859-5637-46c9-b8a0-59578b394600" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25784,34 +25737,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11621" + "11602" ], "x-ms-request-id": [ - "f1234559-53bf-409d-9f83-e112a62eb24c" + "b3b27208-58ab-4369-a104-8000bd94ed80" ], "x-ms-correlation-request-id": [ - "f1234559-53bf-409d-9f83-e112a62eb24c" + "b3b27208-58ab-4369-a104-8000bd94ed80" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:f1234559-53bf-409d-9f83-e112a62eb24c" + "WESTUS2:20210213T020751Z:b3b27208-58ab-4369-a104-8000bd94ed80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:12 GMT" + "Sat, 13 Feb 2021 02:07:50 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25821,16 +25771,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0751ae67-5ba8-40d5-aa87-7d9fa6a3b2f8" + "8daed924-75c4-409f-9b9d-5dfde139944f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25850,34 +25800,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11620" + "11601" ], "x-ms-request-id": [ - "6c024572-71bf-4f70-9a3b-40b49f9b44ab" + "c7490f25-d998-4256-a6cc-51643d67bb5b" ], "x-ms-correlation-request-id": [ - "6c024572-71bf-4f70-9a3b-40b49f9b44ab" + "c7490f25-d998-4256-a6cc-51643d67bb5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:6c024572-71bf-4f70-9a3b-40b49f9b44ab" + "WESTUS2:20210213T020752Z:c7490f25-d998-4256-a6cc-51643d67bb5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:51 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e53f6c0d-c13f-4582-aa3d-0386ee8f3476" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11600" + ], + "x-ms-request-id": [ + "b18f5e45-4eec-4788-8acc-49446acc3ff6" + ], + "x-ms-correlation-request-id": [ + "b18f5e45-4eec-4788-8acc-49446acc3ff6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020752Z:b18f5e45-4eec-4788-8acc-49446acc3ff6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25887,16 +25897,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6f7a8b6-de7e-4010-a29a-0c31a801574b" + "4f42507b-8944-4e4e-9b45-80523cb6ec16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25916,34 +25926,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" + "11599" ], "x-ms-request-id": [ - "cef4dc6b-0847-4f75-b72c-406c7af0a97d" + "08f70e9f-a579-4bd3-ab6b-1eca9a071e70" ], "x-ms-correlation-request-id": [ - "cef4dc6b-0847-4f75-b72c-406c7af0a97d" + "08f70e9f-a579-4bd3-ab6b-1eca9a071e70" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:cef4dc6b-0847-4f75-b72c-406c7af0a97d" + "WESTUS2:20210213T020752Z:08f70e9f-a579-4bd3-ab6b-1eca9a071e70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:51 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f508efdd-b142-4b8b-b90e-8a80b8cd52cc" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11598" + ], + "x-ms-request-id": [ + "bad3ea4e-26c0-4b39-8e2b-8c258711df43" + ], + "x-ms-correlation-request-id": [ + "bad3ea4e-26c0-4b39-8e2b-8c258711df43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020752Z:bad3ea4e-26c0-4b39-8e2b-8c258711df43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -25953,16 +26023,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a912b52f-fbfb-42ea-9873-0f197b9d33e3" + "5415b84b-718d-4e51-8aea-c92e57eb9cdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -25982,34 +26052,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11618" + "11597" ], "x-ms-request-id": [ - "21185c7a-e7fb-4138-8daa-437f78f3bf1d" + "6fe1ad66-3da1-4fcd-906c-f1ac1c9e0215" ], "x-ms-correlation-request-id": [ - "21185c7a-e7fb-4138-8daa-437f78f3bf1d" + "6fe1ad66-3da1-4fcd-906c-f1ac1c9e0215" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:21185c7a-e7fb-4138-8daa-437f78f3bf1d" + "WESTUS2:20210213T020752Z:6fe1ad66-3da1-4fcd-906c-f1ac1c9e0215" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:51 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94983a0d-2040-4e7f-9ce4-1cb3010e8a55" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11596" + ], + "x-ms-request-id": [ + "f23f5409-9d8c-4679-b767-4468ec51122e" + ], + "x-ms-correlation-request-id": [ + "f23f5409-9d8c-4679-b767-4468ec51122e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020752Z:f23f5409-9d8c-4679-b767-4468ec51122e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26019,16 +26149,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "536b8352-4a28-4cb8-8bab-8a20d8d93bd7" + "ff6af505-90d5-4fae-bbcb-bbae90518bfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26048,34 +26178,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11617" + "11595" ], "x-ms-request-id": [ - "ec2ef8a5-bf59-41a3-a521-37ddd47977b3" + "ce13413b-4135-4bc1-b02e-60dadd73f703" ], "x-ms-correlation-request-id": [ - "ec2ef8a5-bf59-41a3-a521-37ddd47977b3" + "ce13413b-4135-4bc1-b02e-60dadd73f703" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204213Z:ec2ef8a5-bf59-41a3-a521-37ddd47977b3" + "WESTUS2:20210213T020753Z:ce13413b-4135-4bc1-b02e-60dadd73f703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26085,16 +26212,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "879a268a-7133-4b73-9190-4b296a4189e9" + "62c0fcda-3b51-475a-8d87-db77abb547ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26114,34 +26241,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11616" + "11594" ], "x-ms-request-id": [ - "141f8cce-159c-4a4b-bb0f-e8e42986717d" + "a2153730-65c8-487e-a2b2-8c264a1c74e4" ], "x-ms-correlation-request-id": [ - "141f8cce-159c-4a4b-bb0f-e8e42986717d" + "a2153730-65c8-487e-a2b2-8c264a1c74e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:141f8cce-159c-4a4b-bb0f-e8e42986717d" + "WESTUS2:20210213T020753Z:a2153730-65c8-487e-a2b2-8c264a1c74e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26151,16 +26275,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fef62a99-e268-4d75-a411-ce7377125a1f" + "df1ec18d-9ebc-4459-a975-b6f2aa106e89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26180,34 +26304,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11615" + "11593" ], "x-ms-request-id": [ - "3f4037bb-44c4-4a06-b21a-3fac03a52d49" + "446d15b9-9d3a-4aac-b9cd-ccf16596df86" ], "x-ms-correlation-request-id": [ - "3f4037bb-44c4-4a06-b21a-3fac03a52d49" + "446d15b9-9d3a-4aac-b9cd-ccf16596df86" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:3f4037bb-44c4-4a06-b21a-3fac03a52d49" + "WESTUS2:20210213T020753Z:446d15b9-9d3a-4aac-b9cd-ccf16596df86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26217,16 +26338,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26c4e1ca-7fc8-4eda-926a-f42ba1952b16" + "edd68016-d56b-4b5a-9861-0a2bd42a8430" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26246,34 +26367,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11614" + "11592" ], "x-ms-request-id": [ - "387d9159-6d29-49aa-85a2-cc70876b3d66" + "1fc4abbb-1bfc-428f-9c9b-5ebaccf2fdee" ], "x-ms-correlation-request-id": [ - "387d9159-6d29-49aa-85a2-cc70876b3d66" + "1fc4abbb-1bfc-428f-9c9b-5ebaccf2fdee" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:387d9159-6d29-49aa-85a2-cc70876b3d66" + "WESTUS2:20210213T020753Z:1fc4abbb-1bfc-428f-9c9b-5ebaccf2fdee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:13 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26283,16 +26401,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bef17602-a6d0-42a8-a0e1-712d50a2421f" + "f26a659c-51e5-4be3-b10e-1ce52ec6b5c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26312,34 +26430,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11613" + "11591" ], "x-ms-request-id": [ - "e081a20d-89ee-470c-8969-65f495c801ac" + "4515dc48-0a80-4c99-a6e0-fc006f9c965d" ], "x-ms-correlation-request-id": [ - "e081a20d-89ee-470c-8969-65f495c801ac" + "4515dc48-0a80-4c99-a6e0-fc006f9c965d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:e081a20d-89ee-470c-8969-65f495c801ac" + "WESTUS2:20210213T020753Z:4515dc48-0a80-4c99-a6e0-fc006f9c965d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26349,16 +26464,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "848cc073-75b6-47fd-992d-711c0b136d3d" + "67997ebb-fa4b-4019-abad-943a82eeda2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26378,34 +26493,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" + "11590" ], "x-ms-request-id": [ - "8368e52e-c833-4482-bdc9-c40c0c62a1df" + "8dbab4ff-b804-49f8-9aac-f85a96a2e75c" ], "x-ms-correlation-request-id": [ - "8368e52e-c833-4482-bdc9-c40c0c62a1df" + "8dbab4ff-b804-49f8-9aac-f85a96a2e75c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:8368e52e-c833-4482-bdc9-c40c0c62a1df" + "WESTUS2:20210213T020753Z:8dbab4ff-b804-49f8-9aac-f85a96a2e75c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:52 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26415,16 +26527,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cc5de8c-4ca6-4953-9966-cee1fe1c4c3c" + "6818c11f-dcef-4627-bde9-e302e09fb751" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26444,34 +26556,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11611" + "11589" ], "x-ms-request-id": [ - "a3a77cac-a38a-4326-a866-c1deb56ef617" + "72934191-f588-47dc-a1fa-02b3ac5651df" ], "x-ms-correlation-request-id": [ - "a3a77cac-a38a-4326-a866-c1deb56ef617" + "72934191-f588-47dc-a1fa-02b3ac5651df" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:a3a77cac-a38a-4326-a866-c1deb56ef617" + "WESTUS2:20210213T020754Z:72934191-f588-47dc-a1fa-02b3ac5651df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26481,16 +26590,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c332177-637c-42c3-999f-80a4f50cd6ee" + "967cb9b9-8b6c-4a1f-a6e0-afc080bc6b55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26510,34 +26619,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11610" + "11588" ], "x-ms-request-id": [ - "64a02387-40b8-4d04-a6e2-b2e608eca666" + "144de543-8124-452a-a07f-f72ae2aa64dc" ], "x-ms-correlation-request-id": [ - "64a02387-40b8-4d04-a6e2-b2e608eca666" + "144de543-8124-452a-a07f-f72ae2aa64dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204214Z:64a02387-40b8-4d04-a6e2-b2e608eca666" + "WESTUS2:20210213T020754Z:144de543-8124-452a-a07f-f72ae2aa64dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26547,16 +26653,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc80bd58-ded1-42da-8221-723d37637e00" + "373781ad-38a8-49c6-9c69-0bb102210542" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26576,34 +26682,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11609" + "11587" ], "x-ms-request-id": [ - "8e5f2d00-6079-4a3b-bba4-c0b90aa6660a" + "4a1fe274-4ba1-45fb-94fb-6ec1ab5b6b87" ], "x-ms-correlation-request-id": [ - "8e5f2d00-6079-4a3b-bba4-c0b90aa6660a" + "4a1fe274-4ba1-45fb-94fb-6ec1ab5b6b87" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:8e5f2d00-6079-4a3b-bba4-c0b90aa6660a" + "WESTUS2:20210213T020754Z:4a1fe274-4ba1-45fb-94fb-6ec1ab5b6b87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26613,16 +26716,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31d1a5f2-589e-4681-b907-8a360b50ce89" + "748d3c59-f405-4a07-9b94-ec8820555665" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26642,34 +26745,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11608" + "11586" ], "x-ms-request-id": [ - "2a2ae302-e8d6-4af3-8a4e-90c28d4e604d" + "ff854fc9-d45b-4428-8080-4303fc69d4a9" ], "x-ms-correlation-request-id": [ - "2a2ae302-e8d6-4af3-8a4e-90c28d4e604d" + "ff854fc9-d45b-4428-8080-4303fc69d4a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:2a2ae302-e8d6-4af3-8a4e-90c28d4e604d" + "WESTUS2:20210213T020754Z:ff854fc9-d45b-4428-8080-4303fc69d4a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26679,16 +26779,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1af6caa-d07a-40a6-baa9-3d621500c35f" + "7564db16-3fb6-48ef-8a96-5ebdf7721f33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26708,34 +26808,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11607" + "11585" ], "x-ms-request-id": [ - "0435a425-2d21-49fa-ae70-515fc5122156" + "da0ac309-c5cb-4aa4-8860-9a2f8eba859d" ], "x-ms-correlation-request-id": [ - "0435a425-2d21-49fa-ae70-515fc5122156" + "da0ac309-c5cb-4aa4-8860-9a2f8eba859d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:0435a425-2d21-49fa-ae70-515fc5122156" + "WESTUS2:20210213T020754Z:da0ac309-c5cb-4aa4-8860-9a2f8eba859d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:14 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26745,16 +26842,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8478b2e-7cdb-43d0-8fa1-e4c1e21b6fd4" + "2514741b-33b1-47ef-9759-5f96026a2f4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26774,34 +26871,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11606" + "11584" ], "x-ms-request-id": [ - "a357ba8f-0acd-4985-9427-bad9ab3dc5c7" + "6b4430ac-0ba7-4b6d-a7ef-3632461dd586" ], "x-ms-correlation-request-id": [ - "a357ba8f-0acd-4985-9427-bad9ab3dc5c7" + "6b4430ac-0ba7-4b6d-a7ef-3632461dd586" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:a357ba8f-0acd-4985-9427-bad9ab3dc5c7" + "WESTUS2:20210213T020754Z:6b4430ac-0ba7-4b6d-a7ef-3632461dd586" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:53 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecea9438-cb51-4295-a271-732ddca8b50b" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11583" + ], + "x-ms-request-id": [ + "2bf2d858-0d4e-427d-9abd-803a9b267ce7" + ], + "x-ms-correlation-request-id": [ + "2bf2d858-0d4e-427d-9abd-803a9b267ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020755Z:2bf2d858-0d4e-427d-9abd-803a9b267ce7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26811,16 +26968,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a94cea-59b7-4e5c-92bf-2c33d49105ba" + "45f44fe9-4789-42e6-ae0e-e2114dd88c9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26840,34 +26997,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11605" + "11582" ], "x-ms-request-id": [ - "d68ff65e-c78c-4da8-ba07-a9f981bff38f" + "a5c9bdd6-4f93-4fce-be44-e0360d8ce55b" ], "x-ms-correlation-request-id": [ - "d68ff65e-c78c-4da8-ba07-a9f981bff38f" + "a5c9bdd6-4f93-4fce-be44-e0360d8ce55b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:d68ff65e-c78c-4da8-ba07-a9f981bff38f" + "WESTUS2:20210213T020755Z:a5c9bdd6-4f93-4fce-be44-e0360d8ce55b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:54 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00198fe6-f87e-4244-9d0c-a8caf5102e41" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11581" + ], + "x-ms-request-id": [ + "612e1ae7-eff0-42d9-8d8f-ffb64b5dc25c" + ], + "x-ms-correlation-request-id": [ + "612e1ae7-eff0-42d9-8d8f-ffb64b5dc25c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020755Z:612e1ae7-eff0-42d9-8d8f-ffb64b5dc25c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26877,16 +27094,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1054093-37e7-4a55-8833-c1efef992ad0" + "ab04829e-d79e-43d8-b31e-ff7231c303b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26906,34 +27123,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11604" + "11580" ], "x-ms-request-id": [ - "aeada35d-4cc9-41d1-8ee7-2099e1e46d44" + "c1a199dc-8f6c-4b5e-9f72-9a0836dd1b5d" ], "x-ms-correlation-request-id": [ - "aeada35d-4cc9-41d1-8ee7-2099e1e46d44" + "c1a199dc-8f6c-4b5e-9f72-9a0836dd1b5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:aeada35d-4cc9-41d1-8ee7-2099e1e46d44" + "WESTUS2:20210213T020755Z:c1a199dc-8f6c-4b5e-9f72-9a0836dd1b5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:54 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d150141-72e3-4d0e-b8ba-a5001d731926" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11579" + ], + "x-ms-request-id": [ + "fe1f83b0-7491-4d52-8a07-4f0222c5abf2" + ], + "x-ms-correlation-request-id": [ + "fe1f83b0-7491-4d52-8a07-4f0222c5abf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020755Z:fe1f83b0-7491-4d52-8a07-4f0222c5abf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -26943,16 +27220,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "000029cf-0381-4194-8af6-ef5d0388a35e" + "69d0d123-92b1-4bb2-ad11-308f8d192126" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -26972,34 +27249,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11603" + "11578" ], "x-ms-request-id": [ - "f89be70f-9770-47cf-b9a4-a4b59bf89dab" + "a85f7ee3-ea11-42c0-93ce-9551b7707f12" ], "x-ms-correlation-request-id": [ - "f89be70f-9770-47cf-b9a4-a4b59bf89dab" + "a85f7ee3-ea11-42c0-93ce-9551b7707f12" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:f89be70f-9770-47cf-b9a4-a4b59bf89dab" + "WESTUS2:20210213T020755Z:a85f7ee3-ea11-42c0-93ce-9551b7707f12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:54 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27009,16 +27283,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91deabf4-3f1e-4227-9eda-bd7cc6de038e" + "2752788e-6639-4ab6-b086-8563d3bee8fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27038,34 +27312,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11602" + "11577" ], "x-ms-request-id": [ - "f9e84b26-1fc5-407b-8248-0fb72cad09dd" + "68ba3c0f-6567-49b7-a1b5-1fb20cd3e764" ], "x-ms-correlation-request-id": [ - "f9e84b26-1fc5-407b-8248-0fb72cad09dd" + "68ba3c0f-6567-49b7-a1b5-1fb20cd3e764" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204215Z:f9e84b26-1fc5-407b-8248-0fb72cad09dd" + "WESTUS2:20210213T020756Z:68ba3c0f-6567-49b7-a1b5-1fb20cd3e764" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27075,16 +27346,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "021af512-44ac-4b8a-b75d-0fc47f7841f3" + "1908dccf-6c34-437a-af76-335f43263b5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27104,34 +27375,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11601" + "11576" ], "x-ms-request-id": [ - "8136c77c-40f3-4e95-82a7-b0be1eea47f5" + "4baeb6d6-ed1b-45ab-8847-b28a70067ae1" ], "x-ms-correlation-request-id": [ - "8136c77c-40f3-4e95-82a7-b0be1eea47f5" + "4baeb6d6-ed1b-45ab-8847-b28a70067ae1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:8136c77c-40f3-4e95-82a7-b0be1eea47f5" + "WESTUS2:20210213T020756Z:4baeb6d6-ed1b-45ab-8847-b28a70067ae1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27141,16 +27409,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2525dd7a-3b11-4242-a569-7ab29346c717" + "a964773d-8757-4adf-bfe8-a293ea6e251c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27170,34 +27438,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11600" + "11575" ], "x-ms-request-id": [ - "3ec91258-181b-4262-8964-9aef4422ba4c" + "196140b5-0faf-4ac3-9d63-f0e68e3704e3" ], "x-ms-correlation-request-id": [ - "3ec91258-181b-4262-8964-9aef4422ba4c" + "196140b5-0faf-4ac3-9d63-f0e68e3704e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:3ec91258-181b-4262-8964-9aef4422ba4c" + "WESTUS2:20210213T020756Z:196140b5-0faf-4ac3-9d63-f0e68e3704e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27207,16 +27472,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57dd3b3a-1598-474f-93b5-2dd08b88d8b6" + "3dfd9b94-ce80-443a-a958-4a1ae0752dd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27236,34 +27501,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11599" + "11574" ], "x-ms-request-id": [ - "0355e28b-987f-4436-935d-7e79570fed27" + "8b40a4ce-3f67-49dc-93ba-c854b2828cff" ], "x-ms-correlation-request-id": [ - "0355e28b-987f-4436-935d-7e79570fed27" + "8b40a4ce-3f67-49dc-93ba-c854b2828cff" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:0355e28b-987f-4436-935d-7e79570fed27" + "WESTUS2:20210213T020756Z:8b40a4ce-3f67-49dc-93ba-c854b2828cff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:15 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27273,16 +27535,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "665476ee-b6f0-4a51-905d-def8393bf15e" + "7f1ab79a-868b-4da2-bb6f-867e24667d0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27302,34 +27564,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11598" + "11573" ], "x-ms-request-id": [ - "bc5cd995-88c2-4cfc-85f6-b4d88b4c06e9" + "5d787f15-5c6a-43b4-bc1f-23c984d672c9" ], "x-ms-correlation-request-id": [ - "bc5cd995-88c2-4cfc-85f6-b4d88b4c06e9" + "5d787f15-5c6a-43b4-bc1f-23c984d672c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:bc5cd995-88c2-4cfc-85f6-b4d88b4c06e9" + "WESTUS2:20210213T020756Z:5d787f15-5c6a-43b4-bc1f-23c984d672c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27339,16 +27598,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d4f3906-7806-45bd-8d95-fd4ede0e549a" + "30585ebc-1879-44d3-aeb9-47c5e4a3dd6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27368,34 +27627,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11597" + "11572" ], "x-ms-request-id": [ - "88e25d7c-445e-4078-9898-35bc5ef3d05e" + "02ad5280-f8a3-441d-8d55-a23aec161931" ], "x-ms-correlation-request-id": [ - "88e25d7c-445e-4078-9898-35bc5ef3d05e" + "02ad5280-f8a3-441d-8d55-a23aec161931" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:88e25d7c-445e-4078-9898-35bc5ef3d05e" + "WESTUS2:20210213T020757Z:02ad5280-f8a3-441d-8d55-a23aec161931" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:56 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27405,16 +27661,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4effacfa-9cea-4e47-961c-1d3af0d01764" + "3944c521-2a9e-42d2-b0b4-ad90de4cf7be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27434,34 +27690,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11596" + "11571" ], "x-ms-request-id": [ - "3bfce862-2e7e-462f-8043-898bdba8e353" + "45c7c401-1874-4081-a341-bb630cecd0e4" ], "x-ms-correlation-request-id": [ - "3bfce862-2e7e-462f-8043-898bdba8e353" + "45c7c401-1874-4081-a341-bb630cecd0e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:3bfce862-2e7e-462f-8043-898bdba8e353" + "WESTUS2:20210213T020757Z:45c7c401-1874-4081-a341-bb630cecd0e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:57 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27471,16 +27724,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4e8b1d0-fb7c-4435-8fb7-4557684312aa" + "6f64a23f-3496-44d2-90f0-dc44cf1e10ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27500,34 +27753,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11595" + "11570" ], "x-ms-request-id": [ - "d16e3710-3aed-4c35-a008-a1fb2eab6575" + "7910b821-57d9-432d-9f19-2fb1503a58ca" ], "x-ms-correlation-request-id": [ - "d16e3710-3aed-4c35-a008-a1fb2eab6575" + "7910b821-57d9-432d-9f19-2fb1503a58ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204216Z:d16e3710-3aed-4c35-a008-a1fb2eab6575" + "WESTUS2:20210213T020757Z:7910b821-57d9-432d-9f19-2fb1503a58ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:57 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27537,16 +27787,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c30548-5161-4b7c-bdd5-37ee09679ecd" + "551589b1-5006-4f4b-8779-98910b63a963" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27566,34 +27816,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11594" + "11569" ], "x-ms-request-id": [ - "840330f8-a58f-4c96-806a-e0859bcded96" + "79094ecd-98dc-4711-a618-77dcabf37a80" ], "x-ms-correlation-request-id": [ - "840330f8-a58f-4c96-806a-e0859bcded96" + "79094ecd-98dc-4711-a618-77dcabf37a80" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:840330f8-a58f-4c96-806a-e0859bcded96" + "WESTUS2:20210213T020757Z:79094ecd-98dc-4711-a618-77dcabf37a80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:57 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27603,16 +27850,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83ef2c14-bd8b-4a5a-8117-d51799f85ce6" + "45ab22c8-3346-4bc3-a7b8-62c97fd0efdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27632,34 +27879,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11593" + "11568" ], "x-ms-request-id": [ - "21860cc2-d610-4ed7-b8aa-47e91588600c" + "2ea49d4d-854a-401e-884f-1bdb1328226c" ], "x-ms-correlation-request-id": [ - "21860cc2-d610-4ed7-b8aa-47e91588600c" + "2ea49d4d-854a-401e-884f-1bdb1328226c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:21860cc2-d610-4ed7-b8aa-47e91588600c" + "WESTUS2:20210213T020757Z:2ea49d4d-854a-401e-884f-1bdb1328226c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:57 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27669,16 +27913,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "889432ba-5720-4395-a89f-9b0bd9eb1bcf" + "d4f98c8e-ea53-4678-ab02-1486d1bac87c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27698,34 +27942,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11592" + "11567" ], "x-ms-request-id": [ - "8b84a3b5-c8fc-4c92-a0f3-1486694a14b3" + "cb472769-0110-49b6-b4a3-80a6a32ed537" ], "x-ms-correlation-request-id": [ - "8b84a3b5-c8fc-4c92-a0f3-1486694a14b3" + "cb472769-0110-49b6-b4a3-80a6a32ed537" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:8b84a3b5-c8fc-4c92-a0f3-1486694a14b3" + "WESTUS2:20210213T020757Z:cb472769-0110-49b6-b4a3-80a6a32ed537" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:16 GMT" + "Sat, 13 Feb 2021 02:07:57 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f625ff22-a1b2-40a5-92c1-e9896011f6b6" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11566" + ], + "x-ms-request-id": [ + "ae9d5e2b-a588-43f3-a2c9-51021acc45ef" + ], + "x-ms-correlation-request-id": [ + "ae9d5e2b-a588-43f3-a2c9-51021acc45ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020758Z:ae9d5e2b-a588-43f3-a2c9-51021acc45ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27735,16 +28039,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ec29985-0cc1-4e1e-b024-657efba5938a" + "285d161e-ba28-4019-bad5-827c76fe843a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27764,34 +28068,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11591" + "11565" ], "x-ms-request-id": [ - "cd4869f4-0638-46ae-8d0c-b384785db4e7" + "073c3cd0-9385-421c-99dc-bae6f79bc9cf" ], "x-ms-correlation-request-id": [ - "cd4869f4-0638-46ae-8d0c-b384785db4e7" + "073c3cd0-9385-421c-99dc-bae6f79bc9cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:cd4869f4-0638-46ae-8d0c-b384785db4e7" + "WESTUS2:20210213T020758Z:073c3cd0-9385-421c-99dc-bae6f79bc9cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:58 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc1f8e7c-c4ec-4f49-b5eb-63aa0b4936e9" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11564" + ], + "x-ms-request-id": [ + "b3fef0e5-517d-4640-acca-125822281377" + ], + "x-ms-correlation-request-id": [ + "b3fef0e5-517d-4640-acca-125822281377" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020758Z:b3fef0e5-517d-4640-acca-125822281377" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27801,16 +28165,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc841655-1c57-4041-a6cb-f9be5381ecd8" + "e44f62e2-6b27-4501-bcb6-813f33c6d506" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27830,34 +28194,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11590" + "11563" ], "x-ms-request-id": [ - "2b855b8e-365e-4200-a366-75fadc399ecf" + "5fb5083d-13de-4c97-9c21-8cf9841d591c" ], "x-ms-correlation-request-id": [ - "2b855b8e-365e-4200-a366-75fadc399ecf" + "5fb5083d-13de-4c97-9c21-8cf9841d591c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:2b855b8e-365e-4200-a366-75fadc399ecf" + "WESTUS2:20210213T020758Z:5fb5083d-13de-4c97-9c21-8cf9841d591c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:58 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d977b94-6855-4fb4-b703-bb1e687c517f" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11562" + ], + "x-ms-request-id": [ + "96a1b0b3-3f26-40b2-956e-e75d98f8691d" + ], + "x-ms-correlation-request-id": [ + "96a1b0b3-3f26-40b2-956e-e75d98f8691d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020758Z:96a1b0b3-3f26-40b2-956e-e75d98f8691d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:07: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27867,16 +28291,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b20c29e-9a9b-4ca4-b1ac-8b18bcece26a" + "28bc8dca-20bd-46ab-9cec-c7a1818ecced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27896,34 +28320,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11589" + "11561" ], "x-ms-request-id": [ - "bb26400e-3d0c-41c4-9fea-26a466ebd9eb" + "230b0130-e569-4a4e-9ece-d9b62986d436" ], "x-ms-correlation-request-id": [ - "bb26400e-3d0c-41c4-9fea-26a466ebd9eb" + "230b0130-e569-4a4e-9ece-d9b62986d436" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:bb26400e-3d0c-41c4-9fea-26a466ebd9eb" + "WESTUS2:20210213T020758Z:230b0130-e569-4a4e-9ece-d9b62986d436" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:58 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27933,16 +28354,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e572a87-d2a1-494b-b945-4b212ce95ba9" + "0e1e9033-4ec8-4032-b922-3b4da898cd56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -27962,34 +28383,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11588" + "11560" ], "x-ms-request-id": [ - "3dfd63dc-d7b1-4346-879e-ff41c41f0ce1" + "b6e88a73-ec4c-46f4-b62f-de12f9604860" ], "x-ms-correlation-request-id": [ - "3dfd63dc-d7b1-4346-879e-ff41c41f0ce1" + "b6e88a73-ec4c-46f4-b62f-de12f9604860" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204217Z:3dfd63dc-d7b1-4346-879e-ff41c41f0ce1" + "WESTUS2:20210213T020759Z:b6e88a73-ec4c-46f4-b62f-de12f9604860" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:58 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -27999,16 +28417,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7c9ebb7-4eeb-4efa-8d52-6c9f07058811" + "d93d365b-058d-4eec-b248-2403c48297c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28028,34 +28446,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11587" + "11559" ], "x-ms-request-id": [ - "4478d7bc-faa3-40ab-b3a6-65cdc5f07b3a" + "4e89904b-1f19-462b-9ea3-7cf44c05d123" ], "x-ms-correlation-request-id": [ - "4478d7bc-faa3-40ab-b3a6-65cdc5f07b3a" + "4e89904b-1f19-462b-9ea3-7cf44c05d123" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:4478d7bc-faa3-40ab-b3a6-65cdc5f07b3a" + "WESTUS2:20210213T020759Z:4e89904b-1f19-462b-9ea3-7cf44c05d123" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28065,16 +28480,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc8a7324-8645-4618-b1ec-ddb47d864985" + "a2c94c20-76c8-4ac7-b1b4-e06ca1063240" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28094,34 +28509,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11586" + "11558" ], "x-ms-request-id": [ - "011d717f-7b76-4e3d-bde8-ce2f9a274375" + "da39cd1d-6b54-4962-a444-01db1010fff5" ], "x-ms-correlation-request-id": [ - "011d717f-7b76-4e3d-bde8-ce2f9a274375" + "da39cd1d-6b54-4962-a444-01db1010fff5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:011d717f-7b76-4e3d-bde8-ce2f9a274375" + "WESTUS2:20210213T020759Z:da39cd1d-6b54-4962-a444-01db1010fff5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28131,16 +28543,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a5da45b-2616-42ca-ac74-2d1f31a30aa0" + "7ded5ca5-77d1-4918-8da2-8fb4ce9a62ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28160,34 +28572,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11585" + "11557" ], "x-ms-request-id": [ - "34499a7a-1b36-492f-8805-302ac4f17369" + "e6d188ac-0358-48d0-b7df-a585892a1ad6" ], "x-ms-correlation-request-id": [ - "34499a7a-1b36-492f-8805-302ac4f17369" + "e6d188ac-0358-48d0-b7df-a585892a1ad6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:34499a7a-1b36-492f-8805-302ac4f17369" + "WESTUS2:20210213T020759Z:e6d188ac-0358-48d0-b7df-a585892a1ad6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:17 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28197,16 +28606,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "373d1fc0-403b-4aa1-be19-58bf91088a3c" + "57efff55-1da0-4580-8475-13a43fff028b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28226,34 +28635,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11584" + "11556" ], "x-ms-request-id": [ - "833684c9-49c4-48c7-abe4-6b19273301ba" + "92940d70-b859-4471-a0fd-dd93cd93b515" ], "x-ms-correlation-request-id": [ - "833684c9-49c4-48c7-abe4-6b19273301ba" + "92940d70-b859-4471-a0fd-dd93cd93b515" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:833684c9-49c4-48c7-abe4-6b19273301ba" + "WESTUS2:20210213T020759Z:92940d70-b859-4471-a0fd-dd93cd93b515" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28263,16 +28669,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a89e16ab-ba5a-48ee-aeb3-d1d4ddda4c61" + "5efd82c1-bda7-4fbe-94c0-b0b0f5f7dfbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28292,34 +28698,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11583" + "11555" ], "x-ms-request-id": [ - "a587e3cb-49fe-479d-a609-a2f42f05c0cc" + "73a49139-84ed-4fe6-8525-f883c8582634" ], "x-ms-correlation-request-id": [ - "a587e3cb-49fe-479d-a609-a2f42f05c0cc" + "73a49139-84ed-4fe6-8525-f883c8582634" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:a587e3cb-49fe-479d-a609-a2f42f05c0cc" + "WESTUS2:20210213T020759Z:73a49139-84ed-4fe6-8525-f883c8582634" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28329,16 +28732,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89d706e6-7aea-4e4f-902b-6aa1d18ea892" + "9bbcb053-f3fe-48a8-93f4-d9da6b4d37e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28358,34 +28761,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11582" + "11554" ], "x-ms-request-id": [ - "defc5598-04d1-437a-859f-9f5f97b339b2" + "4dbd10d4-0a2a-4328-9707-844324eb00d8" ], "x-ms-correlation-request-id": [ - "defc5598-04d1-437a-859f-9f5f97b339b2" + "4dbd10d4-0a2a-4328-9707-844324eb00d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:defc5598-04d1-437a-859f-9f5f97b339b2" + "WESTUS2:20210213T020800Z:4dbd10d4-0a2a-4328-9707-844324eb00d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:07:59 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28395,16 +28795,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b012180-75af-469f-8062-626bc12fec58" + "e5c41857-ddbe-406a-bdbd-456b0504c9c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28424,34 +28824,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11581" + "11553" ], "x-ms-request-id": [ - "be99ae63-082d-4b83-8301-d89f2000b350" + "99e838f5-a779-40a7-bc3c-4afc7c4288b1" ], "x-ms-correlation-request-id": [ - "be99ae63-082d-4b83-8301-d89f2000b350" + "99e838f5-a779-40a7-bc3c-4afc7c4288b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:be99ae63-082d-4b83-8301-d89f2000b350" + "WESTUS2:20210213T020800Z:99e838f5-a779-40a7-bc3c-4afc7c4288b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:08:00 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28461,16 +28858,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8464c06-0037-43c0-8070-50a4be8623b7" + "82a16a35-0cf3-4e4b-927a-06f33005a46e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28490,34 +28887,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11580" + "11552" ], "x-ms-request-id": [ - "f1778cee-6a52-4d3f-a47c-f7a9f6684531" + "761e9937-8d38-439e-8764-7455447db3d4" ], "x-ms-correlation-request-id": [ - "f1778cee-6a52-4d3f-a47c-f7a9f6684531" + "761e9937-8d38-439e-8764-7455447db3d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204218Z:f1778cee-6a52-4d3f-a47c-f7a9f6684531" + "WESTUS2:20210213T020800Z:761e9937-8d38-439e-8764-7455447db3d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:08:00 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28527,16 +28921,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b81f084c-37cd-4c56-920f-ae94dbff5b6b" + "7bb2b64e-eaea-4765-b317-dca71e42d0c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28556,34 +28950,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11579" + "11551" ], "x-ms-request-id": [ - "a4842a48-927d-4f73-990b-07ebae2ce9ce" + "ab95124f-be30-42bc-bda8-a4cca6416b89" ], "x-ms-correlation-request-id": [ - "a4842a48-927d-4f73-990b-07ebae2ce9ce" + "ab95124f-be30-42bc-bda8-a4cca6416b89" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:a4842a48-927d-4f73-990b-07ebae2ce9ce" + "WESTUS2:20210213T020800Z:ab95124f-be30-42bc-bda8-a4cca6416b89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:08:00 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28593,16 +28984,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3c568d4-d214-4eef-8eaf-3f3e3ff57e6c" + "76ca80ae-77db-4e4d-89bd-d019924402de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28622,34 +29013,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11578" + "11550" ], "x-ms-request-id": [ - "4bbb5b1c-333c-47b0-aa2c-e8ff93f1a631" + "8b4cd0d2-ddeb-448a-bf99-0dfe0b888560" ], "x-ms-correlation-request-id": [ - "4bbb5b1c-333c-47b0-aa2c-e8ff93f1a631" + "8b4cd0d2-ddeb-448a-bf99-0dfe0b888560" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:4bbb5b1c-333c-47b0-aa2c-e8ff93f1a631" + "WESTUS2:20210213T020800Z:8b4cd0d2-ddeb-448a-bf99-0dfe0b888560" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:18 GMT" + "Sat, 13 Feb 2021 02:08:00 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ddd3d6c-4d23-4cb7-9ae6-3ed67d6e5fac" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11549" + ], + "x-ms-request-id": [ + "6ad59917-0c27-40a1-a828-fab976fd043e" + ], + "x-ms-correlation-request-id": [ + "6ad59917-0c27-40a1-a828-fab976fd043e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020800Z:6ad59917-0c27-40a1-a828-fab976fd043e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28659,16 +29110,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ffac0b6-8da0-42ca-9caf-e5331e1699fe" + "297b18c8-82a5-405e-858a-28d8a166c5ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28688,34 +29139,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11577" + "11548" ], "x-ms-request-id": [ - "e2d4b5b5-fd17-4a17-9b46-f2c4226c2471" + "5a974178-d6b1-4797-932d-addbb9542bd6" ], "x-ms-correlation-request-id": [ - "e2d4b5b5-fd17-4a17-9b46-f2c4226c2471" + "5a974178-d6b1-4797-932d-addbb9542bd6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:e2d4b5b5-fd17-4a17-9b46-f2c4226c2471" + "WESTUS2:20210213T020801Z:5a974178-d6b1-4797-932d-addbb9542bd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:00 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e805eafd-6126-4055-9707-e4bd60e3466e" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11547" + ], + "x-ms-request-id": [ + "ea09d7fd-019c-4a81-92b3-12c2680012d0" + ], + "x-ms-correlation-request-id": [ + "ea09d7fd-019c-4a81-92b3-12c2680012d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020801Z:ea09d7fd-019c-4a81-92b3-12c2680012d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28725,16 +29236,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c52c9c2e-b069-46ad-9a77-c8053201188e" + "91c23658-279b-43e1-ab01-e96e05a7de78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28754,34 +29265,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11576" + "11546" ], "x-ms-request-id": [ - "812e901d-6ccc-4bc6-a8cf-2e030dd61fde" + "0ac2cc9e-f198-4f74-b30a-4cc4cb642e61" ], "x-ms-correlation-request-id": [ - "812e901d-6ccc-4bc6-a8cf-2e030dd61fde" + "0ac2cc9e-f198-4f74-b30a-4cc4cb642e61" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:812e901d-6ccc-4bc6-a8cf-2e030dd61fde" + "WESTUS2:20210213T020801Z:0ac2cc9e-f198-4f74-b30a-4cc4cb642e61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:01 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b7215e3-8424-4026-94db-6f2fa463e882" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11545" + ], + "x-ms-request-id": [ + "7b2ee273-5a41-4ded-a1e6-b95c1e44d0c3" + ], + "x-ms-correlation-request-id": [ + "7b2ee273-5a41-4ded-a1e6-b95c1e44d0c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020801Z:7b2ee273-5a41-4ded-a1e6-b95c1e44d0c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28791,16 +29362,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "737d8f10-0217-45f9-aa9d-4bdecbd79de7" + "732b1f3c-cd4b-4f75-aaf0-8a0067ee26b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28820,34 +29391,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11575" + "11544" ], "x-ms-request-id": [ - "8b705c19-1afa-4dc5-bcce-7452887931e5" + "c3b7d2b5-88de-451b-b63f-02bb460fc5e8" ], "x-ms-correlation-request-id": [ - "8b705c19-1afa-4dc5-bcce-7452887931e5" + "c3b7d2b5-88de-451b-b63f-02bb460fc5e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:8b705c19-1afa-4dc5-bcce-7452887931e5" + "WESTUS2:20210213T020801Z:c3b7d2b5-88de-451b-b63f-02bb460fc5e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:01 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28857,16 +29425,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdced703-52ec-4dbf-aa21-003684a9cb05" + "619bd05d-af12-43ea-b6cb-09a4e02b31d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28886,34 +29454,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11574" + "11543" ], "x-ms-request-id": [ - "8e3a2d48-aea8-4866-b230-94332d09cb7c" + "3c363888-6146-4860-9f82-23f3bf235214" ], "x-ms-correlation-request-id": [ - "8e3a2d48-aea8-4866-b230-94332d09cb7c" + "3c363888-6146-4860-9f82-23f3bf235214" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204219Z:8e3a2d48-aea8-4866-b230-94332d09cb7c" + "WESTUS2:20210213T020801Z:3c363888-6146-4860-9f82-23f3bf235214" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:01 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28923,16 +29488,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7816d856-7033-4281-b7f4-cb3d8e9dde5b" + "6162049e-b270-4ca4-b7e2-55026e0574fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -28952,34 +29517,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11573" + "11542" ], "x-ms-request-id": [ - "305ad8ad-a738-4f5b-94fe-b87e18eb7b3b" + "4862f730-3660-4d55-a535-ef6053df33e3" ], "x-ms-correlation-request-id": [ - "305ad8ad-a738-4f5b-94fe-b87e18eb7b3b" + "4862f730-3660-4d55-a535-ef6053df33e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:305ad8ad-a738-4f5b-94fe-b87e18eb7b3b" + "WESTUS2:20210213T020801Z:4862f730-3660-4d55-a535-ef6053df33e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:01 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -28989,16 +29551,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87798b42-0764-4372-8aba-fb0c2aec5b9c" + "6da620b2-48ef-471f-83c1-da0bf359f404" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29018,34 +29580,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11572" + "11541" ], "x-ms-request-id": [ - "b2b274d9-abdc-4961-a907-6d5d5c385746" + "6355929b-317b-4576-85a9-b01d8652f34f" ], "x-ms-correlation-request-id": [ - "b2b274d9-abdc-4961-a907-6d5d5c385746" + "6355929b-317b-4576-85a9-b01d8652f34f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:b2b274d9-abdc-4961-a907-6d5d5c385746" + "WESTUS2:20210213T020802Z:6355929b-317b-4576-85a9-b01d8652f34f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:01 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29055,16 +29614,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5c8fcb4-231a-4b74-8584-854add771d3f" + "d851d5aa-1a24-4c04-8b48-01f55cbd43eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29084,34 +29643,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11571" + "11540" ], "x-ms-request-id": [ - "3a412556-c747-4acd-9b8f-3af6c2ba7476" + "032144ff-8fe9-4b35-b5df-eb1c3d9b24fb" ], "x-ms-correlation-request-id": [ - "3a412556-c747-4acd-9b8f-3af6c2ba7476" + "032144ff-8fe9-4b35-b5df-eb1c3d9b24fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:3a412556-c747-4acd-9b8f-3af6c2ba7476" + "WESTUS2:20210213T020802Z:032144ff-8fe9-4b35-b5df-eb1c3d9b24fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:19 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29121,16 +29677,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ee05680-b9d2-4420-a362-0d4e18157cb4" + "e15ed9ed-3784-4d52-b0c0-ab9eaf32f5d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29150,34 +29706,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11570" + "11539" ], "x-ms-request-id": [ - "b4d8ab0a-f485-400d-9a34-5ab5d5c4982f" + "576f3360-bd74-4cb6-bda3-3845b518ff48" ], "x-ms-correlation-request-id": [ - "b4d8ab0a-f485-400d-9a34-5ab5d5c4982f" + "576f3360-bd74-4cb6-bda3-3845b518ff48" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:b4d8ab0a-f485-400d-9a34-5ab5d5c4982f" + "WESTUS2:20210213T020802Z:576f3360-bd74-4cb6-bda3-3845b518ff48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29187,16 +29740,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa576eed-390a-472c-ae1e-e9db58ddad11" + "0ca60a04-ca62-4a01-81ae-ea7ee9b9e697" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29216,34 +29769,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11569" + "11538" ], "x-ms-request-id": [ - "5102b0a1-e80f-4032-b8c7-f1d60c5a3392" + "8a2f35a2-3a5b-4a8e-b417-80d87ce9c18f" ], "x-ms-correlation-request-id": [ - "5102b0a1-e80f-4032-b8c7-f1d60c5a3392" + "8a2f35a2-3a5b-4a8e-b417-80d87ce9c18f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:5102b0a1-e80f-4032-b8c7-f1d60c5a3392" + "WESTUS2:20210213T020802Z:8a2f35a2-3a5b-4a8e-b417-80d87ce9c18f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29253,16 +29803,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3f81448-cfd3-4e3a-b177-cb55864a6e2b" + "e880301b-b860-4e61-a05c-1b3622878601" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29282,34 +29832,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11568" + "11537" ], "x-ms-request-id": [ - "3340e18e-25c6-4890-8498-1bd05db779fb" + "547afa14-76a9-4709-a1dd-ec18e1bd5757" ], "x-ms-correlation-request-id": [ - "3340e18e-25c6-4890-8498-1bd05db779fb" + "547afa14-76a9-4709-a1dd-ec18e1bd5757" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:3340e18e-25c6-4890-8498-1bd05db779fb" + "WESTUS2:20210213T020802Z:547afa14-76a9-4709-a1dd-ec18e1bd5757" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29319,16 +29866,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91c4d31c-b255-4435-852e-4c322c85ef89" + "63f380ac-904e-4b01-8908-922f7a2c11ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29348,34 +29895,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11567" + "11536" ], "x-ms-request-id": [ - "67bdcc60-6028-4212-8fe5-cb181fb2110b" + "c6fd696c-9ef0-478d-ae45-39eb2af34885" ], "x-ms-correlation-request-id": [ - "67bdcc60-6028-4212-8fe5-cb181fb2110b" + "c6fd696c-9ef0-478d-ae45-39eb2af34885" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204220Z:67bdcc60-6028-4212-8fe5-cb181fb2110b" + "WESTUS2:20210213T020802Z:c6fd696c-9ef0-478d-ae45-39eb2af34885" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29385,16 +29929,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ee9e2f-1709-49b2-a4e8-a7b95d519da4" + "0436294c-73b9-4b79-9219-ed2ac8d897b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29414,34 +29958,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11566" + "11535" ], "x-ms-request-id": [ - "700ad481-a490-47d0-bfc9-8e0663f6d4c9" + "e1925300-36f1-4cfa-ba45-19bd1bb1dbb8" ], "x-ms-correlation-request-id": [ - "700ad481-a490-47d0-bfc9-8e0663f6d4c9" + "e1925300-36f1-4cfa-ba45-19bd1bb1dbb8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:700ad481-a490-47d0-bfc9-8e0663f6d4c9" + "WESTUS2:20210213T020803Z:e1925300-36f1-4cfa-ba45-19bd1bb1dbb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:02 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29451,16 +29992,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "347e8010-7d8a-4649-8c2b-33da6a120dc5" + "902bd63b-2815-413c-b0c3-b7a0a0a9fd06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29480,34 +30021,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11565" + "11534" ], "x-ms-request-id": [ - "b7b1d483-60a1-43c3-9c90-e6363348e9c8" + "2f91152f-03b6-4506-b5b1-acd713737126" ], "x-ms-correlation-request-id": [ - "b7b1d483-60a1-43c3-9c90-e6363348e9c8" + "2f91152f-03b6-4506-b5b1-acd713737126" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:b7b1d483-60a1-43c3-9c90-e6363348e9c8" + "WESTUS2:20210213T020803Z:2f91152f-03b6-4506-b5b1-acd713737126" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:20 GMT" + "Sat, 13 Feb 2021 02:08:03 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29517,16 +30055,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "577a13a5-3ecb-40af-9e27-f96d272784fa" + "2c452778-5e2d-4ca9-a95e-84499eb9e8b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29546,34 +30084,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11564" + "11533" ], "x-ms-request-id": [ - "c444cb64-7f40-4e8d-ad1d-3ba200b9cc66" + "13648371-3943-4d18-a6c2-34327d990ba7" ], "x-ms-correlation-request-id": [ - "c444cb64-7f40-4e8d-ad1d-3ba200b9cc66" + "13648371-3943-4d18-a6c2-34327d990ba7" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:c444cb64-7f40-4e8d-ad1d-3ba200b9cc66" + "WESTUS2:20210213T020803Z:13648371-3943-4d18-a6c2-34327d990ba7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:03 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5174c1bc-fc6b-49ef-83e4-32fb4c2dc169" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11532" + ], + "x-ms-request-id": [ + "5fd18586-8694-46d3-9f53-29ab8129b564" + ], + "x-ms-correlation-request-id": [ + "5fd18586-8694-46d3-9f53-29ab8129b564" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020803Z:5fd18586-8694-46d3-9f53-29ab8129b564" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29583,16 +30181,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40995ecd-4aaa-437e-ad5c-60984c86d44d" + "656baff8-38ec-4388-86cf-944e704ad4dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29612,34 +30210,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11563" + "11531" ], "x-ms-request-id": [ - "22ffe8dc-9a6e-4534-a214-4e1ef55d5d6c" + "8dd6ed59-e62a-453d-8517-0aeda7356239" ], "x-ms-correlation-request-id": [ - "22ffe8dc-9a6e-4534-a214-4e1ef55d5d6c" + "8dd6ed59-e62a-453d-8517-0aeda7356239" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:22ffe8dc-9a6e-4534-a214-4e1ef55d5d6c" + "WESTUS2:20210213T020803Z:8dd6ed59-e62a-453d-8517-0aeda7356239" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:03 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2462ae92-865e-49d9-b59a-c4f7def7bc45" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11530" + ], + "x-ms-request-id": [ + "dfc8048a-d3cb-4955-ba79-0024397be9e7" + ], + "x-ms-correlation-request-id": [ + "dfc8048a-d3cb-4955-ba79-0024397be9e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020803Z:dfc8048a-d3cb-4955-ba79-0024397be9e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29649,16 +30307,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de3b658a-52a8-48c8-99f6-24ef34d6e6fb" + "fe86080d-8dd4-43a3-a85c-2096043cb775" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29678,34 +30336,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11562" + "11529" ], "x-ms-request-id": [ - "21175ae5-f010-4009-9d28-ccbd63e37066" + "8b6f6c30-5fab-41d3-b3ba-9b0d33028de5" ], "x-ms-correlation-request-id": [ - "21175ae5-f010-4009-9d28-ccbd63e37066" + "8b6f6c30-5fab-41d3-b3ba-9b0d33028de5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:21175ae5-f010-4009-9d28-ccbd63e37066" + "WESTUS2:20210213T020804Z:8b6f6c30-5fab-41d3-b3ba-9b0d33028de5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:03 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e369fd5c-3ada-44ed-b03a-b28237228cea" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11528" + ], + "x-ms-request-id": [ + "e17ff819-8c09-4433-9a8a-29e988301df5" + ], + "x-ms-correlation-request-id": [ + "e17ff819-8c09-4433-9a8a-29e988301df5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020804Z:e17ff819-8c09-4433-9a8a-29e988301df5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29715,16 +30433,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17e7833d-2e0c-4b69-82d3-2c415f5b4248" + "ffb0cc9a-5e39-4c3d-a692-407390cc8cb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29744,34 +30462,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11561" + "11527" ], "x-ms-request-id": [ - "05ed8916-c149-46fe-88ee-47659bff1ba7" + "58275e56-67ff-432f-b09a-0454aea4cfc0" ], "x-ms-correlation-request-id": [ - "05ed8916-c149-46fe-88ee-47659bff1ba7" + "58275e56-67ff-432f-b09a-0454aea4cfc0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204221Z:05ed8916-c149-46fe-88ee-47659bff1ba7" + "WESTUS2:20210213T020804Z:58275e56-67ff-432f-b09a-0454aea4cfc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:04 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29781,16 +30496,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a348c2a8-705d-42f4-8992-22ed75cc4d96" + "770da26c-28ca-4c73-bfae-6e289d0aaf93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29810,34 +30525,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11560" + "11526" ], "x-ms-request-id": [ - "80979153-23ad-4052-96e7-005504d262fe" + "c492dbb4-b74f-417c-988e-9e5d1ea1288c" ], "x-ms-correlation-request-id": [ - "80979153-23ad-4052-96e7-005504d262fe" + "c492dbb4-b74f-417c-988e-9e5d1ea1288c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:80979153-23ad-4052-96e7-005504d262fe" + "WESTUS2:20210213T020804Z:c492dbb4-b74f-417c-988e-9e5d1ea1288c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:04 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29847,16 +30559,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c576b91c-2020-488e-8657-fc44dd5cf8dc" + "290ad7dd-13ec-4fc9-8da0-db0fc6ab48fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29876,34 +30588,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11559" + "11525" ], "x-ms-request-id": [ - "b0f1b585-28c7-4436-a03b-d4aae6cd168c" + "67e15162-122e-4da2-b0e1-439e9cbbed1b" ], "x-ms-correlation-request-id": [ - "b0f1b585-28c7-4436-a03b-d4aae6cd168c" + "67e15162-122e-4da2-b0e1-439e9cbbed1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:b0f1b585-28c7-4436-a03b-d4aae6cd168c" + "WESTUS2:20210213T020804Z:67e15162-122e-4da2-b0e1-439e9cbbed1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:04 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29913,16 +30622,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "532af18e-cc4f-46b6-9c6f-b83d34dbfe11" + "2917b45a-e588-4bdb-a1eb-512ec3ab0f91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -29942,34 +30651,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11558" + "11524" ], "x-ms-request-id": [ - "46c703a1-2e5c-4a2f-b427-55303538c07a" + "b0f412c9-95e8-4c18-a044-4a12680d5406" ], "x-ms-correlation-request-id": [ - "46c703a1-2e5c-4a2f-b427-55303538c07a" + "b0f412c9-95e8-4c18-a044-4a12680d5406" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:46c703a1-2e5c-4a2f-b427-55303538c07a" + "WESTUS2:20210213T020804Z:b0f412c9-95e8-4c18-a044-4a12680d5406" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:21 GMT" + "Sat, 13 Feb 2021 02:08:04 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -29979,16 +30685,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc74187e-d32d-4c10-aebd-ac5a76803817" + "5177d52d-c4cc-4693-ba49-2363a7ac2033" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30008,34 +30714,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11557" + "11523" ], "x-ms-request-id": [ - "cff5c26c-2976-4e0b-b946-fc6743ceeffe" + "6dd05191-082d-44e5-9db3-ecc0c4c10ef5" ], "x-ms-correlation-request-id": [ - "cff5c26c-2976-4e0b-b946-fc6743ceeffe" + "6dd05191-082d-44e5-9db3-ecc0c4c10ef5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:cff5c26c-2976-4e0b-b946-fc6743ceeffe" + "WESTUS2:20210213T020805Z:6dd05191-082d-44e5-9db3-ecc0c4c10ef5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:04 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30045,16 +30748,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "559900ec-fda2-4017-ace5-f737ee62accd" + "bf7dd88c-5f5f-4221-b847-ff44d9d547a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30074,34 +30777,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11556" + "11522" ], "x-ms-request-id": [ - "f78c455f-38d0-437d-99b2-a75a74a9f924" + "c768d433-3a8c-4d6d-89c3-98b6fd023929" ], "x-ms-correlation-request-id": [ - "f78c455f-38d0-437d-99b2-a75a74a9f924" + "c768d433-3a8c-4d6d-89c3-98b6fd023929" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:f78c455f-38d0-437d-99b2-a75a74a9f924" + "WESTUS2:20210213T020805Z:c768d433-3a8c-4d6d-89c3-98b6fd023929" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30111,16 +30811,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c49c049-d005-41cb-8c92-42bb58d42ce1" + "126fa01e-5660-42ee-bb2c-79232e20ea4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30140,34 +30840,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11555" + "11521" ], "x-ms-request-id": [ - "e4492c52-33b9-411e-9f7d-d4db409b2cce" + "657e1aa8-7b66-4b52-b18f-5bec9df25585" ], "x-ms-correlation-request-id": [ - "e4492c52-33b9-411e-9f7d-d4db409b2cce" + "657e1aa8-7b66-4b52-b18f-5bec9df25585" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:e4492c52-33b9-411e-9f7d-d4db409b2cce" + "WESTUS2:20210213T020805Z:657e1aa8-7b66-4b52-b18f-5bec9df25585" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30177,16 +30874,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63699cff-04cb-41fd-883b-08dbf089575a" + "16fcc92b-691d-45dc-baf6-6d47380741f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30206,34 +30903,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11554" + "11520" ], "x-ms-request-id": [ - "458a6ba0-e144-4a14-a009-d88e7385b27f" + "36bc78d4-c300-4121-a9ff-55039746efd6" ], "x-ms-correlation-request-id": [ - "458a6ba0-e144-4a14-a009-d88e7385b27f" + "36bc78d4-c300-4121-a9ff-55039746efd6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204222Z:458a6ba0-e144-4a14-a009-d88e7385b27f" + "WESTUS2:20210213T020805Z:36bc78d4-c300-4121-a9ff-55039746efd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30243,16 +30937,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f06d997-bdd7-4398-b8a1-e92f2f95277d" + "5ee921ec-f5d0-49cb-b665-5ad3f78c77aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30272,34 +30966,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11553" + "11519" ], "x-ms-request-id": [ - "58a9c906-4cb9-4ba8-866e-38b1ca10b65e" + "14de5747-f3c7-4ff5-a793-52d419e5301d" ], "x-ms-correlation-request-id": [ - "58a9c906-4cb9-4ba8-866e-38b1ca10b65e" + "14de5747-f3c7-4ff5-a793-52d419e5301d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:58a9c906-4cb9-4ba8-866e-38b1ca10b65e" + "WESTUS2:20210213T020805Z:14de5747-f3c7-4ff5-a793-52d419e5301d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30309,16 +31000,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eecad2c-9ad0-43ca-b54b-04a058b84897" + "1793d357-f78e-435a-9667-9772e088745a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30338,34 +31029,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11552" + "11518" ], "x-ms-request-id": [ - "c7b2c9b8-322c-47bb-aad7-f8fceb4d70ff" + "e40d1524-3b68-467b-9d9d-158c87d5534c" ], "x-ms-correlation-request-id": [ - "c7b2c9b8-322c-47bb-aad7-f8fceb4d70ff" + "e40d1524-3b68-467b-9d9d-158c87d5534c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:c7b2c9b8-322c-47bb-aad7-f8fceb4d70ff" + "WESTUS2:20210213T020805Z:e40d1524-3b68-467b-9d9d-158c87d5534c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30375,16 +31063,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5da7e0f8-c183-4ddf-b106-6787113e8487" + "018aa060-fdc4-4357-98a5-d39004fe234e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30404,34 +31092,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11551" + "11517" ], "x-ms-request-id": [ - "0c1b8c86-4a55-4498-8de5-ef036024ea6d" + "e1e95bd3-d953-4550-a031-3aac7745329c" ], "x-ms-correlation-request-id": [ - "0c1b8c86-4a55-4498-8de5-ef036024ea6d" + "e1e95bd3-d953-4550-a031-3aac7745329c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:0c1b8c86-4a55-4498-8de5-ef036024ea6d" + "WESTUS2:20210213T020806Z:e1e95bd3-d953-4550-a031-3aac7745329c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:22 GMT" + "Sat, 13 Feb 2021 02:08:05 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30441,16 +31126,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d9e5a53-50a1-4524-87ae-2ca10ab9beb4" + "282c34bf-33f7-40e2-b483-a202d51d6284" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30470,34 +31155,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11550" + "11516" ], "x-ms-request-id": [ - "26449937-3391-46e9-9c15-6be39e1e5b97" + "d909777a-bd9f-4e7d-a303-94fbae6f4e66" ], "x-ms-correlation-request-id": [ - "26449937-3391-46e9-9c15-6be39e1e5b97" + "d909777a-bd9f-4e7d-a303-94fbae6f4e66" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:26449937-3391-46e9-9c15-6be39e1e5b97" + "WESTUS2:20210213T020806Z:d909777a-bd9f-4e7d-a303-94fbae6f4e66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:06 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "368bdc52-2bdc-4a4c-bfef-181511e119fe" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11515" + ], + "x-ms-request-id": [ + "28fe15a3-c1f4-4997-bf0e-c88ef1b4f443" + ], + "x-ms-correlation-request-id": [ + "28fe15a3-c1f4-4997-bf0e-c88ef1b4f443" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020806Z:28fe15a3-c1f4-4997-bf0e-c88ef1b4f443" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30507,16 +31252,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a26dfa6-352c-4f28-a9fa-6e2abf581c0e" + "d14c20c2-75b4-44e2-823e-388bcc25b6d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30536,34 +31281,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11549" + "11514" ], "x-ms-request-id": [ - "2810c766-1074-42ed-a95b-3f3a47195c5b" + "fd256cd5-3ce9-4a21-b48d-7fc138f2dc5d" ], "x-ms-correlation-request-id": [ - "2810c766-1074-42ed-a95b-3f3a47195c5b" + "fd256cd5-3ce9-4a21-b48d-7fc138f2dc5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:2810c766-1074-42ed-a95b-3f3a47195c5b" + "WESTUS2:20210213T020806Z:fd256cd5-3ce9-4a21-b48d-7fc138f2dc5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:06 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ac9e986-e196-4548-93c8-b1dfd43949ac" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11513" + ], + "x-ms-request-id": [ + "deaa66f7-f2ed-49e6-b1bf-a386b1d598ee" + ], + "x-ms-correlation-request-id": [ + "deaa66f7-f2ed-49e6-b1bf-a386b1d598ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020806Z:deaa66f7-f2ed-49e6-b1bf-a386b1d598ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30573,16 +31378,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f25555c-1346-4a6e-a8a0-d7aa4f7b5836" + "420b3498-0c5c-4b07-b2d4-28d56ab70e3c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30602,34 +31407,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11548" + "11512" ], "x-ms-request-id": [ - "f0044442-dc18-4101-8d5f-c67cff09d163" + "dc9160bd-5b19-4601-9878-d7da5d821035" ], "x-ms-correlation-request-id": [ - "f0044442-dc18-4101-8d5f-c67cff09d163" + "dc9160bd-5b19-4601-9878-d7da5d821035" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:f0044442-dc18-4101-8d5f-c67cff09d163" + "WESTUS2:20210213T020807Z:dc9160bd-5b19-4601-9878-d7da5d821035" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:06 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1cea444-753e-4ed3-b20a-9639c901766b" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11511" + ], + "x-ms-request-id": [ + "9f62f210-404d-4fe9-8f84-4e81de7397b1" + ], + "x-ms-correlation-request-id": [ + "9f62f210-404d-4fe9-8f84-4e81de7397b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020807Z:9f62f210-404d-4fe9-8f84-4e81de7397b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30639,16 +31504,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "142114d9-c229-4127-a65f-0b0b544e60ec" + "33b913d7-d3b6-4238-a92a-ba5ff5cdde44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30668,34 +31533,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11547" + "11510" ], "x-ms-request-id": [ - "562b1be4-c248-4333-a55e-254edac5541e" + "e220e65c-c1d0-49e3-8803-65a1ef9890e1" ], "x-ms-correlation-request-id": [ - "562b1be4-c248-4333-a55e-254edac5541e" + "e220e65c-c1d0-49e3-8803-65a1ef9890e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:562b1be4-c248-4333-a55e-254edac5541e" + "WESTUS2:20210213T020807Z:e220e65c-c1d0-49e3-8803-65a1ef9890e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30705,16 +31567,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60681ed8-5bc3-4a54-8fe8-fd975ae15f6f" + "3574b7bf-a97b-4b8c-8f5a-46595883f261" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30734,34 +31596,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11546" + "11509" ], "x-ms-request-id": [ - "e99e6334-97de-4202-9f04-64a5e8d93318" + "6ad1a0c6-e131-41c1-9ac8-96b52e2eec51" ], "x-ms-correlation-request-id": [ - "e99e6334-97de-4202-9f04-64a5e8d93318" + "6ad1a0c6-e131-41c1-9ac8-96b52e2eec51" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204223Z:e99e6334-97de-4202-9f04-64a5e8d93318" + "WESTUS2:20210213T020807Z:6ad1a0c6-e131-41c1-9ac8-96b52e2eec51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30771,16 +31630,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "846c51cc-9a92-40c8-b0f1-2e2a035a81e7" + "5d2466d0-3381-4029-aa88-7f803590bb55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30800,34 +31659,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11545" + "11508" ], "x-ms-request-id": [ - "939d20ed-f413-452c-bea9-e978fe564581" + "629c91b1-faf0-4d92-9f76-aa826afa5030" ], "x-ms-correlation-request-id": [ - "939d20ed-f413-452c-bea9-e978fe564581" + "629c91b1-faf0-4d92-9f76-aa826afa5030" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:939d20ed-f413-452c-bea9-e978fe564581" + "WESTUS2:20210213T020807Z:629c91b1-faf0-4d92-9f76-aa826afa5030" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30837,16 +31693,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bedac42d-b3bd-4f76-8140-8f77169e471c" + "f6fa089d-80c0-4fdb-b2dc-720ce1ea74d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30866,34 +31722,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11544" + "11507" ], "x-ms-request-id": [ - "f8886b2a-6639-4ccd-ab45-7f400aef272a" + "8f36917f-2664-4332-9006-635e592afe3a" ], "x-ms-correlation-request-id": [ - "f8886b2a-6639-4ccd-ab45-7f400aef272a" + "8f36917f-2664-4332-9006-635e592afe3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:f8886b2a-6639-4ccd-ab45-7f400aef272a" + "WESTUS2:20210213T020807Z:8f36917f-2664-4332-9006-635e592afe3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:23 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30903,16 +31756,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8454669-0a7e-4c26-aa40-320767dfc7e6" + "c5c25286-1f3d-41a9-a0ee-0a7cb323e681" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30932,34 +31785,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11543" + "11506" ], "x-ms-request-id": [ - "9c3bb247-18e0-4bdf-8643-1923ce6cf482" + "7e2298b8-72cd-42f3-86e0-e6e11de45201" ], "x-ms-correlation-request-id": [ - "9c3bb247-18e0-4bdf-8643-1923ce6cf482" + "7e2298b8-72cd-42f3-86e0-e6e11de45201" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:9c3bb247-18e0-4bdf-8643-1923ce6cf482" + "WESTUS2:20210213T020808Z:7e2298b8-72cd-42f3-86e0-e6e11de45201" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -30969,16 +31819,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "610ae981-8032-4112-bcb1-37696da67008" + "8ff8ef0d-4fd6-46dd-bc6f-2e13a20f60ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -30998,34 +31848,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11542" + "11505" ], "x-ms-request-id": [ - "a7e642b6-3a6c-44bc-a8d1-6affbdf70464" + "39583cf1-8365-433f-8336-a6fdda1cc521" ], "x-ms-correlation-request-id": [ - "a7e642b6-3a6c-44bc-a8d1-6affbdf70464" + "39583cf1-8365-433f-8336-a6fdda1cc521" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:a7e642b6-3a6c-44bc-a8d1-6affbdf70464" + "WESTUS2:20210213T020808Z:39583cf1-8365-433f-8336-a6fdda1cc521" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:07 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31035,16 +31882,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3402acd8-9a93-415c-a53d-091e0dd50739" + "f3bd421d-70eb-4a58-9ac8-9a81d120ec88" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31064,34 +31911,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11541" + "11504" ], "x-ms-request-id": [ - "9f848f9b-a83d-4573-ab1a-2cbaf0783f7b" + "d1428a48-aedd-4149-9e6b-6be5556bace2" ], "x-ms-correlation-request-id": [ - "9f848f9b-a83d-4573-ab1a-2cbaf0783f7b" + "d1428a48-aedd-4149-9e6b-6be5556bace2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:9f848f9b-a83d-4573-ab1a-2cbaf0783f7b" + "WESTUS2:20210213T020808Z:d1428a48-aedd-4149-9e6b-6be5556bace2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31101,16 +31945,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3b02b5a-ebfd-453d-85d6-57a0c1021374" + "dc45d33e-7319-4f21-841e-d0c75a2198f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31130,34 +31974,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11540" + "11503" ], "x-ms-request-id": [ - "b25b0199-06ce-4e59-984e-6ce442c9a6cb" + "514b4e64-4f6b-46a4-94d8-ae94238e49b4" ], "x-ms-correlation-request-id": [ - "b25b0199-06ce-4e59-984e-6ce442c9a6cb" + "514b4e64-4f6b-46a4-94d8-ae94238e49b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204224Z:b25b0199-06ce-4e59-984e-6ce442c9a6cb" + "WESTUS2:20210213T020808Z:514b4e64-4f6b-46a4-94d8-ae94238e49b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31167,16 +32008,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6caa7fdb-bbf0-4d33-8a34-ad5bcd393300" + "17174c13-7341-4936-ad1c-b719c584316f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31196,34 +32037,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11539" + "11502" ], "x-ms-request-id": [ - "7b6ac53e-fa1d-45c8-bbad-41c1f069c1e2" + "a9fe6c7d-c3ea-4e2d-9bb8-3ea7558505e9" ], "x-ms-correlation-request-id": [ - "7b6ac53e-fa1d-45c8-bbad-41c1f069c1e2" + "a9fe6c7d-c3ea-4e2d-9bb8-3ea7558505e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:7b6ac53e-fa1d-45c8-bbad-41c1f069c1e2" + "WESTUS2:20210213T020808Z:a9fe6c7d-c3ea-4e2d-9bb8-3ea7558505e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31233,16 +32071,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30d6e55-da6b-4130-98f7-3b9d6762bdae" + "a3f87574-4758-4cfc-81a7-a0bae1974669" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31262,34 +32100,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11538" + "11501" ], "x-ms-request-id": [ - "7fc555f9-f38d-4498-bbe3-b55449b1e0ce" + "b716350c-2d68-46c3-9dca-0e2e94f7981d" ], "x-ms-correlation-request-id": [ - "7fc555f9-f38d-4498-bbe3-b55449b1e0ce" + "b716350c-2d68-46c3-9dca-0e2e94f7981d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:7fc555f9-f38d-4498-bbe3-b55449b1e0ce" + "WESTUS2:20210213T020808Z:b716350c-2d68-46c3-9dca-0e2e94f7981d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31299,16 +32134,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0a92054-6b95-4697-8359-2b612e1f2e8a" + "c8a74f97-1908-44b9-9a0f-862a4bfd16bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31328,34 +32163,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11537" + "11500" ], "x-ms-request-id": [ - "c8ee41cb-d81a-43c6-b844-dc5a0568fdd5" + "c4419758-a4ac-4a77-b6d0-c8ffd7224434" ], "x-ms-correlation-request-id": [ - "c8ee41cb-d81a-43c6-b844-dc5a0568fdd5" + "c4419758-a4ac-4a77-b6d0-c8ffd7224434" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:c8ee41cb-d81a-43c6-b844-dc5a0568fdd5" + "WESTUS2:20210213T020809Z:c4419758-a4ac-4a77-b6d0-c8ffd7224434" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:24 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31365,16 +32197,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d36c9cb-bc1f-45e1-8df8-53912ca3eda4" + "c2cc5f6c-67df-417a-8b5e-20711852ae04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31394,34 +32226,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11536" + "11499" ], "x-ms-request-id": [ - "8cd5663e-446f-4efe-9277-c92bb02f9ead" + "f087c464-fd8b-4f7a-a273-93e670de726a" ], "x-ms-correlation-request-id": [ - "8cd5663e-446f-4efe-9277-c92bb02f9ead" + "f087c464-fd8b-4f7a-a273-93e670de726a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:8cd5663e-446f-4efe-9277-c92bb02f9ead" + "WESTUS2:20210213T020809Z:f087c464-fd8b-4f7a-a273-93e670de726a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:08 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "938e1dcf-ed65-40e2-95cf-39b4dc29da1b" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11498" + ], + "x-ms-request-id": [ + "84f87954-1f04-4079-80d0-4a5ff3c2fbe2" + ], + "x-ms-correlation-request-id": [ + "84f87954-1f04-4079-80d0-4a5ff3c2fbe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020809Z:84f87954-1f04-4079-80d0-4a5ff3c2fbe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31431,16 +32323,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "611f857c-c32e-458c-96c1-f4513c7dfb0c" + "791c97bf-f116-437f-aac0-e495ca887084" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31460,34 +32352,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11535" + "11497" ], "x-ms-request-id": [ - "3abdd2b3-f612-4295-bed8-221e932e1885" + "c5250156-f5af-4be2-a74f-9986075a2c3c" ], "x-ms-correlation-request-id": [ - "3abdd2b3-f612-4295-bed8-221e932e1885" + "c5250156-f5af-4be2-a74f-9986075a2c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:3abdd2b3-f612-4295-bed8-221e932e1885" + "WESTUS2:20210213T020809Z:c5250156-f5af-4be2-a74f-9986075a2c3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:09 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6bee02b-8244-44a0-bd8c-bd720e7c4771" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11496" + ], + "x-ms-request-id": [ + "75bfc421-5022-4809-99e0-3af8f6ee95f0" + ], + "x-ms-correlation-request-id": [ + "75bfc421-5022-4809-99e0-3af8f6ee95f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020809Z:75bfc421-5022-4809-99e0-3af8f6ee95f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31497,16 +32449,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8125e511-21e3-49d4-b58c-1a313b94b43b" + "e1634329-1f22-4d73-af06-f3c604dbefbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31526,34 +32478,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11534" + "11495" ], "x-ms-request-id": [ - "b7096df0-969c-4ab1-b391-02fcc01dfc23" + "2bb0bc6b-917a-4614-a2ce-4ff40c4e747e" ], "x-ms-correlation-request-id": [ - "b7096df0-969c-4ab1-b391-02fcc01dfc23" + "2bb0bc6b-917a-4614-a2ce-4ff40c4e747e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:b7096df0-969c-4ab1-b391-02fcc01dfc23" + "WESTUS2:20210213T020809Z:2bb0bc6b-917a-4614-a2ce-4ff40c4e747e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:09 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a15b91f-0e81-45c8-ada6-b10627487c03" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11494" + ], + "x-ms-request-id": [ + "427b7bb8-b8e4-4f2b-9fbf-6795fdc43cdd" + ], + "x-ms-correlation-request-id": [ + "427b7bb8-b8e4-4f2b-9fbf-6795fdc43cdd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020810Z:427b7bb8-b8e4-4f2b-9fbf-6795fdc43cdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31563,16 +32575,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "616d4875-befe-4a70-a76c-9ba0e18927bb" + "14ec050d-409f-4d48-9a94-5a8adf398adb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31592,34 +32604,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11533" + "11493" ], "x-ms-request-id": [ - "35d0e68a-3997-4952-a07d-eeb44939e251" + "9abd1cfd-9639-4e8e-94d2-99869ac97012" ], "x-ms-correlation-request-id": [ - "35d0e68a-3997-4952-a07d-eeb44939e251" + "9abd1cfd-9639-4e8e-94d2-99869ac97012" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204225Z:35d0e68a-3997-4952-a07d-eeb44939e251" + "WESTUS2:20210213T020810Z:9abd1cfd-9639-4e8e-94d2-99869ac97012" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:09 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31629,16 +32638,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1515a48c-a4a7-4e8c-9ac3-18e0a9160f8e" + "20cdd3db-5a38-44c5-852c-0d3fdce14e8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31658,34 +32667,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11532" + "11492" ], "x-ms-request-id": [ - "4f9f8d32-82e3-4aea-8d87-10459d3761ac" + "d7048942-3699-4271-963a-e38408eb56c8" ], "x-ms-correlation-request-id": [ - "4f9f8d32-82e3-4aea-8d87-10459d3761ac" + "d7048942-3699-4271-963a-e38408eb56c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:4f9f8d32-82e3-4aea-8d87-10459d3761ac" + "WESTUS2:20210213T020810Z:d7048942-3699-4271-963a-e38408eb56c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31695,16 +32701,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e748dba9-df48-4dba-8ccf-4a41ecfc1217" + "94d20183-5b99-4dd1-b8f0-c2d150d37834" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31724,34 +32730,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11531" + "11491" ], "x-ms-request-id": [ - "80bc1e92-28ac-4a16-b4b6-aae76f904649" + "4598c38f-a666-4228-9d68-295e67864ac8" ], "x-ms-correlation-request-id": [ - "80bc1e92-28ac-4a16-b4b6-aae76f904649" + "4598c38f-a666-4228-9d68-295e67864ac8" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:80bc1e92-28ac-4a16-b4b6-aae76f904649" + "WESTUS2:20210213T020810Z:4598c38f-a666-4228-9d68-295e67864ac8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31761,16 +32764,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b09fe51-80f5-4002-a1fb-20893a68d7d6" + "203b9da3-5fae-413f-8444-078ca186b331" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31790,34 +32793,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11530" + "11490" ], "x-ms-request-id": [ - "20d98e80-4e43-4abb-ba3c-3a607e6bd64a" + "20e15d5e-842d-49fc-965d-56d022b2c45c" ], "x-ms-correlation-request-id": [ - "20d98e80-4e43-4abb-ba3c-3a607e6bd64a" + "20e15d5e-842d-49fc-965d-56d022b2c45c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:20d98e80-4e43-4abb-ba3c-3a607e6bd64a" + "WESTUS2:20210213T020810Z:20e15d5e-842d-49fc-965d-56d022b2c45c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31827,16 +32827,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78216c07-d55f-49ef-8a5c-62e4901c12f8" + "f56aa32e-91dc-4aac-8962-370003e16263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31856,34 +32856,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11529" + "11489" ], "x-ms-request-id": [ - "f122345a-653a-4b43-8673-2eab0a647572" + "2eea1010-19be-487d-9191-1ac09c238212" ], "x-ms-correlation-request-id": [ - "f122345a-653a-4b43-8673-2eab0a647572" + "2eea1010-19be-487d-9191-1ac09c238212" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:f122345a-653a-4b43-8673-2eab0a647572" + "WESTUS2:20210213T020810Z:2eea1010-19be-487d-9191-1ac09c238212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:25 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31893,16 +32890,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d444fe0e-96c0-4334-9e69-d098ce4c40b6" + "9207c94e-bfb0-41a6-b361-5ffcf7457dfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31922,34 +32919,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11528" + "11488" ], "x-ms-request-id": [ - "360b5137-0342-400b-be6b-dcfd365b0212" + "cd33e678-ea49-4c03-9691-68a728941932" ], "x-ms-correlation-request-id": [ - "360b5137-0342-400b-be6b-dcfd365b0212" + "cd33e678-ea49-4c03-9691-68a728941932" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:360b5137-0342-400b-be6b-dcfd365b0212" + "WESTUS2:20210213T020811Z:cd33e678-ea49-4c03-9691-68a728941932" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -31959,16 +32953,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d5a9db3-bc84-4f95-9f2d-131f12b49239" + "a3c36736-4922-4a1d-baf8-d7d1a2c94408" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -31988,34 +32982,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11527" + "11487" ], "x-ms-request-id": [ - "97a20ca7-acef-42c6-8af1-ad3d4659e548" + "906da830-24b1-455a-a9d3-a8c6cdd97aa9" ], "x-ms-correlation-request-id": [ - "97a20ca7-acef-42c6-8af1-ad3d4659e548" + "906da830-24b1-455a-a9d3-a8c6cdd97aa9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:97a20ca7-acef-42c6-8af1-ad3d4659e548" + "WESTUS2:20210213T020811Z:906da830-24b1-455a-a9d3-a8c6cdd97aa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:10 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32025,16 +33016,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ba062b0-7a2a-4794-aecb-71b4b18c088a" + "5fb79ac9-55ca-44f3-b5e2-b32f60e0bcaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32054,34 +33045,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11526" + "11486" ], "x-ms-request-id": [ - "354de72f-43a2-49af-988a-843e66fcb943" + "08138830-cc0e-4b9d-b7b5-8b92736edc3f" ], "x-ms-correlation-request-id": [ - "354de72f-43a2-49af-988a-843e66fcb943" + "08138830-cc0e-4b9d-b7b5-8b92736edc3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:354de72f-43a2-49af-988a-843e66fcb943" + "WESTUS2:20210213T020811Z:08138830-cc0e-4b9d-b7b5-8b92736edc3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:11 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32091,16 +33079,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8df3fad6-a7df-4d1e-aebd-18f9fc7763c9" + "e9a851df-229d-4d76-8367-ff6ce3418869" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32120,34 +33108,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11525" + "11485" ], "x-ms-request-id": [ - "a93dc75a-829c-406a-86a4-bb2481713f22" + "f496dc87-24e8-4955-88bc-07beb623457a" ], "x-ms-correlation-request-id": [ - "a93dc75a-829c-406a-86a4-bb2481713f22" + "f496dc87-24e8-4955-88bc-07beb623457a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204226Z:a93dc75a-829c-406a-86a4-bb2481713f22" + "WESTUS2:20210213T020811Z:f496dc87-24e8-4955-88bc-07beb623457a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:11 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32157,16 +33142,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c453317-1279-415c-baa2-9709228b4193" + "e882b40a-ba33-44da-8f37-c732145dcbf0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32186,34 +33171,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11524" + "11484" ], "x-ms-request-id": [ - "ce9c1ad0-79be-486a-89d2-e2b4599e4a04" + "1c8f509f-b907-45e2-ada8-a9b2034a289e" ], "x-ms-correlation-request-id": [ - "ce9c1ad0-79be-486a-89d2-e2b4599e4a04" + "1c8f509f-b907-45e2-ada8-a9b2034a289e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:ce9c1ad0-79be-486a-89d2-e2b4599e4a04" + "WESTUS2:20210213T020811Z:1c8f509f-b907-45e2-ada8-a9b2034a289e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:11 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32223,16 +33205,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12add696-04e9-4e31-81fa-f5936b0c0c81" + "7c3f92ca-ca9d-4ed1-b35e-e3445fed20ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32252,34 +33234,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11523" + "11483" ], "x-ms-request-id": [ - "921aca58-6b9e-4090-ad0d-e485b9c2d6cf" + "243539e9-3584-4b91-881b-6a9fcae53e69" ], "x-ms-correlation-request-id": [ - "921aca58-6b9e-4090-ad0d-e485b9c2d6cf" + "243539e9-3584-4b91-881b-6a9fcae53e69" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:921aca58-6b9e-4090-ad0d-e485b9c2d6cf" + "WESTUS2:20210213T020811Z:243539e9-3584-4b91-881b-6a9fcae53e69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:26 GMT" + "Sat, 13 Feb 2021 02:08:11 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32289,16 +33268,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9849f5c1-e335-4d51-8c96-431e839a9179" + "d3a7e084-8c8d-408d-b6f5-44329b1a2f49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32318,34 +33297,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11522" + "11482" ], "x-ms-request-id": [ - "450533fa-3ca8-4498-be28-57d000925a4d" + "57785567-144f-43a5-a2e8-be2810e579af" ], "x-ms-correlation-request-id": [ - "450533fa-3ca8-4498-be28-57d000925a4d" + "57785567-144f-43a5-a2e8-be2810e579af" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:450533fa-3ca8-4498-be28-57d000925a4d" + "WESTUS2:20210213T020812Z:57785567-144f-43a5-a2e8-be2810e579af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:11 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59f9580d-bfb2-4769-aec3-9d1f2867748f" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11481" + ], + "x-ms-request-id": [ + "89b1a69c-b8ad-4889-b3a0-8deecf86220c" + ], + "x-ms-correlation-request-id": [ + "89b1a69c-b8ad-4889-b3a0-8deecf86220c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020812Z:89b1a69c-b8ad-4889-b3a0-8deecf86220c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32355,16 +33394,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8319876-a9a2-4853-b693-24ec856a1d07" + "ec2c3bb9-eddc-43ee-a785-7083cd4a3371" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32384,34 +33423,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11521" + "11480" ], "x-ms-request-id": [ - "8b95f89d-f9f1-4e80-8f7c-f566679842e0" + "eaedc4be-103d-4e9e-81a8-0704da7ee227" ], "x-ms-correlation-request-id": [ - "8b95f89d-f9f1-4e80-8f7c-f566679842e0" + "eaedc4be-103d-4e9e-81a8-0704da7ee227" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:8b95f89d-f9f1-4e80-8f7c-f566679842e0" + "WESTUS2:20210213T020812Z:eaedc4be-103d-4e9e-81a8-0704da7ee227" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:12 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79b20190-2853-45da-95eb-c43b25ce1180" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11479" + ], + "x-ms-request-id": [ + "abebd63a-94ba-4d8a-bc87-974063279a2d" + ], + "x-ms-correlation-request-id": [ + "abebd63a-94ba-4d8a-bc87-974063279a2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020812Z:abebd63a-94ba-4d8a-bc87-974063279a2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32421,16 +33520,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ff16ad6-08ec-4f27-b5ea-640c5de6bb6e" + "00988a42-2672-4705-bf73-9fd46fd24385" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32450,34 +33549,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11520" + "11478" ], "x-ms-request-id": [ - "86213b98-7c95-44df-bd0b-018f48ae4b3d" + "c28d6769-e14a-4a48-90b9-c3cc73bc1274" ], "x-ms-correlation-request-id": [ - "86213b98-7c95-44df-bd0b-018f48ae4b3d" + "c28d6769-e14a-4a48-90b9-c3cc73bc1274" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:86213b98-7c95-44df-bd0b-018f48ae4b3d" + "WESTUS2:20210213T020812Z:c28d6769-e14a-4a48-90b9-c3cc73bc1274" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:12 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "671e3641-e590-4ff5-bd1c-7a767be44010" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11477" + ], + "x-ms-request-id": [ + "fe7a3230-24af-4af9-a0a0-c84c3ab0ed99" + ], + "x-ms-correlation-request-id": [ + "fe7a3230-24af-4af9-a0a0-c84c3ab0ed99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020812Z:fe7a3230-24af-4af9-a0a0-c84c3ab0ed99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32487,16 +33646,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d8e1cb6-cd7f-414a-8afd-c0d82f945d25" + "fa921499-afec-412f-9b2a-fa5a0600a681" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32516,34 +33675,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11519" + "11476" ], "x-ms-request-id": [ - "881e9fae-c5c2-49d0-abee-89346b160cbf" + "e3df7563-1123-4f8f-8e2c-cd787acdcab2" ], "x-ms-correlation-request-id": [ - "881e9fae-c5c2-49d0-abee-89346b160cbf" + "e3df7563-1123-4f8f-8e2c-cd787acdcab2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:881e9fae-c5c2-49d0-abee-89346b160cbf" + "WESTUS2:20210213T020813Z:e3df7563-1123-4f8f-8e2c-cd787acdcab2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:12 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32553,16 +33709,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "861bb4fe-7437-464b-ac33-0c9dfede2b07" + "72cea872-bca9-4d3f-8774-f7dfe972d2f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32582,34 +33738,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11518" + "11475" ], "x-ms-request-id": [ - "b84da390-37e6-4315-8360-f2a487cfed9c" + "6b90397f-2f81-4bd5-85bb-b20156f39411" ], "x-ms-correlation-request-id": [ - "b84da390-37e6-4315-8360-f2a487cfed9c" + "6b90397f-2f81-4bd5-85bb-b20156f39411" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204227Z:b84da390-37e6-4315-8360-f2a487cfed9c" + "WESTUS2:20210213T020813Z:6b90397f-2f81-4bd5-85bb-b20156f39411" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:12 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32619,16 +33772,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cf211c8-f18f-4967-90be-f1ed5aa782fa" + "5e010c20-ba17-4f19-8c35-bb8006841446" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32648,34 +33801,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11517" + "11474" ], "x-ms-request-id": [ - "c70f707b-1848-42e4-98bd-90ec94a8aa6d" + "65bacbed-882f-480d-ac73-0ee2aabaa705" ], "x-ms-correlation-request-id": [ - "c70f707b-1848-42e4-98bd-90ec94a8aa6d" + "65bacbed-882f-480d-ac73-0ee2aabaa705" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:c70f707b-1848-42e4-98bd-90ec94a8aa6d" + "WESTUS2:20210213T020813Z:65bacbed-882f-480d-ac73-0ee2aabaa705" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32685,16 +33835,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b215cd36-4d74-4fec-a586-6cf3016362b8" + "1c095ed8-8d93-461c-bb0c-1ed884d90100" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32714,34 +33864,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11516" + "11473" ], "x-ms-request-id": [ - "b1a3b3eb-8125-489f-b7ec-0311fd7e6a9a" + "7e6e8e0c-de16-4080-a688-df9d58bfffb0" ], "x-ms-correlation-request-id": [ - "b1a3b3eb-8125-489f-b7ec-0311fd7e6a9a" + "7e6e8e0c-de16-4080-a688-df9d58bfffb0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:b1a3b3eb-8125-489f-b7ec-0311fd7e6a9a" + "WESTUS2:20210213T020813Z:7e6e8e0c-de16-4080-a688-df9d58bfffb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32751,16 +33898,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0af094a7-5c1d-4496-bb72-0c24e9389d04" + "6adbff61-dba4-4d09-8285-ffed5d42263f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32780,34 +33927,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11515" + "11472" ], "x-ms-request-id": [ - "2285722f-cb5e-44d6-8ea2-b4ba2e773890" + "63a5bbc5-321a-435a-984f-7eae31d89479" ], "x-ms-correlation-request-id": [ - "2285722f-cb5e-44d6-8ea2-b4ba2e773890" + "63a5bbc5-321a-435a-984f-7eae31d89479" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:2285722f-cb5e-44d6-8ea2-b4ba2e773890" + "WESTUS2:20210213T020813Z:63a5bbc5-321a-435a-984f-7eae31d89479" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:27 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32817,16 +33961,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6426718-168d-4869-801a-9ab6d655695b" + "39dcad6d-1232-4f35-856d-5ac6ebf0a688" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32846,34 +33990,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11514" + "11471" ], "x-ms-request-id": [ - "99e666d5-d302-449b-acc6-9c265e27def0" + "db8d40fb-ce83-4986-9fc3-33a002db242d" ], "x-ms-correlation-request-id": [ - "99e666d5-d302-449b-acc6-9c265e27def0" + "db8d40fb-ce83-4986-9fc3-33a002db242d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:99e666d5-d302-449b-acc6-9c265e27def0" + "WESTUS2:20210213T020813Z:db8d40fb-ce83-4986-9fc3-33a002db242d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32883,16 +34024,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d2db9e0-1ae3-48f2-9a69-c969aafa8833" + "e48d9ed5-f7f6-44e2-8306-142cc6cc8818" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32912,34 +34053,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11513" + "11470" ], "x-ms-request-id": [ - "75a14a59-c54b-4207-b65f-564b0a41a8d2" + "ab211ff2-2772-454e-8849-4dbefb0ce177" ], "x-ms-correlation-request-id": [ - "75a14a59-c54b-4207-b65f-564b0a41a8d2" + "ab211ff2-2772-454e-8849-4dbefb0ce177" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:75a14a59-c54b-4207-b65f-564b0a41a8d2" + "WESTUS2:20210213T020814Z:ab211ff2-2772-454e-8849-4dbefb0ce177" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -32949,16 +34087,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a790e06-440d-4e1a-a37a-0ac166b69c03" + "b6a4cfe7-ff98-44c1-ac4b-32fcd045973a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -32978,34 +34116,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11512" + "11469" ], "x-ms-request-id": [ - "140fdfc0-f172-49e9-997d-40627acebb91" + "d3b2d868-fc17-4cb3-999b-558f94438a99" ], "x-ms-correlation-request-id": [ - "140fdfc0-f172-49e9-997d-40627acebb91" + "d3b2d868-fc17-4cb3-999b-558f94438a99" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204228Z:140fdfc0-f172-49e9-997d-40627acebb91" + "WESTUS2:20210213T020814Z:d3b2d868-fc17-4cb3-999b-558f94438a99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:13 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33015,16 +34150,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb60c5ae-c009-4d66-a309-89e5d4b8274d" + "fedd5a43-0dd3-470e-af9f-634550e421f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33044,34 +34179,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11511" + "11468" ], "x-ms-request-id": [ - "4206240d-549f-4063-b786-d1bccf5a87e7" + "cebc7ac3-5454-407a-8f26-b0524ec629a3" ], "x-ms-correlation-request-id": [ - "4206240d-549f-4063-b786-d1bccf5a87e7" + "cebc7ac3-5454-407a-8f26-b0524ec629a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:4206240d-549f-4063-b786-d1bccf5a87e7" + "WESTUS2:20210213T020814Z:cebc7ac3-5454-407a-8f26-b0524ec629a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:14 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33081,16 +34213,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ad8515-3624-4d30-812c-1bad44a88fb7" + "55482379-bb01-473c-8f02-f7f35c3f5a5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33110,34 +34242,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11510" + "11467" ], "x-ms-request-id": [ - "0f2b7c56-f898-4ea6-9196-f8e82db4c956" + "88191ca4-538a-4608-af80-159e18fbe044" ], "x-ms-correlation-request-id": [ - "0f2b7c56-f898-4ea6-9196-f8e82db4c956" + "88191ca4-538a-4608-af80-159e18fbe044" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:0f2b7c56-f898-4ea6-9196-f8e82db4c956" + "WESTUS2:20210213T020814Z:88191ca4-538a-4608-af80-159e18fbe044" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:14 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33147,16 +34276,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a29ffc0-959a-4d2a-af8a-c3e6291287a3" + "99dc0975-00a9-4e14-b927-45afea23d22d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33176,34 +34305,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11509" + "11466" ], "x-ms-request-id": [ - "0f2911e7-69cc-4759-b9ed-4edd9c6636ac" + "5b97bc6e-f0d0-4f7e-94ad-632251fe2da3" ], "x-ms-correlation-request-id": [ - "0f2911e7-69cc-4759-b9ed-4edd9c6636ac" + "5b97bc6e-f0d0-4f7e-94ad-632251fe2da3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:0f2911e7-69cc-4759-b9ed-4edd9c6636ac" + "WESTUS2:20210213T020814Z:5b97bc6e-f0d0-4f7e-94ad-632251fe2da3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:28 GMT" + "Sat, 13 Feb 2021 02:08:14 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33213,16 +34339,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a28779f7-42e7-40fc-b682-46a2d2945ba6" + "47f02106-090a-425a-b026-3d1077f8e0cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33242,34 +34368,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11508" + "11465" ], "x-ms-request-id": [ - "4a0476c0-f8e8-4f5a-8357-94549a081a3b" + "a87020ef-a551-4fd2-bcd9-e7b72760ca07" ], "x-ms-correlation-request-id": [ - "4a0476c0-f8e8-4f5a-8357-94549a081a3b" + "a87020ef-a551-4fd2-bcd9-e7b72760ca07" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:4a0476c0-f8e8-4f5a-8357-94549a081a3b" + "WESTUS2:20210213T020814Z:a87020ef-a551-4fd2-bcd9-e7b72760ca07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:14 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef97c646-9a47-47ca-b2c7-5b71a5cc1329" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11464" + ], + "x-ms-request-id": [ + "0dc0564d-c1f7-47e5-aeda-87c8289a3eb4" + ], + "x-ms-correlation-request-id": [ + "0dc0564d-c1f7-47e5-aeda-87c8289a3eb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020815Z:0dc0564d-c1f7-47e5-aeda-87c8289a3eb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33279,16 +34465,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "824379e0-edaa-43c2-8f1f-3bcd336c6307" + "2e0b98f8-28b3-41e1-89de-cb94a187f359" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33308,34 +34494,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11507" + "11463" ], "x-ms-request-id": [ - "c7f78b07-5200-4d02-a262-9739f3f311e8" + "6360122e-2095-4e04-b6b9-79f4fabd94f1" ], "x-ms-correlation-request-id": [ - "c7f78b07-5200-4d02-a262-9739f3f311e8" + "6360122e-2095-4e04-b6b9-79f4fabd94f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:c7f78b07-5200-4d02-a262-9739f3f311e8" + "WESTUS2:20210213T020815Z:6360122e-2095-4e04-b6b9-79f4fabd94f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:14 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64a9af4c-221c-479f-9b83-f90fca5120b0" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11462" + ], + "x-ms-request-id": [ + "11df19c5-c40c-406d-9728-8b0f1d789eb4" + ], + "x-ms-correlation-request-id": [ + "11df19c5-c40c-406d-9728-8b0f1d789eb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020815Z:11df19c5-c40c-406d-9728-8b0f1d789eb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33345,16 +34591,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10dc89a9-ff35-4035-bb71-f5fc69a8dd41" + "2f96ebcb-555b-4f9f-b5f9-57dbb5f8a966" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33374,34 +34620,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11506" + "11461" ], "x-ms-request-id": [ - "c1ecc97a-0af7-43df-8ea1-2306d28240c9" + "2954738a-16af-4275-980d-a4ca4c5e2b9e" ], "x-ms-correlation-request-id": [ - "c1ecc97a-0af7-43df-8ea1-2306d28240c9" + "2954738a-16af-4275-980d-a4ca4c5e2b9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:c1ecc97a-0af7-43df-8ea1-2306d28240c9" + "WESTUS2:20210213T020815Z:2954738a-16af-4275-980d-a4ca4c5e2b9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:15 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "526c3042-0e24-44d7-b669-841ee56505dd" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11460" + ], + "x-ms-request-id": [ + "75bcf9ff-fe6b-41c3-8d41-fe7757438e14" + ], + "x-ms-correlation-request-id": [ + "75bcf9ff-fe6b-41c3-8d41-fe7757438e14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020815Z:75bcf9ff-fe6b-41c3-8d41-fe7757438e14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33411,16 +34717,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c12066f7-3681-4268-ab1a-1df18361a689" + "de97aaa1-5aba-4c6a-bf76-aac64a5be0f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33440,34 +34746,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11505" + "11459" ], "x-ms-request-id": [ - "bf7563cf-610c-4aa1-bcb7-a201a6bf136d" + "29521774-17f9-43b5-b718-50681ef28284" ], "x-ms-correlation-request-id": [ - "bf7563cf-610c-4aa1-bcb7-a201a6bf136d" + "29521774-17f9-43b5-b718-50681ef28284" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204229Z:bf7563cf-610c-4aa1-bcb7-a201a6bf136d" + "WESTUS2:20210213T020815Z:29521774-17f9-43b5-b718-50681ef28284" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:15 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33477,16 +34780,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f341ea93-85af-4f60-84ad-4bd61662bc5c" + "5e15bfd5-ace8-4e54-a2bf-251ce6d26431" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33506,34 +34809,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11504" + "11458" ], "x-ms-request-id": [ - "5bfe95e8-a18d-4306-b672-773fc0f1beb5" + "1a9d4731-4641-4cd6-b500-23113247845e" ], "x-ms-correlation-request-id": [ - "5bfe95e8-a18d-4306-b672-773fc0f1beb5" + "1a9d4731-4641-4cd6-b500-23113247845e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:5bfe95e8-a18d-4306-b672-773fc0f1beb5" + "WESTUS2:20210213T020816Z:1a9d4731-4641-4cd6-b500-23113247845e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:15 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33543,16 +34843,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bce4206a-c1fa-426f-b85e-1be04a0ad519" + "fbff64d8-8ab2-487d-bfb4-07f36af15812" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33572,34 +34872,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11503" + "11457" ], "x-ms-request-id": [ - "2e0ea612-e215-4d0b-b15c-d661228afb37" + "4fc7a1cd-a5d9-4035-b50e-8210f24ae8b3" ], "x-ms-correlation-request-id": [ - "2e0ea612-e215-4d0b-b15c-d661228afb37" + "4fc7a1cd-a5d9-4035-b50e-8210f24ae8b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:2e0ea612-e215-4d0b-b15c-d661228afb37" + "WESTUS2:20210213T020816Z:4fc7a1cd-a5d9-4035-b50e-8210f24ae8b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:15 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33609,16 +34906,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ec47cc1-2f7e-4f1e-9654-c6905582d475" + "d935a8e2-cad4-434f-a608-7919374025e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33638,34 +34935,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11502" + "11456" ], "x-ms-request-id": [ - "29a6a6ee-68ec-4239-bd58-d6730f825da6" + "13cc8a9c-941f-4301-992f-60cbbfe91c35" ], "x-ms-correlation-request-id": [ - "29a6a6ee-68ec-4239-bd58-d6730f825da6" + "13cc8a9c-941f-4301-992f-60cbbfe91c35" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:29a6a6ee-68ec-4239-bd58-d6730f825da6" + "WESTUS2:20210213T020816Z:13cc8a9c-941f-4301-992f-60cbbfe91c35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:29 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33675,16 +34969,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8535834c-c546-4499-b10c-284d4c5054ff" + "2313b39c-9b08-4b48-8469-6181cfd1298b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33704,34 +34998,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11501" + "11455" ], "x-ms-request-id": [ - "a023cfd4-7022-4efc-90e7-a7e8c995b6ad" + "3eb76585-7b02-437b-8c98-7c3de131ed31" ], "x-ms-correlation-request-id": [ - "a023cfd4-7022-4efc-90e7-a7e8c995b6ad" + "3eb76585-7b02-437b-8c98-7c3de131ed31" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:a023cfd4-7022-4efc-90e7-a7e8c995b6ad" + "WESTUS2:20210213T020816Z:3eb76585-7b02-437b-8c98-7c3de131ed31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33741,16 +35032,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dd68c6b-4749-4f54-ba68-67c8b36b1c84" + "98b00315-eccf-4845-ad59-4a8c64af1813" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33770,34 +35061,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11500" + "11454" ], "x-ms-request-id": [ - "6ab2dbcc-7273-42c2-8a0b-c4c919c9b98e" + "6672ce8d-4839-4bdf-ab26-9750203d99a5" ], "x-ms-correlation-request-id": [ - "6ab2dbcc-7273-42c2-8a0b-c4c919c9b98e" + "6672ce8d-4839-4bdf-ab26-9750203d99a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:6ab2dbcc-7273-42c2-8a0b-c4c919c9b98e" + "WESTUS2:20210213T020816Z:6672ce8d-4839-4bdf-ab26-9750203d99a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33807,16 +35095,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53f3d179-7d3a-4c17-99ee-9462825ef082" + "d7226bcc-39ed-41fa-b8ec-9ca1ce9b1a43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33836,34 +35124,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11499" + "11453" ], "x-ms-request-id": [ - "6cd7c29b-fb03-46de-a761-e53674ee92be" + "1912538c-27a5-4a1f-85da-83e9bdb8c0c1" ], "x-ms-correlation-request-id": [ - "6cd7c29b-fb03-46de-a761-e53674ee92be" + "1912538c-27a5-4a1f-85da-83e9bdb8c0c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204230Z:6cd7c29b-fb03-46de-a761-e53674ee92be" + "WESTUS2:20210213T020816Z:1912538c-27a5-4a1f-85da-83e9bdb8c0c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33873,16 +35158,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f01d1dae-4fe8-4717-97be-aff4a9d638e2" + "3e8133bd-ef25-4461-8e0a-13f18fe63b86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33902,34 +35187,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11498" + "11452" ], "x-ms-request-id": [ - "33cd8644-a7cc-47b3-a167-ab379be9a4d9" + "8a60823f-e7f4-4fd6-a239-cab530f89fb9" ], "x-ms-correlation-request-id": [ - "33cd8644-a7cc-47b3-a167-ab379be9a4d9" + "8a60823f-e7f4-4fd6-a239-cab530f89fb9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:33cd8644-a7cc-47b3-a167-ab379be9a4d9" + "WESTUS2:20210213T020817Z:8a60823f-e7f4-4fd6-a239-cab530f89fb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -33939,16 +35221,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f14d3ab-3dfc-45b4-9473-100dd7845963" + "fd26a8a3-d33c-490e-9aa5-f965f7cd57e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -33968,34 +35250,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11497" + "11451" ], "x-ms-request-id": [ - "42aa90d9-1a25-4fff-a9fe-f01b6aa130bc" + "0d6c08df-8391-454b-8062-f808927984a6" ], "x-ms-correlation-request-id": [ - "42aa90d9-1a25-4fff-a9fe-f01b6aa130bc" + "0d6c08df-8391-454b-8062-f808927984a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:42aa90d9-1a25-4fff-a9fe-f01b6aa130bc" + "WESTUS2:20210213T020817Z:0d6c08df-8391-454b-8062-f808927984a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34005,16 +35284,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e16aacb4-380a-41e8-9a2f-bc136dc2ebd8" + "b06ac170-da6d-4c65-8c15-02fb3b5d530b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34034,34 +35313,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11496" + "11450" ], "x-ms-request-id": [ - "bd9a5b19-51f3-4ab0-8525-c14013c18164" + "b3206475-b4c7-4319-afaa-c78e2ac577e0" ], "x-ms-correlation-request-id": [ - "bd9a5b19-51f3-4ab0-8525-c14013c18164" + "b3206475-b4c7-4319-afaa-c78e2ac577e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:bd9a5b19-51f3-4ab0-8525-c14013c18164" + "WESTUS2:20210213T020817Z:b3206475-b4c7-4319-afaa-c78e2ac577e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:30 GMT" + "Sat, 13 Feb 2021 02:08:16 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34071,16 +35347,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b5c99d-2990-46b4-9de5-196663c10db6" + "e241d42f-8071-4156-85ee-0db186548cd5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34100,34 +35376,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11495" + "11449" ], "x-ms-request-id": [ - "e57e24af-0339-43ac-8f32-22cea68f331c" + "0fffe5a4-0cfc-419f-98cc-cc581c5afa48" ], "x-ms-correlation-request-id": [ - "e57e24af-0339-43ac-8f32-22cea68f331c" + "0fffe5a4-0cfc-419f-98cc-cc581c5afa48" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:e57e24af-0339-43ac-8f32-22cea68f331c" + "WESTUS2:20210213T020817Z:0fffe5a4-0cfc-419f-98cc-cc581c5afa48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34137,16 +35410,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f637954-8b45-45a7-81b6-ec704bfb19d1" + "c5be2782-5ea7-4862-a762-53b15c52f256" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34166,34 +35439,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11494" + "11448" ], "x-ms-request-id": [ - "02c89dc0-72d1-43f2-8503-62ca307aeb32" + "e319702b-fc11-4215-b143-7e00c9bcbf7e" ], "x-ms-correlation-request-id": [ - "02c89dc0-72d1-43f2-8503-62ca307aeb32" + "e319702b-fc11-4215-b143-7e00c9bcbf7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:02c89dc0-72d1-43f2-8503-62ca307aeb32" + "WESTUS2:20210213T020817Z:e319702b-fc11-4215-b143-7e00c9bcbf7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34203,16 +35473,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a56f8b1-9e20-44cc-b316-ef501e2eb417" + "ff156929-cc47-4717-9ece-cd367d581c94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34232,34 +35502,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11493" + "11447" ], "x-ms-request-id": [ - "19440bbe-e250-429a-af3e-4cdff8a42c2c" + "cc337919-8625-4266-a2df-6699aebd303f" ], "x-ms-correlation-request-id": [ - "19440bbe-e250-429a-af3e-4cdff8a42c2c" + "cc337919-8625-4266-a2df-6699aebd303f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:19440bbe-e250-429a-af3e-4cdff8a42c2c" + "WESTUS2:20210213T020817Z:cc337919-8625-4266-a2df-6699aebd303f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34269,16 +35536,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7668ef31-e793-4b1d-b903-df51bc67b9fb" + "31fe8b14-1c5f-4f8b-88b0-59cf192ef59a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34298,34 +35565,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11492" + "11446" ], "x-ms-request-id": [ - "399e92e8-40e0-4f8e-9ffa-14532ba1fcee" + "fbc14e9f-af00-470f-8599-db8076361763" ], "x-ms-correlation-request-id": [ - "399e92e8-40e0-4f8e-9ffa-14532ba1fcee" + "fbc14e9f-af00-470f-8599-db8076361763" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204231Z:399e92e8-40e0-4f8e-9ffa-14532ba1fcee" + "WESTUS2:20210213T020818Z:fbc14e9f-af00-470f-8599-db8076361763" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34335,16 +35599,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a5d341f-fd8f-4526-b2da-efa71d68da59" + "92dd7f3a-ca75-48ae-8350-3e60ee9cd0f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34364,34 +35628,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11491" + "11445" ], "x-ms-request-id": [ - "c9772176-daf8-4b3f-9828-f0fef0c34f53" + "f83f52bc-e0a9-4768-bca7-4db28a4c4de0" ], "x-ms-correlation-request-id": [ - "c9772176-daf8-4b3f-9828-f0fef0c34f53" + "f83f52bc-e0a9-4768-bca7-4db28a4c4de0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204232Z:c9772176-daf8-4b3f-9828-f0fef0c34f53" + "WESTUS2:20210213T020818Z:f83f52bc-e0a9-4768-bca7-4db28a4c4de0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34401,16 +35662,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e58cd8b8-00bc-4f49-9791-4b26980c164c" + "18e505a6-f262-4127-8198-2bd5335add0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34430,34 +35691,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11490" + "11444" ], "x-ms-request-id": [ - "51611e93-c8b6-4429-9c98-63d328807b57" + "5cfd8730-28af-48b8-a513-509625fd6ca6" ], "x-ms-correlation-request-id": [ - "51611e93-c8b6-4429-9c98-63d328807b57" + "5cfd8730-28af-48b8-a513-509625fd6ca6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204232Z:51611e93-c8b6-4429-9c98-63d328807b57" + "WESTUS2:20210213T020818Z:5cfd8730-28af-48b8-a513-509625fd6ca6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:31 GMT" + "Sat, 13 Feb 2021 02:08:17 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34467,16 +35725,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75242ba0-e61b-4ad9-8b2b-5aa05bcd7d7e" + "e214b0fd-4f18-4b1b-aa3d-6a413b489a81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34496,34 +35754,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11489" + "11443" ], "x-ms-request-id": [ - "6469cdd1-44a7-4f24-8755-aba921fa717c" + "f3318928-b27a-4ee5-a6cb-4c22ba82c00a" ], "x-ms-correlation-request-id": [ - "6469cdd1-44a7-4f24-8755-aba921fa717c" + "f3318928-b27a-4ee5-a6cb-4c22ba82c00a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204232Z:6469cdd1-44a7-4f24-8755-aba921fa717c" + "WESTUS2:20210213T020818Z:f3318928-b27a-4ee5-a6cb-4c22ba82c00a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34533,16 +35788,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78cf5560-a0be-4ee7-a3e5-7884e1c41f02" + "69b76f4f-5561-4a21-aa1c-962ab285d880" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34562,34 +35817,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11488" + "11442" ], "x-ms-request-id": [ - "679da7a7-5280-4162-ac60-6f83c56c47b3" + "ec5399a5-4326-492d-b015-c8e8c20e254f" ], "x-ms-correlation-request-id": [ - "679da7a7-5280-4162-ac60-6f83c56c47b3" + "ec5399a5-4326-492d-b015-c8e8c20e254f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204232Z:679da7a7-5280-4162-ac60-6f83c56c47b3" + "WESTUS2:20210213T020818Z:ec5399a5-4326-492d-b015-c8e8c20e254f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34599,16 +35851,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68cd59cc-991b-41e0-a02b-75bc627ffb6a" + "35a80560-7819-4433-9cf4-1490970ce4d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34628,34 +35880,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11487" + "11441" ], "x-ms-request-id": [ - "a4c738c6-dbb0-4143-9d01-332f721bdec1" + "0e5e6ad1-bced-41bc-ba8e-6dccd46674a9" ], "x-ms-correlation-request-id": [ - "a4c738c6-dbb0-4143-9d01-332f721bdec1" + "0e5e6ad1-bced-41bc-ba8e-6dccd46674a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204232Z:a4c738c6-dbb0-4143-9d01-332f721bdec1" + "WESTUS2:20210213T020818Z:0e5e6ad1-bced-41bc-ba8e-6dccd46674a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34665,16 +35914,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0bff10f-80cf-46d6-a030-f2bd3c2bbac6" + "a707cfaf-3316-4e4d-87c5-e201cd807acc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34694,34 +35943,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11486" + "11440" ], "x-ms-request-id": [ - "de4706a8-4d26-4ad2-8df2-b795840273ed" + "2c0c577d-aa71-475e-9ad5-5598bdf546c2" ], "x-ms-correlation-request-id": [ - "de4706a8-4d26-4ad2-8df2-b795840273ed" + "2c0c577d-aa71-475e-9ad5-5598bdf546c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:de4706a8-4d26-4ad2-8df2-b795840273ed" + "WESTUS2:20210213T020819Z:2c0c577d-aa71-475e-9ad5-5598bdf546c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34731,16 +35977,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "897824e1-e0a2-4e53-ac24-b739caa290d3" + "6410bb34-203f-48cf-818d-cd864cc37869" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34760,34 +36006,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11485" + "11439" ], "x-ms-request-id": [ - "ca361589-8ab5-4539-95fd-d10f5f7a4f02" + "cade11aa-1d5c-44d7-a6d1-83f2411d6438" ], "x-ms-correlation-request-id": [ - "ca361589-8ab5-4539-95fd-d10f5f7a4f02" + "cade11aa-1d5c-44d7-a6d1-83f2411d6438" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:ca361589-8ab5-4539-95fd-d10f5f7a4f02" + "WESTUS2:20210213T020819Z:cade11aa-1d5c-44d7-a6d1-83f2411d6438" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34797,16 +36040,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b7a6f3b-fea1-4cee-87fb-62ea4dbc4b2a" + "1d4f823b-0172-42f1-9658-8d52d3a67472" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34826,34 +36069,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11484" + "11438" ], "x-ms-request-id": [ - "85a8cc4b-15f8-4107-8f51-ff325c176e2e" + "5e94724d-bdd8-4a38-b457-d9b5dbf5d1c4" ], "x-ms-correlation-request-id": [ - "85a8cc4b-15f8-4107-8f51-ff325c176e2e" + "5e94724d-bdd8-4a38-b457-d9b5dbf5d1c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:85a8cc4b-15f8-4107-8f51-ff325c176e2e" + "WESTUS2:20210213T020819Z:5e94724d-bdd8-4a38-b457-d9b5dbf5d1c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:32 GMT" + "Sat, 13 Feb 2021 02:08:18 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34863,16 +36103,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa5a0704-6d37-4cbc-84e1-ea8c80b1295e" + "b6faaeb3-4705-4a27-afb1-bc960aa9841d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34892,34 +36132,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11483" + "11437" ], "x-ms-request-id": [ - "9ed6496f-3bd6-4c29-b0d9-c97165c1fa19" + "23e35f10-a05a-487f-b1b6-ce45353e236e" ], "x-ms-correlation-request-id": [ - "9ed6496f-3bd6-4c29-b0d9-c97165c1fa19" + "23e35f10-a05a-487f-b1b6-ce45353e236e" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:9ed6496f-3bd6-4c29-b0d9-c97165c1fa19" + "WESTUS2:20210213T020819Z:23e35f10-a05a-487f-b1b6-ce45353e236e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:19 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6960610a-de46-494d-9920-31f5ef2ac219" + ], + "Accept-Language": [ + "en-US" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11436" + ], + "x-ms-request-id": [ + "6107d422-dc8b-41dc-a024-cc8dcab260b6" + ], + "x-ms-correlation-request-id": [ + "6107d422-dc8b-41dc-a024-cc8dcab260b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020819Z:6107d422-dc8b-41dc-a024-cc8dcab260b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34929,16 +36229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7985e76d-5461-4e01-82df-ba5c72c62966" + "3b94e80b-e914-4767-8572-72d63fcdea35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -34958,34 +36258,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11482" + "11435" ], "x-ms-request-id": [ - "eaaa61ab-13fc-423b-a398-3186b8de406e" + "2cc630e5-eab0-4617-bc5d-c79eac297e55" ], "x-ms-correlation-request-id": [ - "eaaa61ab-13fc-423b-a398-3186b8de406e" + "2cc630e5-eab0-4617-bc5d-c79eac297e55" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:eaaa61ab-13fc-423b-a398-3186b8de406e" + "WESTUS2:20210213T020819Z:2cc630e5-eab0-4617-bc5d-c79eac297e55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:19 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58de134d-79d3-45bb-898e-b33752f19b07" + ], + "Accept-Language": [ + "en-US" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11434" + ], + "x-ms-request-id": [ + "7b997d86-86b9-4261-8f93-a06c2ee422af" + ], + "x-ms-correlation-request-id": [ + "7b997d86-86b9-4261-8f93-a06c2ee422af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020819Z:7b997d86-86b9-4261-8f93-a06c2ee422af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -34995,16 +36355,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fc94883-a09a-498d-8cca-e568e775cb9a" + "047e3e61-1b24-431f-8b74-0f72818a9a62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35024,34 +36384,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11481" + "11433" ], "x-ms-request-id": [ - "75096e6e-30af-4689-95c7-940de924eb81" + "237ec0f1-f339-4e5c-a25b-cf6c596fd7a9" ], "x-ms-correlation-request-id": [ - "75096e6e-30af-4689-95c7-940de924eb81" + "237ec0f1-f339-4e5c-a25b-cf6c596fd7a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:75096e6e-30af-4689-95c7-940de924eb81" + "WESTUS2:20210213T020820Z:237ec0f1-f339-4e5c-a25b-cf6c596fd7a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:19 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35061,16 +36418,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ad557b7-988c-4a2a-afc8-b1519aa93564" + "44d87566-3ff0-4c51-b275-ccb4d173fddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35090,34 +36447,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11480" + "11432" ], "x-ms-request-id": [ - "2e312899-59e4-4962-a88e-ffec7e268e0d" + "9bbf1b53-e146-4c9b-aa22-658f783a74c9" ], "x-ms-correlation-request-id": [ - "2e312899-59e4-4962-a88e-ffec7e268e0d" + "9bbf1b53-e146-4c9b-aa22-658f783a74c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204233Z:2e312899-59e4-4962-a88e-ffec7e268e0d" + "WESTUS2:20210213T020820Z:9bbf1b53-e146-4c9b-aa22-658f783a74c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:19 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35127,16 +36481,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce591dba-3915-4fc9-90af-8989e31d5694" + "7de0eef2-cb9b-433e-9df6-e6213f699c7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35156,34 +36510,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11479" + "11431" ], "x-ms-request-id": [ - "859ed06b-8b11-4adb-a50d-239cd17d5d86" + "cefc055f-6c8a-470d-8799-10a322aa193a" ], "x-ms-correlation-request-id": [ - "859ed06b-8b11-4adb-a50d-239cd17d5d86" + "cefc055f-6c8a-470d-8799-10a322aa193a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:859ed06b-8b11-4adb-a50d-239cd17d5d86" + "WESTUS2:20210213T020820Z:cefc055f-6c8a-470d-8799-10a322aa193a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35193,16 +36544,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0035a6c-98f2-4c54-ad53-df07747901c4" + "1b3f3b3a-64df-4f76-810a-2f09a6c4d8c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35222,34 +36573,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11478" + "11430" ], "x-ms-request-id": [ - "be62d242-ba18-4141-bd2b-f909ce7ce731" + "5c9318dc-8f4d-4ce4-ab6f-69d57d6a93db" ], "x-ms-correlation-request-id": [ - "be62d242-ba18-4141-bd2b-f909ce7ce731" + "5c9318dc-8f4d-4ce4-ab6f-69d57d6a93db" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:be62d242-ba18-4141-bd2b-f909ce7ce731" + "WESTUS2:20210213T020820Z:5c9318dc-8f4d-4ce4-ab6f-69d57d6a93db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35259,16 +36607,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7375340f-5032-42f8-906d-c62be0b20315" + "6ef36637-9ccb-4ec4-b04e-933e8974c717" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35288,34 +36636,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11477" + "11429" ], "x-ms-request-id": [ - "a5f0b58b-9364-43ce-831a-46a9a52aa7da" + "d978f0b4-decf-48f5-a2de-9698956d91fa" ], "x-ms-correlation-request-id": [ - "a5f0b58b-9364-43ce-831a-46a9a52aa7da" + "d978f0b4-decf-48f5-a2de-9698956d91fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:a5f0b58b-9364-43ce-831a-46a9a52aa7da" + "WESTUS2:20210213T020820Z:d978f0b4-decf-48f5-a2de-9698956d91fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:33 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35325,16 +36670,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "582d5170-a16e-4f78-bcf5-7e239a5c67d8" + "cbe44aab-27e8-4c94-a00e-bb8a12e92e29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35354,34 +36699,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11476" + "11428" ], "x-ms-request-id": [ - "c2c6c97a-db93-4c44-874a-3c97ea23cb68" + "977eb3e9-184a-4578-a1ca-c96dc25ad23c" ], "x-ms-correlation-request-id": [ - "c2c6c97a-db93-4c44-874a-3c97ea23cb68" + "977eb3e9-184a-4578-a1ca-c96dc25ad23c" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:c2c6c97a-db93-4c44-874a-3c97ea23cb68" + "WESTUS2:20210213T020820Z:977eb3e9-184a-4578-a1ca-c96dc25ad23c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35391,16 +36733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "645a4286-0c19-4adf-ae99-6685959808b0" + "c4419c11-5dec-4028-928f-757660fca2ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35420,34 +36762,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11475" + "11427" ], "x-ms-request-id": [ - "322292c8-606b-4f05-a988-1690e1c3dd0c" + "d459354e-13e6-4d5f-98ad-898b7c32bd8a" ], "x-ms-correlation-request-id": [ - "322292c8-606b-4f05-a988-1690e1c3dd0c" + "d459354e-13e6-4d5f-98ad-898b7c32bd8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:322292c8-606b-4f05-a988-1690e1c3dd0c" + "WESTUS2:20210213T020821Z:d459354e-13e6-4d5f-98ad-898b7c32bd8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35457,16 +36796,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dafde447-61a2-41ed-8dd4-a2fd7bc45d26" + "b55e3a5b-c419-4084-96d6-031a149fe562" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35486,34 +36825,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11474" + "11426" ], "x-ms-request-id": [ - "625abcf3-f4e3-46db-b902-282bda7fd815" + "36cd4012-63f0-4cec-af80-90bac553b810" ], "x-ms-correlation-request-id": [ - "625abcf3-f4e3-46db-b902-282bda7fd815" + "36cd4012-63f0-4cec-af80-90bac553b810" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:625abcf3-f4e3-46db-b902-282bda7fd815" + "WESTUS2:20210213T020821Z:36cd4012-63f0-4cec-af80-90bac553b810" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:20 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35523,16 +36859,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3a920be-47fb-4d5b-999b-ae53ec102b1d" + "36b70cb4-5048-4fee-aa95-cc02e68b9060" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35552,34 +36888,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11473" + "11425" ], "x-ms-request-id": [ - "f805a9a0-4593-47c8-b262-3dee4824a230" + "9b72dc97-9c9f-4c33-8ece-1c3baded95d1" ], "x-ms-correlation-request-id": [ - "f805a9a0-4593-47c8-b262-3dee4824a230" + "9b72dc97-9c9f-4c33-8ece-1c3baded95d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204234Z:f805a9a0-4593-47c8-b262-3dee4824a230" + "WESTUS2:20210213T020821Z:9b72dc97-9c9f-4c33-8ece-1c3baded95d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35589,16 +36922,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d432255-c376-4711-ae89-3a51d7bb422e" + "a26fab9f-c273-455a-ba24-8d3c51dfadcc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35618,34 +36951,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11472" + "11424" ], "x-ms-request-id": [ - "f94e087e-8248-457c-865c-846ed73793ed" + "b0a4d398-05f9-4c15-857f-b3b97384b1e6" ], "x-ms-correlation-request-id": [ - "f94e087e-8248-457c-865c-846ed73793ed" + "b0a4d398-05f9-4c15-857f-b3b97384b1e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:f94e087e-8248-457c-865c-846ed73793ed" + "WESTUS2:20210213T020821Z:b0a4d398-05f9-4c15-857f-b3b97384b1e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35655,16 +36985,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4309e654-a502-44a9-97f9-02035682e513" + "5e2ad301-c563-4cb4-b147-652d02f02e2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35684,34 +37014,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11471" + "11423" ], "x-ms-request-id": [ - "c6e84cc8-bae2-4c0c-bcfe-23da24d9af06" + "6124f628-a2c8-4357-991e-a31810859b66" ], "x-ms-correlation-request-id": [ - "c6e84cc8-bae2-4c0c-bcfe-23da24d9af06" + "6124f628-a2c8-4357-991e-a31810859b66" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:c6e84cc8-bae2-4c0c-bcfe-23da24d9af06" + "WESTUS2:20210213T020821Z:6124f628-a2c8-4357-991e-a31810859b66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35721,16 +37048,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c91a60c-1f2b-426a-a2fb-73531cd83c4a" + "a0cb8f36-8ec4-4801-ae3b-7b3a05e07206" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35750,34 +37077,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11470" + "11422" ], "x-ms-request-id": [ - "f17294c8-c864-4b61-9002-685e0ba64431" + "8a3aca97-619a-4772-af65-23b4b15d4d78" ], "x-ms-correlation-request-id": [ - "f17294c8-c864-4b61-9002-685e0ba64431" + "8a3aca97-619a-4772-af65-23b4b15d4d78" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:f17294c8-c864-4b61-9002-685e0ba64431" + "WESTUS2:20210213T020822Z:8a3aca97-619a-4772-af65-23b4b15d4d78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:34 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35787,16 +37111,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e569242-a084-4f7b-b875-f00b7e88d0e4" + "f030cede-2346-48c0-87c0-728989ff1595" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35816,34 +37140,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11469" + "11421" ], "x-ms-request-id": [ - "5447faef-d3cc-44c5-9797-88080af3285b" + "2ceacdf1-89fa-42e0-9e95-ba1e6ada657a" ], "x-ms-correlation-request-id": [ - "5447faef-d3cc-44c5-9797-88080af3285b" + "2ceacdf1-89fa-42e0-9e95-ba1e6ada657a" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:5447faef-d3cc-44c5-9797-88080af3285b" + "WESTUS2:20210213T020822Z:2ceacdf1-89fa-42e0-9e95-ba1e6ada657a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35853,16 +37174,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33f410a2-790f-4943-8f6a-287c4a148612" + "eb566199-7df2-45d0-9499-29ce30e8c364" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35882,34 +37203,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11468" + "11420" ], "x-ms-request-id": [ - "48e65777-18e2-4b95-974f-cd169e0bbba6" + "5146d1fd-b8bd-4f1c-8f99-d29c3465f1cd" ], "x-ms-correlation-request-id": [ - "48e65777-18e2-4b95-974f-cd169e0bbba6" + "5146d1fd-b8bd-4f1c-8f99-d29c3465f1cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:48e65777-18e2-4b95-974f-cd169e0bbba6" + "WESTUS2:20210213T020822Z:5146d1fd-b8bd-4f1c-8f99-d29c3465f1cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:21 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35919,16 +37237,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a57fac1-99e6-46e3-90c9-776cf5a03171" + "fadbf6de-3e93-4bbd-b899-ec3b18e2140b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -35948,34 +37266,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11467" + "11419" ], "x-ms-request-id": [ - "5b8cc00c-89d5-4337-b097-9fb2d908c0c2" + "19869966-e4b7-499e-a3dd-990186bb7271" ], "x-ms-correlation-request-id": [ - "5b8cc00c-89d5-4337-b097-9fb2d908c0c2" + "19869966-e4b7-499e-a3dd-990186bb7271" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:5b8cc00c-89d5-4337-b097-9fb2d908c0c2" + "WESTUS2:20210213T020822Z:19869966-e4b7-499e-a3dd-990186bb7271" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:22 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fadb233-cfdd-4cc9-a21d-315ccaa40c3a" + ], + "Accept-Language": [ + "en-US" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11418" + ], + "x-ms-request-id": [ + "4f12b4a1-fde2-4287-9e80-69bdb7d70719" + ], + "x-ms-correlation-request-id": [ + "4f12b4a1-fde2-4287-9e80-69bdb7d70719" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020822Z:4f12b4a1-fde2-4287-9e80-69bdb7d70719" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -35985,16 +37363,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "529a169e-4867-4559-8ca4-3a4dec824728" + "ee823803-1e71-4e3f-b81f-1cd29574eeaf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36014,34 +37392,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11466" + "11417" ], "x-ms-request-id": [ - "f085bd73-d179-49ea-9391-15e420cd217a" + "b4110da3-caf1-4272-91a1-400ac1f0d439" ], "x-ms-correlation-request-id": [ - "f085bd73-d179-49ea-9391-15e420cd217a" + "b4110da3-caf1-4272-91a1-400ac1f0d439" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204235Z:f085bd73-d179-49ea-9391-15e420cd217a" + "WESTUS2:20210213T020822Z:b4110da3-caf1-4272-91a1-400ac1f0d439" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:22 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fdbc33b-bca6-43f7-84c0-2e75d90ac253" + ], + "Accept-Language": [ + "en-US" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11416" + ], + "x-ms-request-id": [ + "620ac231-fc6d-47fe-b84a-db6d4d371c3c" + ], + "x-ms-correlation-request-id": [ + "620ac231-fc6d-47fe-b84a-db6d4d371c3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020823Z:620ac231-fc6d-47fe-b84a-db6d4d371c3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36051,16 +37489,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "747d924c-f157-45aa-a14a-0ebecdbce373" + "3e99d5f7-9e84-4539-9141-990d4a55bede" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36080,34 +37518,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11465" + "11415" ], "x-ms-request-id": [ - "3b2a1e68-b49e-4d82-aebc-e8eb98bfe725" + "6249cb20-c009-450a-b50e-b83d59ef4832" ], "x-ms-correlation-request-id": [ - "3b2a1e68-b49e-4d82-aebc-e8eb98bfe725" + "6249cb20-c009-450a-b50e-b83d59ef4832" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:3b2a1e68-b49e-4d82-aebc-e8eb98bfe725" + "WESTUS2:20210213T020823Z:6249cb20-c009-450a-b50e-b83d59ef4832" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:22 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5781fe6-01b7-4527-82c9-20038b6addca" + ], + "Accept-Language": [ + "en-US" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11414" + ], + "x-ms-request-id": [ + "42c53c14-3dcb-4390-93de-2f3a7395e408" + ], + "x-ms-correlation-request-id": [ + "42c53c14-3dcb-4390-93de-2f3a7395e408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020823Z:42c53c14-3dcb-4390-93de-2f3a7395e408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36117,16 +37615,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cca9feb2-dcef-4d07-bbad-0e4ad1ffbe40" + "d4945d30-d039-4913-9cd7-8b858ff934cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36146,34 +37644,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11464" + "11413" ], "x-ms-request-id": [ - "2339866d-1abf-4076-9c94-990bb107869c" + "f688affe-2e18-4eb9-a605-d8bce87f29e4" ], "x-ms-correlation-request-id": [ - "2339866d-1abf-4076-9c94-990bb107869c" + "f688affe-2e18-4eb9-a605-d8bce87f29e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:2339866d-1abf-4076-9c94-990bb107869c" + "WESTUS2:20210213T020823Z:f688affe-2e18-4eb9-a605-d8bce87f29e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36183,16 +37678,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd33598-ae4e-416f-8ad6-e9cfb3f1d482" + "e24aa0cc-0c93-47d3-8276-95c155c56351" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36212,34 +37707,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11463" + "11412" ], "x-ms-request-id": [ - "fcfefd64-829f-42e4-aec3-f069a26e171c" + "7a85c126-f747-4c83-a200-5ca753f2c7c1" ], "x-ms-correlation-request-id": [ - "fcfefd64-829f-42e4-aec3-f069a26e171c" + "7a85c126-f747-4c83-a200-5ca753f2c7c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:fcfefd64-829f-42e4-aec3-f069a26e171c" + "WESTUS2:20210213T020823Z:7a85c126-f747-4c83-a200-5ca753f2c7c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36249,16 +37741,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4dfca5-f36a-4608-b688-7f829ed8e9ca" + "2ef5937d-d6e9-4d41-a1c5-a17515c10b7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36278,34 +37770,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11462" + "11411" ], "x-ms-request-id": [ - "b2b79c48-69cd-4d5e-afd3-bc296d4fa864" + "07aa8a1c-7c93-4fdb-a5cd-facf3bf33649" ], "x-ms-correlation-request-id": [ - "b2b79c48-69cd-4d5e-afd3-bc296d4fa864" + "07aa8a1c-7c93-4fdb-a5cd-facf3bf33649" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:b2b79c48-69cd-4d5e-afd3-bc296d4fa864" + "WESTUS2:20210213T020823Z:07aa8a1c-7c93-4fdb-a5cd-facf3bf33649" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:35 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36315,16 +37804,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c948798-28f6-4119-8350-02a16a751e7f" + "6d6c05c4-52e4-4b37-9ea4-044d86c55b28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36344,34 +37833,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11461" + "11410" ], "x-ms-request-id": [ - "a247a93a-7652-428e-9572-7ba10e1bef7c" + "559678da-88ad-4cf9-a7b0-c9bf9e327203" ], "x-ms-correlation-request-id": [ - "a247a93a-7652-428e-9572-7ba10e1bef7c" + "559678da-88ad-4cf9-a7b0-c9bf9e327203" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:a247a93a-7652-428e-9572-7ba10e1bef7c" + "WESTUS2:20210213T020824Z:559678da-88ad-4cf9-a7b0-c9bf9e327203" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36381,16 +37867,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fddc8a65-9843-4850-8c64-e26b5bb7a771" + "bcf45ca5-7494-4cf7-a2a7-63f89b4d87de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36410,34 +37896,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11460" + "11409" ], "x-ms-request-id": [ - "92545282-816c-4d4a-8eb5-464fd56bbf77" + "1d9a307c-3df4-4efa-baa8-f7ef38c8b28f" ], "x-ms-correlation-request-id": [ - "92545282-816c-4d4a-8eb5-464fd56bbf77" + "1d9a307c-3df4-4efa-baa8-f7ef38c8b28f" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:92545282-816c-4d4a-8eb5-464fd56bbf77" + "WESTUS2:20210213T020824Z:1d9a307c-3df4-4efa-baa8-f7ef38c8b28f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36447,16 +37930,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8208b50d-675a-4cf2-8365-12dfcaf6e0c5" + "ad9cbfa1-1f2a-4ef8-aac1-3f287af2c59d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36476,34 +37959,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11459" + "11408" ], "x-ms-request-id": [ - "8a7780e8-6a32-4fe0-97f1-0908904e3fe9" + "50e63523-36a8-4861-a203-4549d27313f1" ], "x-ms-correlation-request-id": [ - "8a7780e8-6a32-4fe0-97f1-0908904e3fe9" + "50e63523-36a8-4861-a203-4549d27313f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204236Z:8a7780e8-6a32-4fe0-97f1-0908904e3fe9" + "WESTUS2:20210213T020824Z:50e63523-36a8-4861-a203-4549d27313f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:23 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36513,16 +37993,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18ee4700-7c11-4bc5-a8be-0914304b62ac" + "83eb362a-5735-4ee1-8f50-d6b3b1a4c505" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36542,34 +38022,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11458" + "11407" ], "x-ms-request-id": [ - "55a03a3b-9d64-4eff-808e-13d5d06e4f56" + "ee0a697f-6c52-4376-b643-7d0a5953ca14" ], "x-ms-correlation-request-id": [ - "55a03a3b-9d64-4eff-808e-13d5d06e4f56" + "ee0a697f-6c52-4376-b643-7d0a5953ca14" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:55a03a3b-9d64-4eff-808e-13d5d06e4f56" + "WESTUS2:20210213T020824Z:ee0a697f-6c52-4376-b643-7d0a5953ca14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:24 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f849d666-6c68-4f00-897d-20e8b0cdf6a5" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11406" + ], + "x-ms-request-id": [ + "99b3d513-d695-4d5e-a4a6-a362778012a7" + ], + "x-ms-correlation-request-id": [ + "99b3d513-d695-4d5e-a4a6-a362778012a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020824Z:99b3d513-d695-4d5e-a4a6-a362778012a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36579,16 +38119,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f22fa9-73e3-4135-be9c-98c90bcea051" + "8877abab-e1e3-4001-9354-71b78c93cb11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36608,34 +38148,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11457" + "11405" ], "x-ms-request-id": [ - "6d93011b-f1b7-4eca-a290-317c6f2dc8d4" + "0c2b2285-52f9-46c7-8a96-ed5d94b91c9d" ], "x-ms-correlation-request-id": [ - "6d93011b-f1b7-4eca-a290-317c6f2dc8d4" + "0c2b2285-52f9-46c7-8a96-ed5d94b91c9d" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:6d93011b-f1b7-4eca-a290-317c6f2dc8d4" + "WESTUS2:20210213T020824Z:0c2b2285-52f9-46c7-8a96-ed5d94b91c9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:24 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "297b4cdd-5b16-49fe-a9b5-897358597325" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11404" + ], + "x-ms-request-id": [ + "dbfddda9-517e-4172-b055-011972721b2f" + ], + "x-ms-correlation-request-id": [ + "dbfddda9-517e-4172-b055-011972721b2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020825Z:dbfddda9-517e-4172-b055-011972721b2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36645,16 +38245,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da59b2c-fa9f-4944-9c22-75910c19a8af" + "170aec80-a460-41fa-9e61-92fd0087caf9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36674,34 +38274,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11456" + "11403" ], "x-ms-request-id": [ - "7a2102f1-956d-4936-8236-a6fc379e5dda" + "9d6c8058-0687-4db9-905a-6635be7a3fe1" ], "x-ms-correlation-request-id": [ - "7a2102f1-956d-4936-8236-a6fc379e5dda" + "9d6c8058-0687-4db9-905a-6635be7a3fe1" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:7a2102f1-956d-4936-8236-a6fc379e5dda" + "WESTUS2:20210213T020825Z:9d6c8058-0687-4db9-905a-6635be7a3fe1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:24 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "983a2ec5-a6cd-4eb6-a38c-c533d24732f3" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11402" + ], + "x-ms-request-id": [ + "faf1fdc1-289b-4871-ba80-26d743fc28f5" + ], + "x-ms-correlation-request-id": [ + "faf1fdc1-289b-4871-ba80-26d743fc28f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020825Z:faf1fdc1-289b-4871-ba80-26d743fc28f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36711,16 +38371,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff44e284-21e3-40ab-b67c-eea2101596eb" + "194f3cc6-3e7a-47d0-bbb3-b61c03a72f84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36740,34 +38400,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11455" + "11401" ], "x-ms-request-id": [ - "fbc61f72-19b7-448f-b4c2-ee2f719a11f3" + "2ecfd4dd-51a1-45cb-a405-978731669adb" ], "x-ms-correlation-request-id": [ - "fbc61f72-19b7-448f-b4c2-ee2f719a11f3" + "2ecfd4dd-51a1-45cb-a405-978731669adb" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:fbc61f72-19b7-448f-b4c2-ee2f719a11f3" + "WESTUS2:20210213T020825Z:2ecfd4dd-51a1-45cb-a405-978731669adb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:36 GMT" + "Sat, 13 Feb 2021 02:08:25 GMT" ], "Content-Length": [ - "603" + "602" ], "Content-Type": [ "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30b27497-5ddc-4f12-bf3a-b02770d86b57" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11400" + ], + "x-ms-request-id": [ + "a4695810-41ae-48aa-b26e-aca16fb51e74" + ], + "x-ms-correlation-request-id": [ + "a4695810-41ae-48aa-b26e-aca16fb51e74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020825Z:a4695810-41ae-48aa-b26e-aca16fb51e74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -36777,16 +38497,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "021c0c93-a0ef-4cf3-b34f-9aea39d85bd9" + "c51f7a8d-ed99-41eb-89ed-c360c0099736" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36806,31 +38526,137368 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11454" + "11399" + ], + "x-ms-request-id": [ + "ddbcea27-a72c-4253-82e5-f47291e35fd7" + ], + "x-ms-correlation-request-id": [ + "ddbcea27-a72c-4253-82e5-f47291e35fd7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020825Z:ddbcea27-a72c-4253-82e5-f47291e35fd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "178abead-82de-4095-9099-5770a1f3871b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11398" + ], + "x-ms-request-id": [ + "c74b711a-683b-4312-91c9-a429e0304159" + ], + "x-ms-correlation-request-id": [ + "c74b711a-683b-4312-91c9-a429e0304159" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:c74b711a-683b-4312-91c9-a429e0304159" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e79cdbce-0005-4e8a-b3bb-0cb04f750e17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11397" + ], + "x-ms-request-id": [ + "cc1ff720-e95d-43f8-9110-c36482bfc989" + ], + "x-ms-correlation-request-id": [ + "cc1ff720-e95d-43f8-9110-c36482bfc989" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:cc1ff720-e95d-43f8-9110-c36482bfc989" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b54c3cca-7c4a-4a3c-811a-4fd46c783475" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11396" + ], + "x-ms-request-id": [ + "46b98cdd-d3ee-4481-9df2-bba4c6f01d89" + ], + "x-ms-correlation-request-id": [ + "46b98cdd-d3ee-4481-9df2-bba4c6f01d89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:46b98cdd-d3ee-4481-9df2-bba4c6f01d89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d85c26e9-dead-44ee-9bd3-6ebede8c4056" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11395" + ], + "x-ms-request-id": [ + "7c70fb02-4fa2-40d6-a013-bfa47afa6ae2" + ], + "x-ms-correlation-request-id": [ + "7c70fb02-4fa2-40d6-a013-bfa47afa6ae2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:7c70fb02-4fa2-40d6-a013-bfa47afa6ae2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b13920ff-2c38-4b99-83ee-18e357c84529" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11394" + ], + "x-ms-request-id": [ + "e878f3cf-fee0-44fb-93ec-03dc1d67ee15" + ], + "x-ms-correlation-request-id": [ + "e878f3cf-fee0-44fb-93ec-03dc1d67ee15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:e878f3cf-fee0-44fb-93ec-03dc1d67ee15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48ccc0d5-6880-402f-9fcc-e5d3ca5aba4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11393" + ], + "x-ms-request-id": [ + "40de4d45-3b83-4aad-b7cf-03cd4b2dfdc1" + ], + "x-ms-correlation-request-id": [ + "40de4d45-3b83-4aad-b7cf-03cd4b2dfdc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020826Z:40de4d45-3b83-4aad-b7cf-03cd4b2dfdc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d904d2f3-5128-4a2f-976e-f572dd3b0739" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11392" + ], + "x-ms-request-id": [ + "6708b001-6171-48bb-81df-a04730e26ed0" + ], + "x-ms-correlation-request-id": [ + "6708b001-6171-48bb-81df-a04730e26ed0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:6708b001-6171-48bb-81df-a04730e26ed0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "872baa3f-2ffb-4390-89e5-a91e16f2b8bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11391" + ], + "x-ms-request-id": [ + "05019578-47ee-4dee-b083-b8d682a976c1" + ], + "x-ms-correlation-request-id": [ + "05019578-47ee-4dee-b083-b8d682a976c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:05019578-47ee-4dee-b083-b8d682a976c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b29eb2ba-fcae-46a8-b484-a89e214b360a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11390" + ], + "x-ms-request-id": [ + "84e511ed-30b2-4816-a431-a5221a9af878" + ], + "x-ms-correlation-request-id": [ + "84e511ed-30b2-4816-a431-a5221a9af878" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:84e511ed-30b2-4816-a431-a5221a9af878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de186775-1a37-4623-8c20-b5b9248a47fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11389" + ], + "x-ms-request-id": [ + "9e53a117-1221-4f64-9353-e766050344ca" + ], + "x-ms-correlation-request-id": [ + "9e53a117-1221-4f64-9353-e766050344ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:9e53a117-1221-4f64-9353-e766050344ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a0ec4e2-9dad-44af-ba45-dba03529392c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11388" + ], + "x-ms-request-id": [ + "2b661a72-b347-4e31-8910-6c2509876fe7" + ], + "x-ms-correlation-request-id": [ + "2b661a72-b347-4e31-8910-6c2509876fe7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:2b661a72-b347-4e31-8910-6c2509876fe7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b129b62b-cf8b-46f7-b5e2-53939b8f62c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11387" + ], + "x-ms-request-id": [ + "57bfef92-e726-4bbe-9dc2-201edf75f4c1" + ], + "x-ms-correlation-request-id": [ + "57bfef92-e726-4bbe-9dc2-201edf75f4c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020827Z:57bfef92-e726-4bbe-9dc2-201edf75f4c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4021739-08c4-4705-93ba-3b3e74355145" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11386" + ], + "x-ms-request-id": [ + "5513ef27-d3b5-4844-a6c6-d8d03f17c1e8" + ], + "x-ms-correlation-request-id": [ + "5513ef27-d3b5-4844-a6c6-d8d03f17c1e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:5513ef27-d3b5-4844-a6c6-d8d03f17c1e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de076c6e-5d9a-412d-a792-766a9e827b09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11385" + ], + "x-ms-request-id": [ + "63690c25-6410-4105-8077-7198b258ca83" + ], + "x-ms-correlation-request-id": [ + "63690c25-6410-4105-8077-7198b258ca83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:63690c25-6410-4105-8077-7198b258ca83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f38d4c26-cac8-48e3-a297-7fdb2c52df73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11384" + ], + "x-ms-request-id": [ + "b535f6e0-a9c6-4013-95c5-e34e44fbd89f" + ], + "x-ms-correlation-request-id": [ + "b535f6e0-a9c6-4013-95c5-e34e44fbd89f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:b535f6e0-a9c6-4013-95c5-e34e44fbd89f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74586332-f179-4109-9d61-dd88143d0065" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11383" + ], + "x-ms-request-id": [ + "09e23ab4-9ec2-4ada-8238-ec041d1b66b5" + ], + "x-ms-correlation-request-id": [ + "09e23ab4-9ec2-4ada-8238-ec041d1b66b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:09e23ab4-9ec2-4ada-8238-ec041d1b66b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "390d9f97-ee12-4259-944e-b0a6d03786d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11382" + ], + "x-ms-request-id": [ + "ee3c5f37-7e32-4dc8-b7ab-bb51e2f1bee7" + ], + "x-ms-correlation-request-id": [ + "ee3c5f37-7e32-4dc8-b7ab-bb51e2f1bee7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:ee3c5f37-7e32-4dc8-b7ab-bb51e2f1bee7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aef786e9-6490-4a83-a5ab-83a86bbfc830" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11381" + ], + "x-ms-request-id": [ + "491df211-59b1-47d3-81ba-e2f3df5524bc" + ], + "x-ms-correlation-request-id": [ + "491df211-59b1-47d3-81ba-e2f3df5524bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020828Z:491df211-59b1-47d3-81ba-e2f3df5524bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daca5c5c-94ae-443e-8b69-d35cd3cd3852" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11380" + ], + "x-ms-request-id": [ + "169a01be-63e8-45e8-80cd-b25061270913" + ], + "x-ms-correlation-request-id": [ + "169a01be-63e8-45e8-80cd-b25061270913" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:169a01be-63e8-45e8-80cd-b25061270913" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7423a4b3-6c05-4587-8fba-7d7ee51eeb39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11379" + ], + "x-ms-request-id": [ + "1c1bacdf-ce25-4e3f-992a-3a6434f4c1fe" + ], + "x-ms-correlation-request-id": [ + "1c1bacdf-ce25-4e3f-992a-3a6434f4c1fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:1c1bacdf-ce25-4e3f-992a-3a6434f4c1fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f03b113-ca35-4432-b0c8-1b55fd8af6a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11378" + ], + "x-ms-request-id": [ + "089eb909-285d-4f20-8add-33b0fe64f6a6" + ], + "x-ms-correlation-request-id": [ + "089eb909-285d-4f20-8add-33b0fe64f6a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:089eb909-285d-4f20-8add-33b0fe64f6a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b623fa3-7e66-4468-8534-3b84e6e475c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11377" + ], + "x-ms-request-id": [ + "1589a72f-6ef5-40ff-a8e7-c3422491ba2c" + ], + "x-ms-correlation-request-id": [ + "1589a72f-6ef5-40ff-a8e7-c3422491ba2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:1589a72f-6ef5-40ff-a8e7-c3422491ba2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3d1993c-7572-4aff-b384-2044b7a7ffcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11376" + ], + "x-ms-request-id": [ + "1d0a67df-a378-4894-b529-88228b0abed5" + ], + "x-ms-correlation-request-id": [ + "1d0a67df-a378-4894-b529-88228b0abed5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:1d0a67df-a378-4894-b529-88228b0abed5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "063032e2-7168-49a3-9d8a-5358c9bb1536" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11375" + ], + "x-ms-request-id": [ + "f4d52623-927a-49c6-903c-0ac60eaf1917" + ], + "x-ms-correlation-request-id": [ + "f4d52623-927a-49c6-903c-0ac60eaf1917" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020829Z:f4d52623-927a-49c6-903c-0ac60eaf1917" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3674a922-f251-4dc8-ad93-beea53a97ec5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11374" + ], + "x-ms-request-id": [ + "0fe3b2b7-8e0f-4d5d-a53d-1d49e647004a" + ], + "x-ms-correlation-request-id": [ + "0fe3b2b7-8e0f-4d5d-a53d-1d49e647004a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:0fe3b2b7-8e0f-4d5d-a53d-1d49e647004a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc736925-0608-46df-86b6-7f5fd32f67bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11373" + ], + "x-ms-request-id": [ + "144cde64-0c23-4f92-b1b0-00463ba58978" + ], + "x-ms-correlation-request-id": [ + "144cde64-0c23-4f92-b1b0-00463ba58978" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:144cde64-0c23-4f92-b1b0-00463ba58978" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6094e493-7b62-4faf-a9db-d0327b2bf7d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11372" + ], + "x-ms-request-id": [ + "2402c918-e202-4a63-be3d-287388dca68e" + ], + "x-ms-correlation-request-id": [ + "2402c918-e202-4a63-be3d-287388dca68e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:2402c918-e202-4a63-be3d-287388dca68e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62d5fa03-5865-4196-a853-e1e92463c29b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11371" + ], + "x-ms-request-id": [ + "307bccc1-1eb7-43ab-bb1a-f8c0ca06edd4" + ], + "x-ms-correlation-request-id": [ + "307bccc1-1eb7-43ab-bb1a-f8c0ca06edd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:307bccc1-1eb7-43ab-bb1a-f8c0ca06edd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "851d0790-52c6-4c01-b128-b1bd404315df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11370" + ], + "x-ms-request-id": [ + "a2e980ad-8350-488e-8b65-047ad138dcf8" + ], + "x-ms-correlation-request-id": [ + "a2e980ad-8350-488e-8b65-047ad138dcf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:a2e980ad-8350-488e-8b65-047ad138dcf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf6fb16e-4ecb-42ed-84e0-5436a4708a4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11369" + ], + "x-ms-request-id": [ + "7a9f77e6-c822-48d6-bc1f-37df028924e7" + ], + "x-ms-correlation-request-id": [ + "7a9f77e6-c822-48d6-bc1f-37df028924e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020830Z:7a9f77e6-c822-48d6-bc1f-37df028924e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1db8fc39-dcde-42f3-8562-caa34472d4bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11368" + ], + "x-ms-request-id": [ + "110fb6d3-10f1-4eae-b1b7-bf1c9b27978c" + ], + "x-ms-correlation-request-id": [ + "110fb6d3-10f1-4eae-b1b7-bf1c9b27978c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:110fb6d3-10f1-4eae-b1b7-bf1c9b27978c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "141b9366-5661-4c2f-9ced-3018b6f4ead5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11367" + ], + "x-ms-request-id": [ + "d6e2c247-f902-4e52-bb57-5c20194582a7" + ], + "x-ms-correlation-request-id": [ + "d6e2c247-f902-4e52-bb57-5c20194582a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:d6e2c247-f902-4e52-bb57-5c20194582a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb1969e1-a3e5-42da-9e88-02a6138596f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11366" + ], + "x-ms-request-id": [ + "e12b4c58-7625-458a-bd7f-a3d2dec40fdc" + ], + "x-ms-correlation-request-id": [ + "e12b4c58-7625-458a-bd7f-a3d2dec40fdc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:e12b4c58-7625-458a-bd7f-a3d2dec40fdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a4a959a-2028-492c-beab-b92628ae306e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11365" + ], + "x-ms-request-id": [ + "ad37eb82-8b3d-4180-9069-19db5a2510d9" + ], + "x-ms-correlation-request-id": [ + "ad37eb82-8b3d-4180-9069-19db5a2510d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:ad37eb82-8b3d-4180-9069-19db5a2510d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23145f6c-fecd-453e-b98c-7a9d57a5ac1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11364" + ], + "x-ms-request-id": [ + "c500c460-cad6-4f5f-971b-bdc298a31c12" + ], + "x-ms-correlation-request-id": [ + "c500c460-cad6-4f5f-971b-bdc298a31c12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:c500c460-cad6-4f5f-971b-bdc298a31c12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cb423c4-2710-492c-a810-c36707476571" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11363" + ], + "x-ms-request-id": [ + "877f4d23-d3c5-49cc-ae0d-aba0877db231" + ], + "x-ms-correlation-request-id": [ + "877f4d23-d3c5-49cc-ae0d-aba0877db231" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020831Z:877f4d23-d3c5-49cc-ae0d-aba0877db231" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a94ca5c7-7d6d-408e-af70-6f75ca899866" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11362" + ], + "x-ms-request-id": [ + "39f7ee0e-954c-45ba-b3d5-e1014bfdcad0" + ], + "x-ms-correlation-request-id": [ + "39f7ee0e-954c-45ba-b3d5-e1014bfdcad0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:39f7ee0e-954c-45ba-b3d5-e1014bfdcad0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9f56eb1-98ab-4105-9cf1-bb09602940ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11361" + ], + "x-ms-request-id": [ + "20b991d8-44d3-4dbe-bb04-a4e040a9bf54" + ], + "x-ms-correlation-request-id": [ + "20b991d8-44d3-4dbe-bb04-a4e040a9bf54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:20b991d8-44d3-4dbe-bb04-a4e040a9bf54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39ea9d9e-c5b4-40d8-9cdb-05eceafca754" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11360" + ], + "x-ms-request-id": [ + "ad34975c-6b39-465c-bd54-7102d97171a5" + ], + "x-ms-correlation-request-id": [ + "ad34975c-6b39-465c-bd54-7102d97171a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:ad34975c-6b39-465c-bd54-7102d97171a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7bbaa91-554b-4942-a1c9-91e025ab042b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11359" + ], + "x-ms-request-id": [ + "3c1774d4-aae1-40e4-b000-4d6a6bd35ed4" + ], + "x-ms-correlation-request-id": [ + "3c1774d4-aae1-40e4-b000-4d6a6bd35ed4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:3c1774d4-aae1-40e4-b000-4d6a6bd35ed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0463b54-f694-440a-9247-c22e74d66288" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11358" + ], + "x-ms-request-id": [ + "ed81de03-9cc7-4027-94a9-36d9a99d4466" + ], + "x-ms-correlation-request-id": [ + "ed81de03-9cc7-4027-94a9-36d9a99d4466" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:ed81de03-9cc7-4027-94a9-36d9a99d4466" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49614b12-54d2-43a9-9fb4-40f3d59bea14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11357" + ], + "x-ms-request-id": [ + "f9b4e7d5-c671-4880-9b1f-41143d1daa1c" + ], + "x-ms-correlation-request-id": [ + "f9b4e7d5-c671-4880-9b1f-41143d1daa1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020832Z:f9b4e7d5-c671-4880-9b1f-41143d1daa1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4a61285-3ac5-4879-ae7a-7730fab3ac3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11356" + ], + "x-ms-request-id": [ + "0ccb7db4-decb-433b-94e9-5343cddb0d5d" + ], + "x-ms-correlation-request-id": [ + "0ccb7db4-decb-433b-94e9-5343cddb0d5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:0ccb7db4-decb-433b-94e9-5343cddb0d5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "627a8783-a648-4dbb-b744-064556945137" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11355" + ], + "x-ms-request-id": [ + "fbde58a3-43c1-4b8c-b889-f87cd75a8a36" + ], + "x-ms-correlation-request-id": [ + "fbde58a3-43c1-4b8c-b889-f87cd75a8a36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:fbde58a3-43c1-4b8c-b889-f87cd75a8a36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf97487-416d-4b32-b217-26e78b71d657" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11354" + ], + "x-ms-request-id": [ + "baca0d11-0aae-4ddf-b340-12c0f7b93571" + ], + "x-ms-correlation-request-id": [ + "baca0d11-0aae-4ddf-b340-12c0f7b93571" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:baca0d11-0aae-4ddf-b340-12c0f7b93571" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca7a64ee-d5b9-4e04-b3a2-439daf28baef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11353" + ], + "x-ms-request-id": [ + "0ee1643e-0223-485e-a479-5c453abe1af9" + ], + "x-ms-correlation-request-id": [ + "0ee1643e-0223-485e-a479-5c453abe1af9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:0ee1643e-0223-485e-a479-5c453abe1af9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57433843-df88-477f-b1a8-ec354d2a32f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11352" + ], + "x-ms-request-id": [ + "cae671e3-f48c-47dc-af73-e67cfafe79de" + ], + "x-ms-correlation-request-id": [ + "cae671e3-f48c-47dc-af73-e67cfafe79de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:cae671e3-f48c-47dc-af73-e67cfafe79de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4781a7dc-d349-43ea-b38f-91c9e88be151" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11351" + ], + "x-ms-request-id": [ + "4944b9a1-19d8-446e-a54b-17fbb142c141" + ], + "x-ms-correlation-request-id": [ + "4944b9a1-19d8-446e-a54b-17fbb142c141" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:4944b9a1-19d8-446e-a54b-17fbb142c141" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb8dba5c-79b7-421a-b490-c55054be4feb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11350" + ], + "x-ms-request-id": [ + "0f843e7a-2802-4af5-8aed-b56b7da87403" + ], + "x-ms-correlation-request-id": [ + "0f843e7a-2802-4af5-8aed-b56b7da87403" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020833Z:0f843e7a-2802-4af5-8aed-b56b7da87403" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2620e3b-4c57-419f-9b69-7fedc70041b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11349" + ], + "x-ms-request-id": [ + "a39cf5fd-0690-4cdd-8710-6460c3ba7695" + ], + "x-ms-correlation-request-id": [ + "a39cf5fd-0690-4cdd-8710-6460c3ba7695" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:a39cf5fd-0690-4cdd-8710-6460c3ba7695" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3699d0eb-4488-45be-b1a1-c711410094f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11348" + ], + "x-ms-request-id": [ + "81bad3ae-c9ba-4335-a5ad-7eee9a858c34" + ], + "x-ms-correlation-request-id": [ + "81bad3ae-c9ba-4335-a5ad-7eee9a858c34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:81bad3ae-c9ba-4335-a5ad-7eee9a858c34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d89d2c0-5b2d-4a3f-af67-b534325cbfdf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11347" + ], + "x-ms-request-id": [ + "ce53be8a-b4cd-42bc-bc93-f123fb1905ef" + ], + "x-ms-correlation-request-id": [ + "ce53be8a-b4cd-42bc-bc93-f123fb1905ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:ce53be8a-b4cd-42bc-bc93-f123fb1905ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0521b27-2ec1-4631-baa8-9ad0f067aa58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11346" + ], + "x-ms-request-id": [ + "863148ca-49c3-404b-8700-5ee04b3fa128" + ], + "x-ms-correlation-request-id": [ + "863148ca-49c3-404b-8700-5ee04b3fa128" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:863148ca-49c3-404b-8700-5ee04b3fa128" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33079102-d39e-4a74-9c60-6b90048b299c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11345" + ], + "x-ms-request-id": [ + "291af9b7-fcdd-4ca4-988e-3378b92062ce" + ], + "x-ms-correlation-request-id": [ + "291af9b7-fcdd-4ca4-988e-3378b92062ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:291af9b7-fcdd-4ca4-988e-3378b92062ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89715795-f790-4024-a8a7-db404f0354d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11344" + ], + "x-ms-request-id": [ + "ea8f7ead-b7db-4ce0-a3f9-ce00b82f96d4" + ], + "x-ms-correlation-request-id": [ + "ea8f7ead-b7db-4ce0-a3f9-ce00b82f96d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020834Z:ea8f7ead-b7db-4ce0-a3f9-ce00b82f96d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bb9e5a8-b2d5-411a-8c89-5e9778a2fc79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11343" + ], + "x-ms-request-id": [ + "e075e424-7b7a-4a71-bc10-ed0ca836857f" + ], + "x-ms-correlation-request-id": [ + "e075e424-7b7a-4a71-bc10-ed0ca836857f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:e075e424-7b7a-4a71-bc10-ed0ca836857f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1923ee69-195e-4d1e-9d37-24f0836791c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11342" + ], + "x-ms-request-id": [ + "daffc3fa-0153-47fd-b6fd-52767c0afafd" + ], + "x-ms-correlation-request-id": [ + "daffc3fa-0153-47fd-b6fd-52767c0afafd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:daffc3fa-0153-47fd-b6fd-52767c0afafd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "362da0d3-16b2-4ad2-a2b9-e50fe561eaf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11341" + ], + "x-ms-request-id": [ + "d38b436f-174e-40a8-8dec-de19f8850c22" + ], + "x-ms-correlation-request-id": [ + "d38b436f-174e-40a8-8dec-de19f8850c22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:d38b436f-174e-40a8-8dec-de19f8850c22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b00e1082-6e51-453b-8fe9-d446aba21fb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11340" + ], + "x-ms-request-id": [ + "881a3dd5-bd9a-42e0-b04f-e18517836161" + ], + "x-ms-correlation-request-id": [ + "881a3dd5-bd9a-42e0-b04f-e18517836161" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:881a3dd5-bd9a-42e0-b04f-e18517836161" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eb41acf-ec35-4c8a-8e99-490c84b9570f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11339" + ], + "x-ms-request-id": [ + "2fceda3a-bac6-4966-8025-c3e375882aad" + ], + "x-ms-correlation-request-id": [ + "2fceda3a-bac6-4966-8025-c3e375882aad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:2fceda3a-bac6-4966-8025-c3e375882aad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2774f049-04c1-43de-8b80-02ebc1d4d469" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11338" + ], + "x-ms-request-id": [ + "8b6b69e6-a193-4cf1-8cd7-ac5b25dc22da" + ], + "x-ms-correlation-request-id": [ + "8b6b69e6-a193-4cf1-8cd7-ac5b25dc22da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020835Z:8b6b69e6-a193-4cf1-8cd7-ac5b25dc22da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c9a77b4-f225-4fe1-bdcd-70371b982ad6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11337" + ], + "x-ms-request-id": [ + "f93ccd7b-f5d0-4082-a7cd-b828b53194b0" + ], + "x-ms-correlation-request-id": [ + "f93ccd7b-f5d0-4082-a7cd-b828b53194b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:f93ccd7b-f5d0-4082-a7cd-b828b53194b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93fb94aa-56d9-4b47-bdb8-f0d40444e860" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11336" + ], + "x-ms-request-id": [ + "c93badb7-ba59-45b8-9e78-283ae8d35675" + ], + "x-ms-correlation-request-id": [ + "c93badb7-ba59-45b8-9e78-283ae8d35675" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:c93badb7-ba59-45b8-9e78-283ae8d35675" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec66360-7115-4093-8825-147b92158bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11335" + ], + "x-ms-request-id": [ + "6cf07151-a98f-435b-9e9d-a6a673e73728" + ], + "x-ms-correlation-request-id": [ + "6cf07151-a98f-435b-9e9d-a6a673e73728" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:6cf07151-a98f-435b-9e9d-a6a673e73728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d53fccd-35f8-42e6-8460-cc502d211267" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11334" + ], + "x-ms-request-id": [ + "1b991094-6bbe-4c14-a15e-95c6158de690" + ], + "x-ms-correlation-request-id": [ + "1b991094-6bbe-4c14-a15e-95c6158de690" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:1b991094-6bbe-4c14-a15e-95c6158de690" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "600296b7-d186-42f1-a048-3375209bcd94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11333" + ], + "x-ms-request-id": [ + "d4e2255e-8c94-455d-b3d5-97814062c9d2" + ], + "x-ms-correlation-request-id": [ + "d4e2255e-8c94-455d-b3d5-97814062c9d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:d4e2255e-8c94-455d-b3d5-97814062c9d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfbdc764-a228-4786-9d5f-79457cb3803c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11332" + ], + "x-ms-request-id": [ + "0e9d536d-0a81-4134-8070-1e4739785ea1" + ], + "x-ms-correlation-request-id": [ + "0e9d536d-0a81-4134-8070-1e4739785ea1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020836Z:0e9d536d-0a81-4134-8070-1e4739785ea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d60d80a4-3ab3-4cdc-a3d7-efc670ffe3c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11331" + ], + "x-ms-request-id": [ + "355ccf1c-3618-4097-bede-e36e93b8aa20" + ], + "x-ms-correlation-request-id": [ + "355ccf1c-3618-4097-bede-e36e93b8aa20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:355ccf1c-3618-4097-bede-e36e93b8aa20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac3c0c85-ee95-467a-9128-d20de8367baa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11330" + ], + "x-ms-request-id": [ + "dc26e142-d627-406d-bf12-dac2d7aeb01b" + ], + "x-ms-correlation-request-id": [ + "dc26e142-d627-406d-bf12-dac2d7aeb01b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:dc26e142-d627-406d-bf12-dac2d7aeb01b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc10a517-d980-4f09-854a-3f90632dc73b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11329" + ], + "x-ms-request-id": [ + "c43bdbe3-a5ae-4d97-9ba3-2c413a5fa786" + ], + "x-ms-correlation-request-id": [ + "c43bdbe3-a5ae-4d97-9ba3-2c413a5fa786" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:c43bdbe3-a5ae-4d97-9ba3-2c413a5fa786" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "276fcdfe-6047-4c8e-9ec4-ad4c4ea9d5a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11328" + ], + "x-ms-request-id": [ + "cb97b803-b9ab-4b86-b30c-833b30125a48" + ], + "x-ms-correlation-request-id": [ + "cb97b803-b9ab-4b86-b30c-833b30125a48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:cb97b803-b9ab-4b86-b30c-833b30125a48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02b65356-f0d9-4631-a79b-ffc995a6a11e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11327" + ], + "x-ms-request-id": [ + "01e06708-448e-435a-86b0-340beb216447" + ], + "x-ms-correlation-request-id": [ + "01e06708-448e-435a-86b0-340beb216447" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:01e06708-448e-435a-86b0-340beb216447" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bc461d5-fedf-463d-a12f-61229ae5a10a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11326" + ], + "x-ms-request-id": [ + "2ccc758d-8753-46e9-b709-a24daed72b23" + ], + "x-ms-correlation-request-id": [ + "2ccc758d-8753-46e9-b709-a24daed72b23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020837Z:2ccc758d-8753-46e9-b709-a24daed72b23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "919a4cc2-ba4c-4827-bd0e-995991988f4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11325" + ], + "x-ms-request-id": [ + "2560458e-c920-4b99-b5b5-e918c635ea38" + ], + "x-ms-correlation-request-id": [ + "2560458e-c920-4b99-b5b5-e918c635ea38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:2560458e-c920-4b99-b5b5-e918c635ea38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83d48969-e276-4c4d-8a35-89ac4add74ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11324" + ], + "x-ms-request-id": [ + "5fdb20c0-0617-4386-a230-4998e759949e" + ], + "x-ms-correlation-request-id": [ + "5fdb20c0-0617-4386-a230-4998e759949e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:5fdb20c0-0617-4386-a230-4998e759949e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bb72677-0fc2-461b-a001-33ef9c8ca32e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11323" + ], + "x-ms-request-id": [ + "5f08983c-2410-43e3-bb2b-3fe0134ac22c" + ], + "x-ms-correlation-request-id": [ + "5f08983c-2410-43e3-bb2b-3fe0134ac22c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:5f08983c-2410-43e3-bb2b-3fe0134ac22c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d7b8216-948f-4151-9fa2-58e4726facd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11322" + ], + "x-ms-request-id": [ + "38069a63-56c5-4942-875f-d6d75e874795" + ], + "x-ms-correlation-request-id": [ + "38069a63-56c5-4942-875f-d6d75e874795" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:38069a63-56c5-4942-875f-d6d75e874795" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd1e3efc-7cf5-4c1c-9a05-de056df539fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11321" + ], + "x-ms-request-id": [ + "aa572ac6-9702-4a6c-8c77-90421b5334b4" + ], + "x-ms-correlation-request-id": [ + "aa572ac6-9702-4a6c-8c77-90421b5334b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:aa572ac6-9702-4a6c-8c77-90421b5334b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968c9c18-85ce-447a-ac3a-a8cc6ba5493c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11320" + ], + "x-ms-request-id": [ + "8664cc9b-fa56-4212-b4e7-23a0cb36130b" + ], + "x-ms-correlation-request-id": [ + "8664cc9b-fa56-4212-b4e7-23a0cb36130b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020838Z:8664cc9b-fa56-4212-b4e7-23a0cb36130b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9df7f5f9-3a23-413a-a9b8-20c615e08ee2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11319" + ], + "x-ms-request-id": [ + "1555aeea-9be8-4e13-a782-ac77afb70516" + ], + "x-ms-correlation-request-id": [ + "1555aeea-9be8-4e13-a782-ac77afb70516" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:1555aeea-9be8-4e13-a782-ac77afb70516" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc34c55c-74af-4374-be67-f50db4e5957e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11318" + ], + "x-ms-request-id": [ + "56eafc81-559a-450f-88f6-721656687cc8" + ], + "x-ms-correlation-request-id": [ + "56eafc81-559a-450f-88f6-721656687cc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:56eafc81-559a-450f-88f6-721656687cc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a08a056d-2a28-4e33-b74f-2795605a9a19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11317" + ], + "x-ms-request-id": [ + "4e86ec64-fc57-47f0-b2c3-6f70248b1b7c" + ], + "x-ms-correlation-request-id": [ + "4e86ec64-fc57-47f0-b2c3-6f70248b1b7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:4e86ec64-fc57-47f0-b2c3-6f70248b1b7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b220f28c-a3b1-4302-a4f7-9c1503cf1e56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11316" + ], + "x-ms-request-id": [ + "11bf59fe-ec7e-41c9-8237-2ea6f9d19624" + ], + "x-ms-correlation-request-id": [ + "11bf59fe-ec7e-41c9-8237-2ea6f9d19624" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:11bf59fe-ec7e-41c9-8237-2ea6f9d19624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4de274cc-a5bf-41a0-99fa-fb3b934f6f5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11315" + ], + "x-ms-request-id": [ + "09745581-520e-4f42-8576-d5b47e04ec09" + ], + "x-ms-correlation-request-id": [ + "09745581-520e-4f42-8576-d5b47e04ec09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:09745581-520e-4f42-8576-d5b47e04ec09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2789d013-e894-403a-9673-bb1d8d5219b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11314" + ], + "x-ms-request-id": [ + "6ee8fbb7-2a2d-43ee-b3a5-bd15d3f8599c" + ], + "x-ms-correlation-request-id": [ + "6ee8fbb7-2a2d-43ee-b3a5-bd15d3f8599c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020839Z:6ee8fbb7-2a2d-43ee-b3a5-bd15d3f8599c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2875c8af-2ef7-4742-a18f-d0c8e7be8d54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11313" + ], + "x-ms-request-id": [ + "6429b9b3-ced8-4d2a-bd68-83b7b74fee46" + ], + "x-ms-correlation-request-id": [ + "6429b9b3-ced8-4d2a-bd68-83b7b74fee46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:6429b9b3-ced8-4d2a-bd68-83b7b74fee46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "798a9a2e-0e2e-40e4-b328-006ed43a95ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11312" + ], + "x-ms-request-id": [ + "5d2d6086-aad2-4fa3-a2bf-e6fe3824aa79" + ], + "x-ms-correlation-request-id": [ + "5d2d6086-aad2-4fa3-a2bf-e6fe3824aa79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:5d2d6086-aad2-4fa3-a2bf-e6fe3824aa79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9cd4fd1-bee8-45c4-917c-9c960ede7eb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11311" + ], + "x-ms-request-id": [ + "751cf0c5-f41e-49c0-9d1c-c4d987a48dd1" + ], + "x-ms-correlation-request-id": [ + "751cf0c5-f41e-49c0-9d1c-c4d987a48dd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:751cf0c5-f41e-49c0-9d1c-c4d987a48dd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "335514a5-2b38-4945-bc84-4861a10dff51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11310" + ], + "x-ms-request-id": [ + "351dc18d-8b20-4ef7-8083-15f32c3df16b" + ], + "x-ms-correlation-request-id": [ + "351dc18d-8b20-4ef7-8083-15f32c3df16b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:351dc18d-8b20-4ef7-8083-15f32c3df16b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74383732-6234-4b9d-a53e-5d91a31271a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11309" + ], + "x-ms-request-id": [ + "8e95ca0c-07a6-4901-99d7-bf8db2cda574" + ], + "x-ms-correlation-request-id": [ + "8e95ca0c-07a6-4901-99d7-bf8db2cda574" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:8e95ca0c-07a6-4901-99d7-bf8db2cda574" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf83246e-c83c-4377-825d-45bcf5a142bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11308" + ], + "x-ms-request-id": [ + "3ae417e3-f029-49ab-88dd-529b935b9e28" + ], + "x-ms-correlation-request-id": [ + "3ae417e3-f029-49ab-88dd-529b935b9e28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020840Z:3ae417e3-f029-49ab-88dd-529b935b9e28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e74d804-3753-49a8-9263-0b1c8e063d40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11307" + ], + "x-ms-request-id": [ + "797448f7-ffea-46f6-9fa8-3b8da8e82525" + ], + "x-ms-correlation-request-id": [ + "797448f7-ffea-46f6-9fa8-3b8da8e82525" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:797448f7-ffea-46f6-9fa8-3b8da8e82525" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4387013f-9cee-4609-a817-509c2de38308" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11306" + ], + "x-ms-request-id": [ + "2c62d662-0b6f-42a4-aae5-37c59dff496d" + ], + "x-ms-correlation-request-id": [ + "2c62d662-0b6f-42a4-aae5-37c59dff496d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:2c62d662-0b6f-42a4-aae5-37c59dff496d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "299215af-521a-4876-8956-030da830513c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11305" + ], + "x-ms-request-id": [ + "ba154206-f874-4288-9d79-42fe45f64df1" + ], + "x-ms-correlation-request-id": [ + "ba154206-f874-4288-9d79-42fe45f64df1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:ba154206-f874-4288-9d79-42fe45f64df1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e698830-1b64-4cf9-a323-3f3ac4167ddd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11304" + ], + "x-ms-request-id": [ + "b9eed55d-bd62-49c2-a44c-9b9fc0580344" + ], + "x-ms-correlation-request-id": [ + "b9eed55d-bd62-49c2-a44c-9b9fc0580344" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:b9eed55d-bd62-49c2-a44c-9b9fc0580344" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c5b8773-7e19-4171-a7f5-2bbf41561d1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11303" + ], + "x-ms-request-id": [ + "36e3fcf0-080c-439e-ae8b-cdfaec7a19e6" + ], + "x-ms-correlation-request-id": [ + "36e3fcf0-080c-439e-ae8b-cdfaec7a19e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:36e3fcf0-080c-439e-ae8b-cdfaec7a19e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba4d2b83-7b50-4d13-8d65-4faac9c5764e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11302" + ], + "x-ms-request-id": [ + "286f22e3-17ce-4ac1-9bfe-dd7e18418b4b" + ], + "x-ms-correlation-request-id": [ + "286f22e3-17ce-4ac1-9bfe-dd7e18418b4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020841Z:286f22e3-17ce-4ac1-9bfe-dd7e18418b4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b0a829c-ddd5-41fb-a619-32577aaeef3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11301" + ], + "x-ms-request-id": [ + "c4f6744a-9d1c-420a-8fdb-2a73aed31fca" + ], + "x-ms-correlation-request-id": [ + "c4f6744a-9d1c-420a-8fdb-2a73aed31fca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:c4f6744a-9d1c-420a-8fdb-2a73aed31fca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db087a4e-84af-4243-9f86-0c406339de60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11300" + ], + "x-ms-request-id": [ + "4415a30e-28d6-4c9d-9511-203a5dbb52f3" + ], + "x-ms-correlation-request-id": [ + "4415a30e-28d6-4c9d-9511-203a5dbb52f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:4415a30e-28d6-4c9d-9511-203a5dbb52f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a9693bf-2d55-42aa-bd24-661298611f83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11299" + ], + "x-ms-request-id": [ + "feab039e-ff1d-4c22-9047-003f936dcf97" + ], + "x-ms-correlation-request-id": [ + "feab039e-ff1d-4c22-9047-003f936dcf97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:feab039e-ff1d-4c22-9047-003f936dcf97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b837102-8824-48a4-8e1f-4fb1d19023e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11298" + ], + "x-ms-request-id": [ + "cca65966-e920-4b30-bf1c-efa9c86b9a1f" + ], + "x-ms-correlation-request-id": [ + "cca65966-e920-4b30-bf1c-efa9c86b9a1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:cca65966-e920-4b30-bf1c-efa9c86b9a1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78302c7e-68ea-4195-85ac-0942bd0953b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11297" + ], + "x-ms-request-id": [ + "8bb3d008-d12a-4ae2-adb5-7e3efa210428" + ], + "x-ms-correlation-request-id": [ + "8bb3d008-d12a-4ae2-adb5-7e3efa210428" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:8bb3d008-d12a-4ae2-adb5-7e3efa210428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1224f392-487a-4a1b-8a27-46e089fb8e16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11296" + ], + "x-ms-request-id": [ + "fed7e96a-393d-4071-9e15-78bddff81160" + ], + "x-ms-correlation-request-id": [ + "fed7e96a-393d-4071-9e15-78bddff81160" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020842Z:fed7e96a-393d-4071-9e15-78bddff81160" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aca29b77-a2f2-4f9c-b6b9-65ad5b63a255" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11295" + ], + "x-ms-request-id": [ + "5fad46a0-750e-44f9-b561-7270d8e8d576" + ], + "x-ms-correlation-request-id": [ + "5fad46a0-750e-44f9-b561-7270d8e8d576" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:5fad46a0-750e-44f9-b561-7270d8e8d576" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0dd9d07-98d4-44be-874c-93f7c9b4d16f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11294" + ], + "x-ms-request-id": [ + "7f8ff634-ccf7-43fb-b203-86066bad7432" + ], + "x-ms-correlation-request-id": [ + "7f8ff634-ccf7-43fb-b203-86066bad7432" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:7f8ff634-ccf7-43fb-b203-86066bad7432" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "432ecd75-3f16-447c-86dd-c06702624d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11293" + ], + "x-ms-request-id": [ + "b3c16a6b-e180-4441-b05f-da622442a255" + ], + "x-ms-correlation-request-id": [ + "b3c16a6b-e180-4441-b05f-da622442a255" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:b3c16a6b-e180-4441-b05f-da622442a255" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b19ec95-1940-4e64-b6f0-6f1ba1c5a227" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11292" + ], + "x-ms-request-id": [ + "84abb6cc-e61a-49a8-9859-9fb33610b78a" + ], + "x-ms-correlation-request-id": [ + "84abb6cc-e61a-49a8-9859-9fb33610b78a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:84abb6cc-e61a-49a8-9859-9fb33610b78a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7e49bca-8dd4-4c66-b14a-f09ae2ef4899" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11291" + ], + "x-ms-request-id": [ + "c1f374a1-c5d6-4f93-87e2-521b54ac07c3" + ], + "x-ms-correlation-request-id": [ + "c1f374a1-c5d6-4f93-87e2-521b54ac07c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:c1f374a1-c5d6-4f93-87e2-521b54ac07c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d59f5170-cda3-4974-ad19-7c11105862b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11290" + ], + "x-ms-request-id": [ + "7aff9c2c-2dc8-4cfb-bf95-85ecc96b659d" + ], + "x-ms-correlation-request-id": [ + "7aff9c2c-2dc8-4cfb-bf95-85ecc96b659d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020843Z:7aff9c2c-2dc8-4cfb-bf95-85ecc96b659d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a23a2fb8-dc09-4dde-9785-03b5626f8e75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11289" + ], + "x-ms-request-id": [ + "0680663d-5ce1-4e77-917f-7e143016a826" + ], + "x-ms-correlation-request-id": [ + "0680663d-5ce1-4e77-917f-7e143016a826" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:0680663d-5ce1-4e77-917f-7e143016a826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08a3e8d0-6efc-4a65-ab12-835f6a852e5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11288" + ], + "x-ms-request-id": [ + "c6f505eb-411e-43e1-a995-e6d1518c43af" + ], + "x-ms-correlation-request-id": [ + "c6f505eb-411e-43e1-a995-e6d1518c43af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:c6f505eb-411e-43e1-a995-e6d1518c43af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6549a8e2-5d2f-45be-af94-d88df3b66f3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11287" + ], + "x-ms-request-id": [ + "bdfaa5be-3c55-4233-968d-120562b22522" + ], + "x-ms-correlation-request-id": [ + "bdfaa5be-3c55-4233-968d-120562b22522" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:bdfaa5be-3c55-4233-968d-120562b22522" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4fae2cd-db3a-4d89-a7ee-87073d1e4390" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11286" + ], + "x-ms-request-id": [ + "ecd85984-8d91-4716-9d9a-4287410fca23" + ], + "x-ms-correlation-request-id": [ + "ecd85984-8d91-4716-9d9a-4287410fca23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:ecd85984-8d91-4716-9d9a-4287410fca23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "618a7238-7612-49d0-91f0-90fe63fe5f36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11285" + ], + "x-ms-request-id": [ + "751f3aa3-46fe-42bf-bc09-708051fca4e5" + ], + "x-ms-correlation-request-id": [ + "751f3aa3-46fe-42bf-bc09-708051fca4e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:751f3aa3-46fe-42bf-bc09-708051fca4e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cbc2f31-8730-4c8f-b3f8-13bb1b001b89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11284" + ], + "x-ms-request-id": [ + "3187619c-6e33-493c-95fb-b27152cf3e41" + ], + "x-ms-correlation-request-id": [ + "3187619c-6e33-493c-95fb-b27152cf3e41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020844Z:3187619c-6e33-493c-95fb-b27152cf3e41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c50168b7-a042-45cc-a602-676c8c3a44a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11283" + ], + "x-ms-request-id": [ + "73a2c390-9a00-4a24-85bb-951c47391c67" + ], + "x-ms-correlation-request-id": [ + "73a2c390-9a00-4a24-85bb-951c47391c67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:73a2c390-9a00-4a24-85bb-951c47391c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c380493c-e11d-4ff6-beab-2aad6776fa7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11282" + ], + "x-ms-request-id": [ + "8de7ce9a-bd94-4a8f-a2d1-f033f2861340" + ], + "x-ms-correlation-request-id": [ + "8de7ce9a-bd94-4a8f-a2d1-f033f2861340" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:8de7ce9a-bd94-4a8f-a2d1-f033f2861340" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751fcf80-2301-4d27-885b-222492e04b6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11281" + ], + "x-ms-request-id": [ + "84492eab-623f-4fe5-95b9-017ffedfb1f4" + ], + "x-ms-correlation-request-id": [ + "84492eab-623f-4fe5-95b9-017ffedfb1f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:84492eab-623f-4fe5-95b9-017ffedfb1f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12dcd805-c820-4f46-bf7b-ff80f186aa47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11280" + ], + "x-ms-request-id": [ + "1dc9e674-3c54-4829-9f23-d6bb3774c9ff" + ], + "x-ms-correlation-request-id": [ + "1dc9e674-3c54-4829-9f23-d6bb3774c9ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:1dc9e674-3c54-4829-9f23-d6bb3774c9ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "628fc753-1add-4af2-b63d-412a7ecc427e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11279" + ], + "x-ms-request-id": [ + "db62e036-3a84-4953-8546-18012249f02d" + ], + "x-ms-correlation-request-id": [ + "db62e036-3a84-4953-8546-18012249f02d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:db62e036-3a84-4953-8546-18012249f02d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a14d27d-d625-47a7-9d56-54bd712e7c21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11278" + ], + "x-ms-request-id": [ + "b47579cc-c411-482e-a6dc-d4d2b114a7db" + ], + "x-ms-correlation-request-id": [ + "b47579cc-c411-482e-a6dc-d4d2b114a7db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020845Z:b47579cc-c411-482e-a6dc-d4d2b114a7db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56302122-8bee-4a00-9dee-8367b7cbea6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11277" + ], + "x-ms-request-id": [ + "70694e71-95aa-4723-9212-8bcaaa5252c6" + ], + "x-ms-correlation-request-id": [ + "70694e71-95aa-4723-9212-8bcaaa5252c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:70694e71-95aa-4723-9212-8bcaaa5252c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cabdbef-943a-4a8a-93ba-f66a18fb9c6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11276" + ], + "x-ms-request-id": [ + "e857f964-f0ca-419e-ad76-606ba6bd3910" + ], + "x-ms-correlation-request-id": [ + "e857f964-f0ca-419e-ad76-606ba6bd3910" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:e857f964-f0ca-419e-ad76-606ba6bd3910" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9edf13af-280a-4899-9715-daa353daf6d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11275" + ], + "x-ms-request-id": [ + "1d66f26f-d7cd-4178-8512-24208819ee5a" + ], + "x-ms-correlation-request-id": [ + "1d66f26f-d7cd-4178-8512-24208819ee5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:1d66f26f-d7cd-4178-8512-24208819ee5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a5415f3-1431-400c-88f6-c39432747c86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11274" + ], + "x-ms-request-id": [ + "c1d83ae1-1e07-4fa6-959e-f7c7198e5535" + ], + "x-ms-correlation-request-id": [ + "c1d83ae1-1e07-4fa6-959e-f7c7198e5535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:c1d83ae1-1e07-4fa6-959e-f7c7198e5535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81cfb544-7258-4513-afe8-c4e69523e4e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11273" + ], + "x-ms-request-id": [ + "f4fccfe3-f2c7-4437-be4d-2a665e98835f" + ], + "x-ms-correlation-request-id": [ + "f4fccfe3-f2c7-4437-be4d-2a665e98835f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:f4fccfe3-f2c7-4437-be4d-2a665e98835f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5121528b-27c2-41af-87ff-33df1e5bd7b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11272" + ], + "x-ms-request-id": [ + "b2207f79-fc65-4d73-87ce-24ba340fd42a" + ], + "x-ms-correlation-request-id": [ + "b2207f79-fc65-4d73-87ce-24ba340fd42a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020846Z:b2207f79-fc65-4d73-87ce-24ba340fd42a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9180462e-bce5-4ce2-8f07-9e89046ec625" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11271" + ], + "x-ms-request-id": [ + "5cd25892-0774-4530-a74c-334ff4f7ac6f" + ], + "x-ms-correlation-request-id": [ + "5cd25892-0774-4530-a74c-334ff4f7ac6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:5cd25892-0774-4530-a74c-334ff4f7ac6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06699226-8786-47c0-92c6-bc06987b19f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11270" + ], + "x-ms-request-id": [ + "403b5ae7-2814-4b7f-b8b2-40f552d5155e" + ], + "x-ms-correlation-request-id": [ + "403b5ae7-2814-4b7f-b8b2-40f552d5155e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:403b5ae7-2814-4b7f-b8b2-40f552d5155e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9223d7b8-830b-49c7-854b-0f27dde43d94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11269" + ], + "x-ms-request-id": [ + "4622a8f7-c75f-492b-9723-81ae13a98d1b" + ], + "x-ms-correlation-request-id": [ + "4622a8f7-c75f-492b-9723-81ae13a98d1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:4622a8f7-c75f-492b-9723-81ae13a98d1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1f9479b-89ca-4ebd-8262-2317183c7cf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11268" + ], + "x-ms-request-id": [ + "5d288d72-9d54-40b0-9e77-065aaa6d70d9" + ], + "x-ms-correlation-request-id": [ + "5d288d72-9d54-40b0-9e77-065aaa6d70d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:5d288d72-9d54-40b0-9e77-065aaa6d70d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d41ac52d-780a-4b67-8c5a-51fd97a47b43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11267" + ], + "x-ms-request-id": [ + "7f0a5071-cd79-4ea8-a54f-6ce8a754fb2b" + ], + "x-ms-correlation-request-id": [ + "7f0a5071-cd79-4ea8-a54f-6ce8a754fb2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:7f0a5071-cd79-4ea8-a54f-6ce8a754fb2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dfb8f4c-49ef-4baa-b04e-6706eab0c95a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11266" + ], + "x-ms-request-id": [ + "39ec2a43-daec-4d5c-92f2-4d83c0d76058" + ], + "x-ms-correlation-request-id": [ + "39ec2a43-daec-4d5c-92f2-4d83c0d76058" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020847Z:39ec2a43-daec-4d5c-92f2-4d83c0d76058" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d375a3c-50da-4232-ae93-663a4cf26668" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11265" + ], + "x-ms-request-id": [ + "c02d8ed6-cbe1-465f-9908-d8d517b16854" + ], + "x-ms-correlation-request-id": [ + "c02d8ed6-cbe1-465f-9908-d8d517b16854" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:c02d8ed6-cbe1-465f-9908-d8d517b16854" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80f822c9-2997-4ab7-bf08-0782cad6d8d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11264" + ], + "x-ms-request-id": [ + "e23fd452-a42a-4f9f-a990-66641a6cabd4" + ], + "x-ms-correlation-request-id": [ + "e23fd452-a42a-4f9f-a990-66641a6cabd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:e23fd452-a42a-4f9f-a990-66641a6cabd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdbc4b2f-54c1-4fde-8bcb-bc90a938cadd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11263" + ], + "x-ms-request-id": [ + "3c213a34-25b8-4e63-aa80-6b64527d8288" + ], + "x-ms-correlation-request-id": [ + "3c213a34-25b8-4e63-aa80-6b64527d8288" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:3c213a34-25b8-4e63-aa80-6b64527d8288" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b24adda2-a7ac-4448-8075-dc7abb28d9fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11262" + ], + "x-ms-request-id": [ + "4872ede1-a65b-4505-8ed6-d213b8287837" + ], + "x-ms-correlation-request-id": [ + "4872ede1-a65b-4505-8ed6-d213b8287837" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:4872ede1-a65b-4505-8ed6-d213b8287837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d174356-0ba0-499a-8be0-e7bb33b2ee59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11261" + ], + "x-ms-request-id": [ + "0ae56281-f2d3-4a78-bc28-de1959cccd40" + ], + "x-ms-correlation-request-id": [ + "0ae56281-f2d3-4a78-bc28-de1959cccd40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:0ae56281-f2d3-4a78-bc28-de1959cccd40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c17b212-a1cf-43de-a577-dc28538bf151" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11260" + ], + "x-ms-request-id": [ + "6bd3cbf5-7aef-4806-9589-a9322b2899c6" + ], + "x-ms-correlation-request-id": [ + "6bd3cbf5-7aef-4806-9589-a9322b2899c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020848Z:6bd3cbf5-7aef-4806-9589-a9322b2899c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00823965-68c4-456d-9601-2a7653e1998b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11259" + ], + "x-ms-request-id": [ + "4355a4ae-b79b-42db-8754-4b21f7703c36" + ], + "x-ms-correlation-request-id": [ + "4355a4ae-b79b-42db-8754-4b21f7703c36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:4355a4ae-b79b-42db-8754-4b21f7703c36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b932cf91-84a7-40fd-bb1f-dfe5913f004e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11258" + ], + "x-ms-request-id": [ + "34db5497-f96a-4d7a-adb7-8aac7f7eb15d" + ], + "x-ms-correlation-request-id": [ + "34db5497-f96a-4d7a-adb7-8aac7f7eb15d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:34db5497-f96a-4d7a-adb7-8aac7f7eb15d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4ea9bb5-0936-4055-8a13-6373d0614601" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11257" + ], + "x-ms-request-id": [ + "0398c0ec-28f0-4e51-8b9f-cad54d4badcd" + ], + "x-ms-correlation-request-id": [ + "0398c0ec-28f0-4e51-8b9f-cad54d4badcd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:0398c0ec-28f0-4e51-8b9f-cad54d4badcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81af52a0-53e2-488d-8de8-cc3867159ff2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11256" + ], + "x-ms-request-id": [ + "15f075c0-dc08-489b-a013-934dfd5a993d" + ], + "x-ms-correlation-request-id": [ + "15f075c0-dc08-489b-a013-934dfd5a993d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:15f075c0-dc08-489b-a013-934dfd5a993d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22521cf0-ec91-4814-bfe4-df971316b7ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11255" + ], + "x-ms-request-id": [ + "606d3681-5b33-4922-ab90-560d164c31c2" + ], + "x-ms-correlation-request-id": [ + "606d3681-5b33-4922-ab90-560d164c31c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:606d3681-5b33-4922-ab90-560d164c31c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7bdb513-17e1-479c-a2f5-50b77ecd1d55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11254" + ], + "x-ms-request-id": [ + "85727227-b3f1-42ce-964f-a180d4341ee8" + ], + "x-ms-correlation-request-id": [ + "85727227-b3f1-42ce-964f-a180d4341ee8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020849Z:85727227-b3f1-42ce-964f-a180d4341ee8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c7a5151-37c0-427a-b02f-c1ed337240cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11253" + ], + "x-ms-request-id": [ + "1cc6cc2f-75f9-4691-a1f7-6e59b72f8984" + ], + "x-ms-correlation-request-id": [ + "1cc6cc2f-75f9-4691-a1f7-6e59b72f8984" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:1cc6cc2f-75f9-4691-a1f7-6e59b72f8984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6886099f-6942-46f3-8604-10136b989b6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11252" + ], + "x-ms-request-id": [ + "e7126fa3-5ced-413c-8c9e-dee2702db92d" + ], + "x-ms-correlation-request-id": [ + "e7126fa3-5ced-413c-8c9e-dee2702db92d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:e7126fa3-5ced-413c-8c9e-dee2702db92d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96095750-3cf1-4a3b-812e-4499531f6373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11251" + ], + "x-ms-request-id": [ + "3432fc35-18a1-4009-89cd-51f0aee91093" + ], + "x-ms-correlation-request-id": [ + "3432fc35-18a1-4009-89cd-51f0aee91093" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:3432fc35-18a1-4009-89cd-51f0aee91093" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cccc485-34e2-4565-adbd-697fc84d7a12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11250" + ], + "x-ms-request-id": [ + "d7f458bf-7d9a-480f-bccd-4ad64320d712" + ], + "x-ms-correlation-request-id": [ + "d7f458bf-7d9a-480f-bccd-4ad64320d712" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:d7f458bf-7d9a-480f-bccd-4ad64320d712" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51d09352-8175-4a98-b57f-74bc41a3ccfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11249" + ], + "x-ms-request-id": [ + "94bf7920-73e3-47c2-acd5-c92275bd07fa" + ], + "x-ms-correlation-request-id": [ + "94bf7920-73e3-47c2-acd5-c92275bd07fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:94bf7920-73e3-47c2-acd5-c92275bd07fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69d7b817-32d0-490a-9381-71bc9aab23cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11248" + ], + "x-ms-request-id": [ + "4091ef35-5b51-4c06-8666-ca5b4a54f533" + ], + "x-ms-correlation-request-id": [ + "4091ef35-5b51-4c06-8666-ca5b4a54f533" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020850Z:4091ef35-5b51-4c06-8666-ca5b4a54f533" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1bff873-0337-44e4-b2d4-9d2ebdb6f385" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11247" + ], + "x-ms-request-id": [ + "2333c16c-705a-48fe-90cc-4618e9f20427" + ], + "x-ms-correlation-request-id": [ + "2333c16c-705a-48fe-90cc-4618e9f20427" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:2333c16c-705a-48fe-90cc-4618e9f20427" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b22d7ce1-5007-4d15-b531-a77c24d958f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11246" + ], + "x-ms-request-id": [ + "48d6d20d-155b-48d7-9fa9-226854eba4ce" + ], + "x-ms-correlation-request-id": [ + "48d6d20d-155b-48d7-9fa9-226854eba4ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:48d6d20d-155b-48d7-9fa9-226854eba4ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05d0cfdb-bce1-4a96-be4f-22a0512d34d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11245" + ], + "x-ms-request-id": [ + "7faacc9e-af5d-467d-a387-1725a456435d" + ], + "x-ms-correlation-request-id": [ + "7faacc9e-af5d-467d-a387-1725a456435d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:7faacc9e-af5d-467d-a387-1725a456435d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98d96c84-5a0d-434f-98cf-2cf3ba2006e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11244" + ], + "x-ms-request-id": [ + "65239d61-cbb6-444a-8fae-464d3eee5c1b" + ], + "x-ms-correlation-request-id": [ + "65239d61-cbb6-444a-8fae-464d3eee5c1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:65239d61-cbb6-444a-8fae-464d3eee5c1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3d34f47-d087-4cc8-825b-c511f42df2cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11243" + ], + "x-ms-request-id": [ + "7d427c42-b648-4378-91f3-e9caffd39cca" + ], + "x-ms-correlation-request-id": [ + "7d427c42-b648-4378-91f3-e9caffd39cca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:7d427c42-b648-4378-91f3-e9caffd39cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d5fa758-26b2-402f-8415-73b5c7840b20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11242" + ], + "x-ms-request-id": [ + "cfd7dc61-5867-41e9-af29-6118a513e857" + ], + "x-ms-correlation-request-id": [ + "cfd7dc61-5867-41e9-af29-6118a513e857" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020851Z:cfd7dc61-5867-41e9-af29-6118a513e857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a04c68f1-00d1-4eb6-b54e-75645b631356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11241" + ], + "x-ms-request-id": [ + "0a558898-cab2-4491-a07b-c9337a123859" + ], + "x-ms-correlation-request-id": [ + "0a558898-cab2-4491-a07b-c9337a123859" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:0a558898-cab2-4491-a07b-c9337a123859" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77deed73-c147-479f-a24f-449355d15bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11240" + ], + "x-ms-request-id": [ + "af0dbc89-a9ce-4e48-ac66-9cabd9cb0bae" + ], + "x-ms-correlation-request-id": [ + "af0dbc89-a9ce-4e48-ac66-9cabd9cb0bae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:af0dbc89-a9ce-4e48-ac66-9cabd9cb0bae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385a3554-6b3f-410d-b2c9-dfd17f49b684" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11239" + ], + "x-ms-request-id": [ + "20b4383e-3adc-4470-a5ce-5c70f3c3ef40" + ], + "x-ms-correlation-request-id": [ + "20b4383e-3adc-4470-a5ce-5c70f3c3ef40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:20b4383e-3adc-4470-a5ce-5c70f3c3ef40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d448387-2c48-4cbe-b16d-354fb68f31a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11238" + ], + "x-ms-request-id": [ + "e9f9d8d6-b990-4063-889c-a4c71103207f" + ], + "x-ms-correlation-request-id": [ + "e9f9d8d6-b990-4063-889c-a4c71103207f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:e9f9d8d6-b990-4063-889c-a4c71103207f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e76eddf-7237-482d-ad84-0aa5d9de57c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11237" + ], + "x-ms-request-id": [ + "424a41c8-8477-46c8-9c7e-e29da3dac912" + ], + "x-ms-correlation-request-id": [ + "424a41c8-8477-46c8-9c7e-e29da3dac912" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:424a41c8-8477-46c8-9c7e-e29da3dac912" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0de4c6a8-2ca4-4adb-bcbb-f64a33536b35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11236" + ], + "x-ms-request-id": [ + "d2d412a9-7db4-4650-b2f7-0504c056bf2a" + ], + "x-ms-correlation-request-id": [ + "d2d412a9-7db4-4650-b2f7-0504c056bf2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020852Z:d2d412a9-7db4-4650-b2f7-0504c056bf2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ec4cd56-6dc9-4147-92cd-dea661fd9796" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11235" + ], + "x-ms-request-id": [ + "68aaab0e-47c7-478d-888a-9e10f112e979" + ], + "x-ms-correlation-request-id": [ + "68aaab0e-47c7-478d-888a-9e10f112e979" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020853Z:68aaab0e-47c7-478d-888a-9e10f112e979" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "658312c3-f392-4d14-95c4-34d34b108caa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11234" + ], + "x-ms-request-id": [ + "71392251-dea4-428e-91fc-2a9d7383b067" + ], + "x-ms-correlation-request-id": [ + "71392251-dea4-428e-91fc-2a9d7383b067" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020853Z:71392251-dea4-428e-91fc-2a9d7383b067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d34d2dd9-67a8-43c7-b678-bce8fd9d8b28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11233" + ], + "x-ms-request-id": [ + "1bf67c81-ac8d-4263-9bb9-cf953b8cfa29" + ], + "x-ms-correlation-request-id": [ + "1bf67c81-ac8d-4263-9bb9-cf953b8cfa29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020853Z:1bf67c81-ac8d-4263-9bb9-cf953b8cfa29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16cd55c0-b860-44ac-9fb1-b643a6d4b782" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11232" + ], + "x-ms-request-id": [ + "3e683d98-b038-47c9-91e6-7b323b1401cd" + ], + "x-ms-correlation-request-id": [ + "3e683d98-b038-47c9-91e6-7b323b1401cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020853Z:3e683d98-b038-47c9-91e6-7b323b1401cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e1c926-1fef-4fe3-be42-2397efd69ea3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11231" + ], + "x-ms-request-id": [ + "168fe6de-1ce2-44a5-b697-a498b8dc7ed4" + ], + "x-ms-correlation-request-id": [ + "168fe6de-1ce2-44a5-b697-a498b8dc7ed4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020853Z:168fe6de-1ce2-44a5-b697-a498b8dc7ed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb872f02-9453-4ed7-9f56-cfd15d1ea917" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11230" + ], + "x-ms-request-id": [ + "42283af3-ca8a-4b54-8abb-0b58a0cd7176" + ], + "x-ms-correlation-request-id": [ + "42283af3-ca8a-4b54-8abb-0b58a0cd7176" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020854Z:42283af3-ca8a-4b54-8abb-0b58a0cd7176" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ccc9f78-1da7-498a-8f20-57b3c4701482" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11229" + ], + "x-ms-request-id": [ + "ef2d8485-7be4-4d67-ba73-53895b66ac18" + ], + "x-ms-correlation-request-id": [ + "ef2d8485-7be4-4d67-ba73-53895b66ac18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020854Z:ef2d8485-7be4-4d67-ba73-53895b66ac18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "010621c6-cc21-4afc-8e0b-82b6ef4bf34a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11228" + ], + "x-ms-request-id": [ + "57727f71-851a-4aec-afa6-eeda305d11c8" + ], + "x-ms-correlation-request-id": [ + "57727f71-851a-4aec-afa6-eeda305d11c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020854Z:57727f71-851a-4aec-afa6-eeda305d11c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c968b22-5fba-45df-b288-486c416fae2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11227" + ], + "x-ms-request-id": [ + "64387ba3-df69-489c-80ec-843dc331d2be" + ], + "x-ms-correlation-request-id": [ + "64387ba3-df69-489c-80ec-843dc331d2be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020854Z:64387ba3-df69-489c-80ec-843dc331d2be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddaef41d-124a-41a5-93e7-3e83aca0a436" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11226" + ], + "x-ms-request-id": [ + "d0e3690e-2d34-44b0-8505-79e2b2a21335" + ], + "x-ms-correlation-request-id": [ + "d0e3690e-2d34-44b0-8505-79e2b2a21335" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:d0e3690e-2d34-44b0-8505-79e2b2a21335" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0c3898-8ade-435b-b88e-0822eeb01b17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11225" + ], + "x-ms-request-id": [ + "8a14d4b0-d74e-42d7-9b45-a02e5bd557aa" + ], + "x-ms-correlation-request-id": [ + "8a14d4b0-d74e-42d7-9b45-a02e5bd557aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:8a14d4b0-d74e-42d7-9b45-a02e5bd557aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab794f1d-6c53-492d-8ef7-e1cd7b21522a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11224" + ], + "x-ms-request-id": [ + "9721cda5-512c-4f24-9ec9-aa90f7d0c5b3" + ], + "x-ms-correlation-request-id": [ + "9721cda5-512c-4f24-9ec9-aa90f7d0c5b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:9721cda5-512c-4f24-9ec9-aa90f7d0c5b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbde9e86-2654-4fee-a3f2-d7613115493e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11223" + ], + "x-ms-request-id": [ + "41a4e9b8-72f9-488b-b57b-bc72180282bf" + ], + "x-ms-correlation-request-id": [ + "41a4e9b8-72f9-488b-b57b-bc72180282bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:41a4e9b8-72f9-488b-b57b-bc72180282bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e04f05d-78aa-4c5e-9535-b8dae91d21c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11222" + ], + "x-ms-request-id": [ + "e2a07572-28f8-4658-b383-4236b385ebd6" + ], + "x-ms-correlation-request-id": [ + "e2a07572-28f8-4658-b383-4236b385ebd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:e2a07572-28f8-4658-b383-4236b385ebd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4503be8c-4a7e-415d-b06b-c2369046daed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11221" + ], + "x-ms-request-id": [ + "e89d533c-17c0-4ff9-a5ca-2f7e8bd69988" + ], + "x-ms-correlation-request-id": [ + "e89d533c-17c0-4ff9-a5ca-2f7e8bd69988" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020855Z:e89d533c-17c0-4ff9-a5ca-2f7e8bd69988" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad31f25d-ab91-454c-a8ae-5bcb0e7653d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11220" + ], + "x-ms-request-id": [ + "f7843ba4-2969-443f-9efe-e3d490d30701" + ], + "x-ms-correlation-request-id": [ + "f7843ba4-2969-443f-9efe-e3d490d30701" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:f7843ba4-2969-443f-9efe-e3d490d30701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f65252-babd-46f0-9246-fdfd2df42b2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11219" + ], + "x-ms-request-id": [ + "6ed11991-5b52-4c2f-a32b-df60b5c6d1a7" + ], + "x-ms-correlation-request-id": [ + "6ed11991-5b52-4c2f-a32b-df60b5c6d1a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:6ed11991-5b52-4c2f-a32b-df60b5c6d1a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ac45b10-c3ed-4fee-913d-3edf7f228749" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11218" + ], + "x-ms-request-id": [ + "a24eca35-6735-4f72-a5d3-7df25f39bfdc" + ], + "x-ms-correlation-request-id": [ + "a24eca35-6735-4f72-a5d3-7df25f39bfdc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:a24eca35-6735-4f72-a5d3-7df25f39bfdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44b92dc0-4be6-4f10-bc23-1523c742c145" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11217" + ], + "x-ms-request-id": [ + "0ad01adb-c92c-4ef4-8869-384ef19630f9" + ], + "x-ms-correlation-request-id": [ + "0ad01adb-c92c-4ef4-8869-384ef19630f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:0ad01adb-c92c-4ef4-8869-384ef19630f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f64c4977-555c-4b4d-9fa2-deba574e2d05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11216" + ], + "x-ms-request-id": [ + "1506f607-d121-412a-adf2-114b2738bae0" + ], + "x-ms-correlation-request-id": [ + "1506f607-d121-412a-adf2-114b2738bae0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:1506f607-d121-412a-adf2-114b2738bae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8f9ce46-a73d-4f7a-9d2c-02d9abc7e743" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11215" + ], + "x-ms-request-id": [ + "ca48a942-7f48-43e5-a833-43d6019dd1cd" + ], + "x-ms-correlation-request-id": [ + "ca48a942-7f48-43e5-a833-43d6019dd1cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020856Z:ca48a942-7f48-43e5-a833-43d6019dd1cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db6f270d-0904-418d-a0c8-11b267049bc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11214" + ], + "x-ms-request-id": [ + "8cc2fe4b-65aa-4747-addc-b0c87a078ce6" + ], + "x-ms-correlation-request-id": [ + "8cc2fe4b-65aa-4747-addc-b0c87a078ce6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:8cc2fe4b-65aa-4747-addc-b0c87a078ce6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4b74691-6674-428f-8fdb-502350abecc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11213" + ], + "x-ms-request-id": [ + "a4bc7f68-3aac-43fd-8f9a-ae77a91a07f5" + ], + "x-ms-correlation-request-id": [ + "a4bc7f68-3aac-43fd-8f9a-ae77a91a07f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:a4bc7f68-3aac-43fd-8f9a-ae77a91a07f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d758f51-c652-4b2f-b4b7-0dee3a6f7a31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11212" + ], + "x-ms-request-id": [ + "ca5852df-3974-4ceb-b3fe-5eadcec7693d" + ], + "x-ms-correlation-request-id": [ + "ca5852df-3974-4ceb-b3fe-5eadcec7693d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:ca5852df-3974-4ceb-b3fe-5eadcec7693d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41a806c8-4c1a-4486-971c-c2122b3a6a7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11211" + ], + "x-ms-request-id": [ + "c3ce4ce7-8cb2-46b0-a5bd-8a32d80c6043" + ], + "x-ms-correlation-request-id": [ + "c3ce4ce7-8cb2-46b0-a5bd-8a32d80c6043" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:c3ce4ce7-8cb2-46b0-a5bd-8a32d80c6043" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a31e6272-be49-49d3-b7eb-b8886f6b55d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11210" + ], + "x-ms-request-id": [ + "edb5cc1d-ad55-4309-ba19-09da4a826c1e" + ], + "x-ms-correlation-request-id": [ + "edb5cc1d-ad55-4309-ba19-09da4a826c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:edb5cc1d-ad55-4309-ba19-09da4a826c1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60463a5a-1d99-4cf5-98a7-47645444b3f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11209" + ], + "x-ms-request-id": [ + "351e091d-5ba9-4e59-ad1c-9f4eedf6a85b" + ], + "x-ms-correlation-request-id": [ + "351e091d-5ba9-4e59-ad1c-9f4eedf6a85b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020857Z:351e091d-5ba9-4e59-ad1c-9f4eedf6a85b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dad4da5-a636-4b8e-8113-6498db69326d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11208" + ], + "x-ms-request-id": [ + "c1d26e43-a47b-49f5-8e5c-3e71227811d0" + ], + "x-ms-correlation-request-id": [ + "c1d26e43-a47b-49f5-8e5c-3e71227811d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020858Z:c1d26e43-a47b-49f5-8e5c-3e71227811d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6eedc1a-c9b4-420c-b69d-bdce068be045" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11207" + ], + "x-ms-request-id": [ + "bff930e3-635a-4d5f-b3f7-004ef2df1542" + ], + "x-ms-correlation-request-id": [ + "bff930e3-635a-4d5f-b3f7-004ef2df1542" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020858Z:bff930e3-635a-4d5f-b3f7-004ef2df1542" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bceadbf-ae5f-4b0e-9a0d-5e3e21d5fc3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11206" + ], + "x-ms-request-id": [ + "005765b1-5e94-47e3-9952-c00673cc03fe" + ], + "x-ms-correlation-request-id": [ + "005765b1-5e94-47e3-9952-c00673cc03fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020858Z:005765b1-5e94-47e3-9952-c00673cc03fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a87438ee-c717-48dc-8f28-0e2d87e4c896" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11205" + ], + "x-ms-request-id": [ + "027ba12b-65c2-4eb7-8ad8-9e1b1839d279" + ], + "x-ms-correlation-request-id": [ + "027ba12b-65c2-4eb7-8ad8-9e1b1839d279" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020858Z:027ba12b-65c2-4eb7-8ad8-9e1b1839d279" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f37287f-0352-4199-a1d4-018333ef0307" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11204" + ], + "x-ms-request-id": [ + "755df9f1-c02a-4f82-8948-e10ab96bd406" + ], + "x-ms-correlation-request-id": [ + "755df9f1-c02a-4f82-8948-e10ab96bd406" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020858Z:755df9f1-c02a-4f82-8948-e10ab96bd406" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "363f28d5-382c-4f42-813a-b037824feba7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11203" + ], + "x-ms-request-id": [ + "cf65528c-5b3d-4470-a9b9-e3c814f4fa25" + ], + "x-ms-correlation-request-id": [ + "cf65528c-5b3d-4470-a9b9-e3c814f4fa25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:cf65528c-5b3d-4470-a9b9-e3c814f4fa25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09112412-1aef-416e-8d90-fae65012457c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11202" + ], + "x-ms-request-id": [ + "7187b1d8-0536-46fe-ac3e-3c5f7f508473" + ], + "x-ms-correlation-request-id": [ + "7187b1d8-0536-46fe-ac3e-3c5f7f508473" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:7187b1d8-0536-46fe-ac3e-3c5f7f508473" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b19cda5-1172-4ad3-82a8-8b625de8250e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11201" + ], + "x-ms-request-id": [ + "f5b073bb-5d79-4f9c-be90-4611ea49fe03" + ], + "x-ms-correlation-request-id": [ + "f5b073bb-5d79-4f9c-be90-4611ea49fe03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:f5b073bb-5d79-4f9c-be90-4611ea49fe03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "744d4ec4-4395-4b41-87a4-d589e4e4e405" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11200" + ], + "x-ms-request-id": [ + "589e0a2c-b804-400c-8458-834efbe1d0f1" + ], + "x-ms-correlation-request-id": [ + "589e0a2c-b804-400c-8458-834efbe1d0f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:589e0a2c-b804-400c-8458-834efbe1d0f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d0b121c-eab9-4f2a-a101-147ffd316473" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11199" + ], + "x-ms-request-id": [ + "bcf34cf2-5c0f-4018-8670-36939419fc55" + ], + "x-ms-correlation-request-id": [ + "bcf34cf2-5c0f-4018-8670-36939419fc55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:bcf34cf2-5c0f-4018-8670-36939419fc55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99f830aa-8922-4960-9927-dd48411525e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11198" + ], + "x-ms-request-id": [ + "2a43149d-4d90-4cca-937a-41d95822d331" + ], + "x-ms-correlation-request-id": [ + "2a43149d-4d90-4cca-937a-41d95822d331" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020859Z:2a43149d-4d90-4cca-937a-41d95822d331" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6e95164-30e8-44dd-84c8-65ae0b5de596" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11197" + ], + "x-ms-request-id": [ + "c5e2fbaf-9cdf-4f3d-aceb-77246a42a685" + ], + "x-ms-correlation-request-id": [ + "c5e2fbaf-9cdf-4f3d-aceb-77246a42a685" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:c5e2fbaf-9cdf-4f3d-aceb-77246a42a685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1665a301-48e0-460e-842e-91e93ed1e03d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11196" + ], + "x-ms-request-id": [ + "d6756d4e-4ba6-4f37-97dd-a490e72dce46" + ], + "x-ms-correlation-request-id": [ + "d6756d4e-4ba6-4f37-97dd-a490e72dce46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:d6756d4e-4ba6-4f37-97dd-a490e72dce46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:08: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55c70686-932d-42d3-ba01-9a0040bb60eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11195" + ], + "x-ms-request-id": [ + "0add8860-a3ca-4a6e-98e5-2c8309b6eca8" + ], + "x-ms-correlation-request-id": [ + "0add8860-a3ca-4a6e-98e5-2c8309b6eca8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:0add8860-a3ca-4a6e-98e5-2c8309b6eca8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6276379-2b94-4be0-9a6c-78e067ffd2ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11194" + ], + "x-ms-request-id": [ + "53992a9b-2cf4-40be-a89d-33a92bad3ddc" + ], + "x-ms-correlation-request-id": [ + "53992a9b-2cf4-40be-a89d-33a92bad3ddc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:53992a9b-2cf4-40be-a89d-33a92bad3ddc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "791b4bdf-8369-441e-9754-e74e88599376" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11193" + ], + "x-ms-request-id": [ + "75140ae6-dda8-4495-90e8-3bffd086a8ef" + ], + "x-ms-correlation-request-id": [ + "75140ae6-dda8-4495-90e8-3bffd086a8ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:75140ae6-dda8-4495-90e8-3bffd086a8ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6600bf9-9fa6-4dcc-a210-dc96b7227e00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11192" + ], + "x-ms-request-id": [ + "be004797-69b2-4bb4-b83c-af2646e3ba4d" + ], + "x-ms-correlation-request-id": [ + "be004797-69b2-4bb4-b83c-af2646e3ba4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020900Z:be004797-69b2-4bb4-b83c-af2646e3ba4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8de392e6-2009-4cf0-9868-78fedff1d091" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11191" + ], + "x-ms-request-id": [ + "99b37d2e-4c05-4c79-a26b-103e15295a21" + ], + "x-ms-correlation-request-id": [ + "99b37d2e-4c05-4c79-a26b-103e15295a21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020901Z:99b37d2e-4c05-4c79-a26b-103e15295a21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fefe73b5-8df8-4cea-860e-636447a682b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11190" + ], + "x-ms-request-id": [ + "a5f032c0-48f2-4b9c-8bf5-9cf236640fde" + ], + "x-ms-correlation-request-id": [ + "a5f032c0-48f2-4b9c-8bf5-9cf236640fde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020901Z:a5f032c0-48f2-4b9c-8bf5-9cf236640fde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7672d5e0-ecc0-4942-912f-4b0085be5231" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11189" + ], + "x-ms-request-id": [ + "11b96146-2e0e-405a-b94b-13640a3f9306" + ], + "x-ms-correlation-request-id": [ + "11b96146-2e0e-405a-b94b-13640a3f9306" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020901Z:11b96146-2e0e-405a-b94b-13640a3f9306" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a60be3d-5336-4528-b6e2-966f886e86c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11188" + ], + "x-ms-request-id": [ + "799ef838-ad40-4704-adf1-396d99d98724" + ], + "x-ms-correlation-request-id": [ + "799ef838-ad40-4704-adf1-396d99d98724" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020901Z:799ef838-ad40-4704-adf1-396d99d98724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34e59792-c6b7-4160-bf91-a1e793fe5e0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11187" + ], + "x-ms-request-id": [ + "f53aff68-5ac3-46db-a60a-b38d5f2f59a9" + ], + "x-ms-correlation-request-id": [ + "f53aff68-5ac3-46db-a60a-b38d5f2f59a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020901Z:f53aff68-5ac3-46db-a60a-b38d5f2f59a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e7ae585-2fc5-428c-a347-344ee2a5cc27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11186" + ], + "x-ms-request-id": [ + "70ef1c6f-a6ef-4937-ba8a-109bd226d10e" + ], + "x-ms-correlation-request-id": [ + "70ef1c6f-a6ef-4937-ba8a-109bd226d10e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:70ef1c6f-a6ef-4937-ba8a-109bd226d10e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5477b4b-d4e9-4c7a-b703-2cd4a910e07c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11185" + ], + "x-ms-request-id": [ + "43007c8f-098a-4dca-88f2-f60ce3a50c0f" + ], + "x-ms-correlation-request-id": [ + "43007c8f-098a-4dca-88f2-f60ce3a50c0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:43007c8f-098a-4dca-88f2-f60ce3a50c0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66dae28a-fdba-4184-bc74-8fbf0d352cd9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11184" + ], + "x-ms-request-id": [ + "7cda4dc9-1a7a-438f-b91f-ceefd46a133b" + ], + "x-ms-correlation-request-id": [ + "7cda4dc9-1a7a-438f-b91f-ceefd46a133b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:7cda4dc9-1a7a-438f-b91f-ceefd46a133b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8ec63c-6b90-48d1-a69c-0c1a0741daa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11183" + ], + "x-ms-request-id": [ + "10e3520f-fc0c-4051-aaef-b860975f1394" + ], + "x-ms-correlation-request-id": [ + "10e3520f-fc0c-4051-aaef-b860975f1394" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:10e3520f-fc0c-4051-aaef-b860975f1394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e8d8eaf-101c-4893-a99f-64bf74b4b338" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11182" + ], + "x-ms-request-id": [ + "6dd20b96-9104-4164-80b8-3c51aa73db4f" + ], + "x-ms-correlation-request-id": [ + "6dd20b96-9104-4164-80b8-3c51aa73db4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:6dd20b96-9104-4164-80b8-3c51aa73db4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caeb549d-3bc2-4e93-834c-ef011057cb84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11181" + ], + "x-ms-request-id": [ + "1b6e1ea1-7cb8-4330-857d-478cedd09215" + ], + "x-ms-correlation-request-id": [ + "1b6e1ea1-7cb8-4330-857d-478cedd09215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020902Z:1b6e1ea1-7cb8-4330-857d-478cedd09215" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fe852b0-0cf5-423e-8005-2e10048e3e86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11180" + ], + "x-ms-request-id": [ + "d97b39f8-3879-45d6-96b0-64263c47fafa" + ], + "x-ms-correlation-request-id": [ + "d97b39f8-3879-45d6-96b0-64263c47fafa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:d97b39f8-3879-45d6-96b0-64263c47fafa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3b680ef-2f3e-4d24-8556-e9de43a57e04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11179" + ], + "x-ms-request-id": [ + "10e62d3e-5200-4df7-9671-386550bd4ce4" + ], + "x-ms-correlation-request-id": [ + "10e62d3e-5200-4df7-9671-386550bd4ce4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:10e62d3e-5200-4df7-9671-386550bd4ce4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7af4cb46-0086-477d-8828-d8ed2b8c4578" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11178" + ], + "x-ms-request-id": [ + "e078baa6-398b-4d3d-9c9a-36d7075fa832" + ], + "x-ms-correlation-request-id": [ + "e078baa6-398b-4d3d-9c9a-36d7075fa832" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:e078baa6-398b-4d3d-9c9a-36d7075fa832" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fba574c-5234-4539-9a8e-1464159eb90b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11177" + ], + "x-ms-request-id": [ + "dd0755e2-8aca-404f-be22-ce5023e5863a" + ], + "x-ms-correlation-request-id": [ + "dd0755e2-8aca-404f-be22-ce5023e5863a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:dd0755e2-8aca-404f-be22-ce5023e5863a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47fcd0ae-b108-4b10-80db-2726bc1c353e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11176" + ], + "x-ms-request-id": [ + "c17e0b50-dfa9-46b7-9d83-3d0c373173fc" + ], + "x-ms-correlation-request-id": [ + "c17e0b50-dfa9-46b7-9d83-3d0c373173fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:c17e0b50-dfa9-46b7-9d83-3d0c373173fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66937baf-6468-45aa-b23d-d727c7c4f8d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11175" + ], + "x-ms-request-id": [ + "9584a152-02d1-47f4-9844-4d5762bd4de1" + ], + "x-ms-correlation-request-id": [ + "9584a152-02d1-47f4-9844-4d5762bd4de1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020903Z:9584a152-02d1-47f4-9844-4d5762bd4de1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dbbb717-09e2-4c4d-a568-2ad3c992bd2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11174" + ], + "x-ms-request-id": [ + "b78debed-455d-458e-9cbe-2692736785b0" + ], + "x-ms-correlation-request-id": [ + "b78debed-455d-458e-9cbe-2692736785b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:b78debed-455d-458e-9cbe-2692736785b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bcd5d5a-56a7-42eb-b3ea-8d82c4d6a319" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11173" + ], + "x-ms-request-id": [ + "1d4d5f2a-34ad-4e8d-b7e7-fbf27f6246b1" + ], + "x-ms-correlation-request-id": [ + "1d4d5f2a-34ad-4e8d-b7e7-fbf27f6246b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:1d4d5f2a-34ad-4e8d-b7e7-fbf27f6246b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "132b01ea-3591-4d91-9482-76f7df64315c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11172" + ], + "x-ms-request-id": [ + "f1b96bfc-d8d4-43e5-91ad-12e9e61a08c1" + ], + "x-ms-correlation-request-id": [ + "f1b96bfc-d8d4-43e5-91ad-12e9e61a08c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:f1b96bfc-d8d4-43e5-91ad-12e9e61a08c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30042303-1a39-4d9f-a9a1-ac6afdb3527b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11171" + ], + "x-ms-request-id": [ + "db5f7639-36b1-40fb-8129-5faf0b045ddf" + ], + "x-ms-correlation-request-id": [ + "db5f7639-36b1-40fb-8129-5faf0b045ddf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:db5f7639-36b1-40fb-8129-5faf0b045ddf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13ebfe90-d7de-4d10-a976-06a16f5be858" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11170" + ], + "x-ms-request-id": [ + "cd6e9fdd-46fa-4d8d-919e-deea58864c20" + ], + "x-ms-correlation-request-id": [ + "cd6e9fdd-46fa-4d8d-919e-deea58864c20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:cd6e9fdd-46fa-4d8d-919e-deea58864c20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c13dda33-3ed7-480b-b9b9-0dd231cd05b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11169" + ], + "x-ms-request-id": [ + "9322f009-c37f-4d99-a9e3-eac22b135ebf" + ], + "x-ms-correlation-request-id": [ + "9322f009-c37f-4d99-a9e3-eac22b135ebf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020904Z:9322f009-c37f-4d99-a9e3-eac22b135ebf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e39b0ce-4170-4f4d-8f28-b293e2dd0f67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11168" + ], + "x-ms-request-id": [ + "0880bab9-dc7d-459e-b1a2-e4849827f10f" + ], + "x-ms-correlation-request-id": [ + "0880bab9-dc7d-459e-b1a2-e4849827f10f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:0880bab9-dc7d-459e-b1a2-e4849827f10f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab0974eb-0b28-4c38-ac4e-902e53d2dc62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11167" + ], + "x-ms-request-id": [ + "b13ab3db-84cd-482c-8478-6581d5ac3cf4" + ], + "x-ms-correlation-request-id": [ + "b13ab3db-84cd-482c-8478-6581d5ac3cf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:b13ab3db-84cd-482c-8478-6581d5ac3cf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12791a3b-0250-4105-924b-78e55dbe32d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11166" + ], + "x-ms-request-id": [ + "3a882ecf-b0fb-44af-9421-8b9daa3a3130" + ], + "x-ms-correlation-request-id": [ + "3a882ecf-b0fb-44af-9421-8b9daa3a3130" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:3a882ecf-b0fb-44af-9421-8b9daa3a3130" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdfff6d0-eb5b-418c-97ec-c5677dba7699" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11165" + ], + "x-ms-request-id": [ + "7523aceb-3fe1-4e57-b739-3efe8caf3db7" + ], + "x-ms-correlation-request-id": [ + "7523aceb-3fe1-4e57-b739-3efe8caf3db7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:7523aceb-3fe1-4e57-b739-3efe8caf3db7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fc7f578-f2a7-4a11-b74c-f54a6a550fb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11164" + ], + "x-ms-request-id": [ + "c49b2b34-bd69-4bcc-a706-67431f2893cf" + ], + "x-ms-correlation-request-id": [ + "c49b2b34-bd69-4bcc-a706-67431f2893cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:c49b2b34-bd69-4bcc-a706-67431f2893cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42ff0b17-8d92-46e3-a31b-99a7f20da751" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11163" + ], + "x-ms-request-id": [ + "02aea938-8539-43e3-bd01-bf9eb0e5651a" + ], + "x-ms-correlation-request-id": [ + "02aea938-8539-43e3-bd01-bf9eb0e5651a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020905Z:02aea938-8539-43e3-bd01-bf9eb0e5651a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00092a05-af3f-4b68-8ca5-0b68481aefcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11162" + ], + "x-ms-request-id": [ + "7c07be5c-ea0b-4385-96fb-900d13b058a2" + ], + "x-ms-correlation-request-id": [ + "7c07be5c-ea0b-4385-96fb-900d13b058a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020906Z:7c07be5c-ea0b-4385-96fb-900d13b058a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a83c3e14-3ed2-4c40-85fc-e951528db8cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11161" + ], + "x-ms-request-id": [ + "6143c5e4-3bfb-4386-97bf-076532355d22" + ], + "x-ms-correlation-request-id": [ + "6143c5e4-3bfb-4386-97bf-076532355d22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020906Z:6143c5e4-3bfb-4386-97bf-076532355d22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54851568-fd5e-4c45-8e56-71ed458b7c76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11160" + ], + "x-ms-request-id": [ + "bfb0d0e4-b83a-442a-a7f0-b953b7f787d7" + ], + "x-ms-correlation-request-id": [ + "bfb0d0e4-b83a-442a-a7f0-b953b7f787d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020906Z:bfb0d0e4-b83a-442a-a7f0-b953b7f787d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65d8bfd7-b891-4831-8114-fd931601864f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11159" + ], + "x-ms-request-id": [ + "315daaab-55a8-4e50-9e7c-adec8069200d" + ], + "x-ms-correlation-request-id": [ + "315daaab-55a8-4e50-9e7c-adec8069200d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020906Z:315daaab-55a8-4e50-9e7c-adec8069200d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b841ff8-21ba-46af-b1da-fa5e8c34ba63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11158" + ], + "x-ms-request-id": [ + "058e40cd-a514-4105-acad-4a29c45f3bba" + ], + "x-ms-correlation-request-id": [ + "058e40cd-a514-4105-acad-4a29c45f3bba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020906Z:058e40cd-a514-4105-acad-4a29c45f3bba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78055c8f-b8a3-496e-b55f-0017dd9fa9b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11157" + ], + "x-ms-request-id": [ + "a6e1f96b-69ce-41a1-906e-c157c41147d3" + ], + "x-ms-correlation-request-id": [ + "a6e1f96b-69ce-41a1-906e-c157c41147d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:a6e1f96b-69ce-41a1-906e-c157c41147d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79bad0cb-51c5-4ba7-9bd1-ba859ff718e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11156" + ], + "x-ms-request-id": [ + "a7a10055-f6cb-4d5f-abfd-7c3ae09f602a" + ], + "x-ms-correlation-request-id": [ + "a7a10055-f6cb-4d5f-abfd-7c3ae09f602a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:a7a10055-f6cb-4d5f-abfd-7c3ae09f602a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "082d3217-e78b-4de8-9911-288db5aefe4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11155" + ], + "x-ms-request-id": [ + "ed762218-59f0-4cab-9a01-298e551e2399" + ], + "x-ms-correlation-request-id": [ + "ed762218-59f0-4cab-9a01-298e551e2399" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:ed762218-59f0-4cab-9a01-298e551e2399" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98936c23-7895-4d31-8e6c-81ce1caf037b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11154" + ], + "x-ms-request-id": [ + "320f3a39-abae-4a7f-8367-4d6129bbc3da" + ], + "x-ms-correlation-request-id": [ + "320f3a39-abae-4a7f-8367-4d6129bbc3da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:320f3a39-abae-4a7f-8367-4d6129bbc3da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21c465a3-21a3-4799-b514-3ddcdb2ef583" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11153" + ], + "x-ms-request-id": [ + "5d5dfe72-2a4c-458a-bee2-4d8d09b825a2" + ], + "x-ms-correlation-request-id": [ + "5d5dfe72-2a4c-458a-bee2-4d8d09b825a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:5d5dfe72-2a4c-458a-bee2-4d8d09b825a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "131de091-3ef3-4851-9a24-99fbcc051b32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11152" + ], + "x-ms-request-id": [ + "f81a88fa-1179-4f4b-982d-79721c890a56" + ], + "x-ms-correlation-request-id": [ + "f81a88fa-1179-4f4b-982d-79721c890a56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020907Z:f81a88fa-1179-4f4b-982d-79721c890a56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "416e7dce-ab30-4fb7-881a-f7ffc05d6c1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11151" + ], + "x-ms-request-id": [ + "0e43a63f-bf1f-4e7c-924d-39ddb7675efa" + ], + "x-ms-correlation-request-id": [ + "0e43a63f-bf1f-4e7c-924d-39ddb7675efa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:0e43a63f-bf1f-4e7c-924d-39ddb7675efa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7baa8b9c-7d14-454f-a92c-30f531c1b196" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11150" + ], + "x-ms-request-id": [ + "f0a39495-03df-4b53-b913-13cadd901dd0" + ], + "x-ms-correlation-request-id": [ + "f0a39495-03df-4b53-b913-13cadd901dd0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:f0a39495-03df-4b53-b913-13cadd901dd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa8b51c0-fa6f-4699-b945-728008be43f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11149" + ], + "x-ms-request-id": [ + "5f9caae3-3c04-4077-af68-5209b0c40e5b" + ], + "x-ms-correlation-request-id": [ + "5f9caae3-3c04-4077-af68-5209b0c40e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:5f9caae3-3c04-4077-af68-5209b0c40e5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7025ca3c-158d-4e78-bb66-195f51eb9ebc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11148" + ], + "x-ms-request-id": [ + "20549ada-4bbb-4afb-861d-d298dae34ff4" + ], + "x-ms-correlation-request-id": [ + "20549ada-4bbb-4afb-861d-d298dae34ff4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:20549ada-4bbb-4afb-861d-d298dae34ff4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bfc7525-47c9-41b3-bec7-5dbbd15d8290" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11147" + ], + "x-ms-request-id": [ + "04503eb4-d148-46ce-86ff-fb68d887b081" + ], + "x-ms-correlation-request-id": [ + "04503eb4-d148-46ce-86ff-fb68d887b081" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:04503eb4-d148-46ce-86ff-fb68d887b081" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "466cd735-6d95-4264-9b94-bc336542ebb1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11146" + ], + "x-ms-request-id": [ + "3b9ded67-a460-40c0-a071-4f188d8c02a9" + ], + "x-ms-correlation-request-id": [ + "3b9ded67-a460-40c0-a071-4f188d8c02a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020908Z:3b9ded67-a460-40c0-a071-4f188d8c02a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d5e6812-e5f7-4c45-bc12-cdb835d0ee7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11145" + ], + "x-ms-request-id": [ + "e7fa9c61-79fc-4a42-b846-1a929f2bd258" + ], + "x-ms-correlation-request-id": [ + "e7fa9c61-79fc-4a42-b846-1a929f2bd258" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:e7fa9c61-79fc-4a42-b846-1a929f2bd258" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b43116d0-71ed-43ca-84a8-0f5d9f209b01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11144" + ], + "x-ms-request-id": [ + "e8ab0d4a-0e0b-4238-9600-08f0139c4682" + ], + "x-ms-correlation-request-id": [ + "e8ab0d4a-0e0b-4238-9600-08f0139c4682" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:e8ab0d4a-0e0b-4238-9600-08f0139c4682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "735a5617-5402-400e-983b-f2dc3ebafa2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11143" + ], + "x-ms-request-id": [ + "872fdd11-3910-43e8-807d-9654007d9dfb" + ], + "x-ms-correlation-request-id": [ + "872fdd11-3910-43e8-807d-9654007d9dfb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:872fdd11-3910-43e8-807d-9654007d9dfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8bb81d8-ce81-4043-8f14-f6918ebd487c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11142" + ], + "x-ms-request-id": [ + "4aa1a9ad-95be-4e4a-af5c-f210466cb7ec" + ], + "x-ms-correlation-request-id": [ + "4aa1a9ad-95be-4e4a-af5c-f210466cb7ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:4aa1a9ad-95be-4e4a-af5c-f210466cb7ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "872af975-f9f5-4873-9855-c0edf73fe42f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11141" + ], + "x-ms-request-id": [ + "2e3f1622-6496-4342-921d-1f7be9ee7f85" + ], + "x-ms-correlation-request-id": [ + "2e3f1622-6496-4342-921d-1f7be9ee7f85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:2e3f1622-6496-4342-921d-1f7be9ee7f85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "008d240e-f3b1-4dbc-b502-ac50c0dc4df6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11140" + ], + "x-ms-request-id": [ + "8065ecdd-6982-4a84-8317-6b81b2ee7de6" + ], + "x-ms-correlation-request-id": [ + "8065ecdd-6982-4a84-8317-6b81b2ee7de6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020909Z:8065ecdd-6982-4a84-8317-6b81b2ee7de6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "775970db-6a20-4363-a5b3-26adecc1fac3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11139" + ], + "x-ms-request-id": [ + "5238d241-bc91-4ca4-a58a-228907a81e83" + ], + "x-ms-correlation-request-id": [ + "5238d241-bc91-4ca4-a58a-228907a81e83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020910Z:5238d241-bc91-4ca4-a58a-228907a81e83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d30c420c-7a1b-4d8a-a100-714fad71cc4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11138" + ], + "x-ms-request-id": [ + "414be6d0-11df-4da5-b0df-39e7f51dad48" + ], + "x-ms-correlation-request-id": [ + "414be6d0-11df-4da5-b0df-39e7f51dad48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020910Z:414be6d0-11df-4da5-b0df-39e7f51dad48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ae0d34-b115-4995-98e9-d0b140535cdc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11137" + ], + "x-ms-request-id": [ + "f87d160c-2ece-43c0-b006-2b9b9780ec1d" + ], + "x-ms-correlation-request-id": [ + "f87d160c-2ece-43c0-b006-2b9b9780ec1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020910Z:f87d160c-2ece-43c0-b006-2b9b9780ec1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d80a7c79-339f-4d34-b75a-25f039f741ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11136" + ], + "x-ms-request-id": [ + "cbc68731-8588-4c1d-97f3-1a4c86181041" + ], + "x-ms-correlation-request-id": [ + "cbc68731-8588-4c1d-97f3-1a4c86181041" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020910Z:cbc68731-8588-4c1d-97f3-1a4c86181041" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2adaec24-d54d-42ea-8c47-cde247bb7376" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11135" + ], + "x-ms-request-id": [ + "37832c2a-cb0c-47ff-821e-e2fd16915df1" + ], + "x-ms-correlation-request-id": [ + "37832c2a-cb0c-47ff-821e-e2fd16915df1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020910Z:37832c2a-cb0c-47ff-821e-e2fd16915df1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "979df879-739f-495b-94d6-08f74842a0df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11134" + ], + "x-ms-request-id": [ + "c88ab7a4-d144-4ef5-be64-2b2f27e24c28" + ], + "x-ms-correlation-request-id": [ + "c88ab7a4-d144-4ef5-be64-2b2f27e24c28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:c88ab7a4-d144-4ef5-be64-2b2f27e24c28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e217395-bf63-4f0c-95b4-2d92101bd0c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11133" + ], + "x-ms-request-id": [ + "bf3eeeb2-84f4-4fbe-9607-414fc5e98e3d" + ], + "x-ms-correlation-request-id": [ + "bf3eeeb2-84f4-4fbe-9607-414fc5e98e3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:bf3eeeb2-84f4-4fbe-9607-414fc5e98e3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00b29f30-3900-4600-8261-44454d5ed594" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11132" + ], + "x-ms-request-id": [ + "f61a17ca-cf65-4e34-b6b0-0a712d0516eb" + ], + "x-ms-correlation-request-id": [ + "f61a17ca-cf65-4e34-b6b0-0a712d0516eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:f61a17ca-cf65-4e34-b6b0-0a712d0516eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7db2e620-1c6b-4136-a49f-78678b8f72b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11131" + ], + "x-ms-request-id": [ + "8a0f91d4-bfa0-49e1-8199-75907595a93c" + ], + "x-ms-correlation-request-id": [ + "8a0f91d4-bfa0-49e1-8199-75907595a93c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:8a0f91d4-bfa0-49e1-8199-75907595a93c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fcd6f83-7630-447f-a628-65f732f1a564" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11130" + ], + "x-ms-request-id": [ + "2185505f-e4d1-47fa-8ffd-104b829d7ad5" + ], + "x-ms-correlation-request-id": [ + "2185505f-e4d1-47fa-8ffd-104b829d7ad5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:2185505f-e4d1-47fa-8ffd-104b829d7ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2f22ab6-98f7-4678-aaca-e5243958a023" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11129" + ], + "x-ms-request-id": [ + "fe93959c-78f3-431b-ac94-67febaccee50" + ], + "x-ms-correlation-request-id": [ + "fe93959c-78f3-431b-ac94-67febaccee50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020911Z:fe93959c-78f3-431b-ac94-67febaccee50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc4b37f3-5f52-4b03-bc28-65424b1bfea2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11128" + ], + "x-ms-request-id": [ + "2547abeb-c7c2-462b-86b4-3d579bbb5a64" + ], + "x-ms-correlation-request-id": [ + "2547abeb-c7c2-462b-86b4-3d579bbb5a64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:2547abeb-c7c2-462b-86b4-3d579bbb5a64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71967ec2-024f-4507-9e33-99b4960d73d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11127" + ], + "x-ms-request-id": [ + "fbd7ca32-8693-4b94-9583-db583e69994b" + ], + "x-ms-correlation-request-id": [ + "fbd7ca32-8693-4b94-9583-db583e69994b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:fbd7ca32-8693-4b94-9583-db583e69994b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "374f2312-3bb7-4efb-a676-63fb33349b5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11126" + ], + "x-ms-request-id": [ + "d68c1944-332f-41a3-8d1e-f5b2fd1f3559" + ], + "x-ms-correlation-request-id": [ + "d68c1944-332f-41a3-8d1e-f5b2fd1f3559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:d68c1944-332f-41a3-8d1e-f5b2fd1f3559" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "723bc231-a805-4021-922b-d117ba66bea6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11125" + ], + "x-ms-request-id": [ + "dc0f9804-9479-4734-ba50-1df921431050" + ], + "x-ms-correlation-request-id": [ + "dc0f9804-9479-4734-ba50-1df921431050" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:dc0f9804-9479-4734-ba50-1df921431050" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5912b1ae-f0e8-4b48-abe7-fb79a7e4e161" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11124" + ], + "x-ms-request-id": [ + "39771962-39bb-4690-a6de-763813f6568e" + ], + "x-ms-correlation-request-id": [ + "39771962-39bb-4690-a6de-763813f6568e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:39771962-39bb-4690-a6de-763813f6568e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ede78b2-26f7-4538-a96e-102167533636" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11123" + ], + "x-ms-request-id": [ + "0c9602b4-5fa9-4044-9e1f-c849dae3665c" + ], + "x-ms-correlation-request-id": [ + "0c9602b4-5fa9-4044-9e1f-c849dae3665c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020912Z:0c9602b4-5fa9-4044-9e1f-c849dae3665c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7fe326f-8497-47ad-973a-958c941abc58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11122" + ], + "x-ms-request-id": [ + "785e276a-1251-40cd-ac62-a39cfe17a811" + ], + "x-ms-correlation-request-id": [ + "785e276a-1251-40cd-ac62-a39cfe17a811" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:785e276a-1251-40cd-ac62-a39cfe17a811" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4e8d99f-94c2-447b-a38d-1cb6188ea39e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11121" + ], + "x-ms-request-id": [ + "2fe1059c-fc16-4c48-813e-b88f047855e9" + ], + "x-ms-correlation-request-id": [ + "2fe1059c-fc16-4c48-813e-b88f047855e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:2fe1059c-fc16-4c48-813e-b88f047855e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d57f2e6-e1fe-4e64-824a-86f362352e95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11120" + ], + "x-ms-request-id": [ + "81a40d07-618f-4e7c-ba19-0f7e690f04ce" + ], + "x-ms-correlation-request-id": [ + "81a40d07-618f-4e7c-ba19-0f7e690f04ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:81a40d07-618f-4e7c-ba19-0f7e690f04ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39140986-1f2a-4e0f-9a80-cef39c43a4d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11119" + ], + "x-ms-request-id": [ + "fe142253-3132-4b77-9fe6-efdf53b89e12" + ], + "x-ms-correlation-request-id": [ + "fe142253-3132-4b77-9fe6-efdf53b89e12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:fe142253-3132-4b77-9fe6-efdf53b89e12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f968ceb-47ad-41c7-a5b7-ddeefd0adc04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11118" + ], + "x-ms-request-id": [ + "c13901d5-d9b3-429f-adc7-88ea8514e0c0" + ], + "x-ms-correlation-request-id": [ + "c13901d5-d9b3-429f-adc7-88ea8514e0c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:c13901d5-d9b3-429f-adc7-88ea8514e0c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e4cd505-061d-4fd5-9079-ac0868161b64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11117" + ], + "x-ms-request-id": [ + "a56958da-c902-4b97-a4b8-c8aca9a51778" + ], + "x-ms-correlation-request-id": [ + "a56958da-c902-4b97-a4b8-c8aca9a51778" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020913Z:a56958da-c902-4b97-a4b8-c8aca9a51778" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8df13a4-7580-4230-9980-400a9bd2c78e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11116" + ], + "x-ms-request-id": [ + "9bd05479-323e-4b15-a090-30863791bf87" + ], + "x-ms-correlation-request-id": [ + "9bd05479-323e-4b15-a090-30863791bf87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:9bd05479-323e-4b15-a090-30863791bf87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c145131c-65df-4b5d-a9cf-e0016a535836" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11115" + ], + "x-ms-request-id": [ + "92d35965-fc3c-48cb-96a0-1fc0402a9f62" + ], + "x-ms-correlation-request-id": [ + "92d35965-fc3c-48cb-96a0-1fc0402a9f62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:92d35965-fc3c-48cb-96a0-1fc0402a9f62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80b18915-755c-499a-a554-bd2d06485b7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11114" + ], + "x-ms-request-id": [ + "3fd0daf7-af25-4044-9a49-91446f85c5db" + ], + "x-ms-correlation-request-id": [ + "3fd0daf7-af25-4044-9a49-91446f85c5db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:3fd0daf7-af25-4044-9a49-91446f85c5db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ff3f495-2288-4c8e-bb35-da247b4808be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11113" + ], + "x-ms-request-id": [ + "76454031-688f-4c07-9f6a-712fe18c3b64" + ], + "x-ms-correlation-request-id": [ + "76454031-688f-4c07-9f6a-712fe18c3b64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:76454031-688f-4c07-9f6a-712fe18c3b64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9fdc152-8218-4053-a6b1-96fd1518e8c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11112" + ], + "x-ms-request-id": [ + "319f2d30-ad43-4947-ab8c-4adca96f069f" + ], + "x-ms-correlation-request-id": [ + "319f2d30-ad43-4947-ab8c-4adca96f069f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:319f2d30-ad43-4947-ab8c-4adca96f069f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd2c866-c270-4edb-88ec-15ab60f8a333" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11111" + ], + "x-ms-request-id": [ + "2f9af7b5-db14-4004-a510-fc7d9b371bf6" + ], + "x-ms-correlation-request-id": [ + "2f9af7b5-db14-4004-a510-fc7d9b371bf6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020914Z:2f9af7b5-db14-4004-a510-fc7d9b371bf6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a0cc2b3-a6cf-48f5-83ee-f28455c75452" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11110" + ], + "x-ms-request-id": [ + "98acf433-17b2-4d27-94a6-70ec1ca83205" + ], + "x-ms-correlation-request-id": [ + "98acf433-17b2-4d27-94a6-70ec1ca83205" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:98acf433-17b2-4d27-94a6-70ec1ca83205" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "244d7bbd-4d37-4d7c-90ae-c92abd340be0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11109" + ], + "x-ms-request-id": [ + "cf0a0bc0-8af4-4176-9380-78f5630d4399" + ], + "x-ms-correlation-request-id": [ + "cf0a0bc0-8af4-4176-9380-78f5630d4399" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:cf0a0bc0-8af4-4176-9380-78f5630d4399" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff471e0d-23de-446f-832f-d14c981fc46a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11108" + ], + "x-ms-request-id": [ + "2798939a-4a1e-41d7-ac39-b6272d663305" + ], + "x-ms-correlation-request-id": [ + "2798939a-4a1e-41d7-ac39-b6272d663305" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:2798939a-4a1e-41d7-ac39-b6272d663305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82ad06f6-d973-4f42-ba5c-861963447241" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11107" + ], + "x-ms-request-id": [ + "afe9f7f6-b802-40eb-b48e-d4f6cad331d4" + ], + "x-ms-correlation-request-id": [ + "afe9f7f6-b802-40eb-b48e-d4f6cad331d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:afe9f7f6-b802-40eb-b48e-d4f6cad331d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f16a3f3b-7148-4a21-8a3e-05e323d60c1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11106" + ], + "x-ms-request-id": [ + "deee8d83-3bf0-42b1-97b1-9cc36e7c9663" + ], + "x-ms-correlation-request-id": [ + "deee8d83-3bf0-42b1-97b1-9cc36e7c9663" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:deee8d83-3bf0-42b1-97b1-9cc36e7c9663" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88ce212b-184f-409f-b28a-3050865947ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11105" + ], + "x-ms-request-id": [ + "7ad7bdfd-74bd-40de-b560-fac753457f15" + ], + "x-ms-correlation-request-id": [ + "7ad7bdfd-74bd-40de-b560-fac753457f15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020915Z:7ad7bdfd-74bd-40de-b560-fac753457f15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2283e7b1-f616-4966-a1d6-405e0865bbcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11104" + ], + "x-ms-request-id": [ + "01bdca0f-e7ae-43c4-a1c6-875b9080ac03" + ], + "x-ms-correlation-request-id": [ + "01bdca0f-e7ae-43c4-a1c6-875b9080ac03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:01bdca0f-e7ae-43c4-a1c6-875b9080ac03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b0856a7-de75-4005-8fb9-f8baa8ca8547" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11103" + ], + "x-ms-request-id": [ + "96a95422-69a4-4b64-a6d4-84f8a37490b4" + ], + "x-ms-correlation-request-id": [ + "96a95422-69a4-4b64-a6d4-84f8a37490b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:96a95422-69a4-4b64-a6d4-84f8a37490b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e446c15-b582-405d-8818-402f1e89f476" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11102" + ], + "x-ms-request-id": [ + "b424a3ad-ceec-45e4-810e-4f49bfa80ece" + ], + "x-ms-correlation-request-id": [ + "b424a3ad-ceec-45e4-810e-4f49bfa80ece" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:b424a3ad-ceec-45e4-810e-4f49bfa80ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ece623e-b4c3-4eef-a506-f0e32e3b0729" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11101" + ], + "x-ms-request-id": [ + "2aa96e6a-1309-4874-b579-71180ec98aec" + ], + "x-ms-correlation-request-id": [ + "2aa96e6a-1309-4874-b579-71180ec98aec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:2aa96e6a-1309-4874-b579-71180ec98aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5614077b-aafc-4ea3-ae6a-83aaa390eb3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11100" + ], + "x-ms-request-id": [ + "0d21c31a-ba22-419a-b1f7-78638ad761ae" + ], + "x-ms-correlation-request-id": [ + "0d21c31a-ba22-419a-b1f7-78638ad761ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:0d21c31a-ba22-419a-b1f7-78638ad761ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a17a3eeb-27d0-44ce-bb80-124f5a67f5ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11099" + ], + "x-ms-request-id": [ + "419e14da-c545-43ca-8c47-1cbdafbdb0d4" + ], + "x-ms-correlation-request-id": [ + "419e14da-c545-43ca-8c47-1cbdafbdb0d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020916Z:419e14da-c545-43ca-8c47-1cbdafbdb0d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f46429c8-741d-4646-927d-e9090efc54f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11098" + ], + "x-ms-request-id": [ + "c8295fe4-1c96-4b5f-9901-deb349c50209" + ], + "x-ms-correlation-request-id": [ + "c8295fe4-1c96-4b5f-9901-deb349c50209" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020917Z:c8295fe4-1c96-4b5f-9901-deb349c50209" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c430b06-4281-45de-81e7-f2c50acc8fcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11097" + ], + "x-ms-request-id": [ + "193c31f9-d63e-4ca6-af45-ddc78495a32f" + ], + "x-ms-correlation-request-id": [ + "193c31f9-d63e-4ca6-af45-ddc78495a32f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020917Z:193c31f9-d63e-4ca6-af45-ddc78495a32f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aba047f5-97d7-48b8-a53c-80b602686e09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11096" + ], + "x-ms-request-id": [ + "691dd096-83ce-436f-bf8a-415ba7e1ca4d" + ], + "x-ms-correlation-request-id": [ + "691dd096-83ce-436f-bf8a-415ba7e1ca4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020917Z:691dd096-83ce-436f-bf8a-415ba7e1ca4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45e41349-f24a-40bd-a8c4-2f560bed43c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11095" + ], + "x-ms-request-id": [ + "c37578c0-ea4a-49d3-8c77-90e040fd14f9" + ], + "x-ms-correlation-request-id": [ + "c37578c0-ea4a-49d3-8c77-90e040fd14f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020917Z:c37578c0-ea4a-49d3-8c77-90e040fd14f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "826c8c22-96fa-462a-b36c-6a731e517cc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11094" + ], + "x-ms-request-id": [ + "967315df-e42e-4921-a677-d2f0acfa6991" + ], + "x-ms-correlation-request-id": [ + "967315df-e42e-4921-a677-d2f0acfa6991" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020917Z:967315df-e42e-4921-a677-d2f0acfa6991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dc571fa-035b-4ff1-bb2f-4e9b6f694a37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11093" + ], + "x-ms-request-id": [ + "fbe62966-ba66-48f3-8aea-6e1daeeb8860" + ], + "x-ms-correlation-request-id": [ + "fbe62966-ba66-48f3-8aea-6e1daeeb8860" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:fbe62966-ba66-48f3-8aea-6e1daeeb8860" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e4d0341-8bf9-42d7-846d-93fa100129a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11092" + ], + "x-ms-request-id": [ + "855e6ed8-7990-4bc5-a6e4-b2466d2bef74" + ], + "x-ms-correlation-request-id": [ + "855e6ed8-7990-4bc5-a6e4-b2466d2bef74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:855e6ed8-7990-4bc5-a6e4-b2466d2bef74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fa4e655-b94d-4ea7-a766-7e6ab8736e64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11091" + ], + "x-ms-request-id": [ + "7b34fd45-89e0-4cf7-8d11-5d18a9c0a8dd" + ], + "x-ms-correlation-request-id": [ + "7b34fd45-89e0-4cf7-8d11-5d18a9c0a8dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:7b34fd45-89e0-4cf7-8d11-5d18a9c0a8dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3939ea40-8186-4796-a5ff-32128411a0ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11090" + ], + "x-ms-request-id": [ + "14f673f8-fa4b-4db1-bc78-5a935bb27aad" + ], + "x-ms-correlation-request-id": [ + "14f673f8-fa4b-4db1-bc78-5a935bb27aad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:14f673f8-fa4b-4db1-bc78-5a935bb27aad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac5ae5d8-2aed-4882-884c-bc6e84ec4637" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11089" + ], + "x-ms-request-id": [ + "66bdd3f5-6ee2-460f-85a6-b6db4e4f28c5" + ], + "x-ms-correlation-request-id": [ + "66bdd3f5-6ee2-460f-85a6-b6db4e4f28c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:66bdd3f5-6ee2-460f-85a6-b6db4e4f28c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcc3bb71-1e69-42bb-a10d-92e2e62d2f24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11088" + ], + "x-ms-request-id": [ + "57821a29-665a-453b-b8c2-be370aff41ae" + ], + "x-ms-correlation-request-id": [ + "57821a29-665a-453b-b8c2-be370aff41ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:57821a29-665a-453b-b8c2-be370aff41ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82550cd6-0a91-4f70-81e9-4ce158851448" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11087" + ], + "x-ms-request-id": [ + "b8c117b3-4411-4130-a418-0da16c88c631" + ], + "x-ms-correlation-request-id": [ + "b8c117b3-4411-4130-a418-0da16c88c631" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020918Z:b8c117b3-4411-4130-a418-0da16c88c631" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fce8759c-3855-4781-926f-18624e69af54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11086" + ], + "x-ms-request-id": [ + "7248f0ae-a992-48f2-ad27-0495fc45cc9c" + ], + "x-ms-correlation-request-id": [ + "7248f0ae-a992-48f2-ad27-0495fc45cc9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:7248f0ae-a992-48f2-ad27-0495fc45cc9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4992b132-78cf-4da2-84d3-96056b371695" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11085" + ], + "x-ms-request-id": [ + "e4be44d5-068f-47e3-bfdc-0a6ebed9f1bf" + ], + "x-ms-correlation-request-id": [ + "e4be44d5-068f-47e3-bfdc-0a6ebed9f1bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:e4be44d5-068f-47e3-bfdc-0a6ebed9f1bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcfab3e5-34c9-4780-b730-48114b39fecb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11084" + ], + "x-ms-request-id": [ + "cabf0b01-f9b5-44f6-9a7f-665b3f827495" + ], + "x-ms-correlation-request-id": [ + "cabf0b01-f9b5-44f6-9a7f-665b3f827495" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:cabf0b01-f9b5-44f6-9a7f-665b3f827495" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05446c53-30c3-4a15-b995-4c0253c0b0c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11083" + ], + "x-ms-request-id": [ + "9b638a81-5ce0-4f55-aa07-2fbb4811a1bc" + ], + "x-ms-correlation-request-id": [ + "9b638a81-5ce0-4f55-aa07-2fbb4811a1bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:9b638a81-5ce0-4f55-aa07-2fbb4811a1bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aec6098e-58ad-448b-a74e-3b3d4eeb3a60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11082" + ], + "x-ms-request-id": [ + "c6ff1096-8720-482e-9b06-4f30017190f7" + ], + "x-ms-correlation-request-id": [ + "c6ff1096-8720-482e-9b06-4f30017190f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:c6ff1096-8720-482e-9b06-4f30017190f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4dd6eee5-4433-44f5-aa04-e11ebedf2c76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11081" + ], + "x-ms-request-id": [ + "448b6519-5a28-4252-ae9a-cde4b7f4d892" + ], + "x-ms-correlation-request-id": [ + "448b6519-5a28-4252-ae9a-cde4b7f4d892" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020919Z:448b6519-5a28-4252-ae9a-cde4b7f4d892" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1cfb2bc-a0ef-464d-88a3-e2512ac79f24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11080" + ], + "x-ms-request-id": [ + "00f18402-f3c0-41e5-8842-15f2338d07ac" + ], + "x-ms-correlation-request-id": [ + "00f18402-f3c0-41e5-8842-15f2338d07ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020920Z:00f18402-f3c0-41e5-8842-15f2338d07ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14acf4a8-db39-46b0-a2db-0015a25ddc8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11079" + ], + "x-ms-request-id": [ + "a58786a6-0e86-4f8d-9563-a8c9be4d7821" + ], + "x-ms-correlation-request-id": [ + "a58786a6-0e86-4f8d-9563-a8c9be4d7821" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020920Z:a58786a6-0e86-4f8d-9563-a8c9be4d7821" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "072f7a09-50fc-4660-9a9b-065deeb76416" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11078" + ], + "x-ms-request-id": [ + "81562d58-43ed-40a1-8894-a99f8a3dd5ef" + ], + "x-ms-correlation-request-id": [ + "81562d58-43ed-40a1-8894-a99f8a3dd5ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020920Z:81562d58-43ed-40a1-8894-a99f8a3dd5ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25f5d31c-d39a-49d4-aa9f-26557aab3c4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11077" + ], + "x-ms-request-id": [ + "e9c40dc5-34ce-4a10-b89b-b50ca8d1e321" + ], + "x-ms-correlation-request-id": [ + "e9c40dc5-34ce-4a10-b89b-b50ca8d1e321" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020920Z:e9c40dc5-34ce-4a10-b89b-b50ca8d1e321" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "221d73ca-0fc2-4e16-9a5f-573a8ca4ad73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11076" + ], + "x-ms-request-id": [ + "2af9c2c8-eb66-4674-9c93-eab501691923" + ], + "x-ms-correlation-request-id": [ + "2af9c2c8-eb66-4674-9c93-eab501691923" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020920Z:2af9c2c8-eb66-4674-9c93-eab501691923" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b55ab5c0-46de-4f13-a690-1b17c34d748a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11075" + ], + "x-ms-request-id": [ + "f046593d-cb15-464a-b9f9-11c98ba88654" + ], + "x-ms-correlation-request-id": [ + "f046593d-cb15-464a-b9f9-11c98ba88654" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020921Z:f046593d-cb15-464a-b9f9-11c98ba88654" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6f374c8-0303-404e-9066-3879e8203b22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11074" + ], + "x-ms-request-id": [ + "ff2ad0fd-4871-4a0e-a608-0ac8d345c161" + ], + "x-ms-correlation-request-id": [ + "ff2ad0fd-4871-4a0e-a608-0ac8d345c161" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020921Z:ff2ad0fd-4871-4a0e-a608-0ac8d345c161" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe6c027-9095-4d84-87fd-88b4dc7bef44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11073" + ], + "x-ms-request-id": [ + "e603de01-3c5f-4db1-8787-c6ddfcef8e8e" + ], + "x-ms-correlation-request-id": [ + "e603de01-3c5f-4db1-8787-c6ddfcef8e8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020921Z:e603de01-3c5f-4db1-8787-c6ddfcef8e8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b9b03d6-060d-46ad-967c-15d59ab3c58f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11072" + ], + "x-ms-request-id": [ + "2657804c-1585-4fca-bfce-c13225dc080b" + ], + "x-ms-correlation-request-id": [ + "2657804c-1585-4fca-bfce-c13225dc080b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020921Z:2657804c-1585-4fca-bfce-c13225dc080b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6b0c59b-4cbb-4c77-8c61-64b7061058d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11071" + ], + "x-ms-request-id": [ + "49334818-079c-4d76-ae3d-d162f39e2488" + ], + "x-ms-correlation-request-id": [ + "49334818-079c-4d76-ae3d-d162f39e2488" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020921Z:49334818-079c-4d76-ae3d-d162f39e2488" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "305c7e78-0b35-43fb-88b3-e68b71dd7f45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11070" + ], + "x-ms-request-id": [ + "aae39995-f69f-4a25-89d2-5a5bb159529d" + ], + "x-ms-correlation-request-id": [ + "aae39995-f69f-4a25-89d2-5a5bb159529d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:aae39995-f69f-4a25-89d2-5a5bb159529d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1a36c2a-1bbb-4e62-824c-197278c1e159" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11069" + ], + "x-ms-request-id": [ + "6c7516d8-b66f-41c8-8a5f-42b10935baad" + ], + "x-ms-correlation-request-id": [ + "6c7516d8-b66f-41c8-8a5f-42b10935baad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:6c7516d8-b66f-41c8-8a5f-42b10935baad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7d376f8-ca2b-4979-b1c8-5b257d89abd4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11068" + ], + "x-ms-request-id": [ + "b141b6b6-28b6-41c1-a9c7-718c2e70ee69" + ], + "x-ms-correlation-request-id": [ + "b141b6b6-28b6-41c1-a9c7-718c2e70ee69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:b141b6b6-28b6-41c1-a9c7-718c2e70ee69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdf6ff2c-d0b0-41f0-80a9-b992320a0aa4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11067" + ], + "x-ms-request-id": [ + "d00c4ffe-f4fd-4608-9c78-a48835f6e220" + ], + "x-ms-correlation-request-id": [ + "d00c4ffe-f4fd-4608-9c78-a48835f6e220" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:d00c4ffe-f4fd-4608-9c78-a48835f6e220" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "529145ba-ca24-480b-a56d-f907aa17f2f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11066" + ], + "x-ms-request-id": [ + "aa8f2b72-db50-48bb-b4ba-c2ebc2b4b8a4" + ], + "x-ms-correlation-request-id": [ + "aa8f2b72-db50-48bb-b4ba-c2ebc2b4b8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:aa8f2b72-db50-48bb-b4ba-c2ebc2b4b8a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "767f1f6a-b53d-4172-b02c-b82c62bb1e88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11065" + ], + "x-ms-request-id": [ + "1c80b577-4cf7-43e7-9550-0ef8e08c67fa" + ], + "x-ms-correlation-request-id": [ + "1c80b577-4cf7-43e7-9550-0ef8e08c67fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:1c80b577-4cf7-43e7-9550-0ef8e08c67fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fad8f3b5-88e3-4e13-b131-467d184178a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11064" + ], + "x-ms-request-id": [ + "ede619a6-c119-418e-81fa-b33922b4fdf4" + ], + "x-ms-correlation-request-id": [ + "ede619a6-c119-418e-81fa-b33922b4fdf4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020922Z:ede619a6-c119-418e-81fa-b33922b4fdf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "982f3ea5-5247-4b93-8316-5c2ecdd12ce2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11063" + ], + "x-ms-request-id": [ + "8fa9c826-b65e-4f22-b216-3f6a7ac8e8e1" + ], + "x-ms-correlation-request-id": [ + "8fa9c826-b65e-4f22-b216-3f6a7ac8e8e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020923Z:8fa9c826-b65e-4f22-b216-3f6a7ac8e8e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb973abb-f6e0-46d6-86a6-ff834abf1032" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11062" + ], + "x-ms-request-id": [ + "e2e4ec45-0f7f-444f-843a-5334fb15383e" + ], + "x-ms-correlation-request-id": [ + "e2e4ec45-0f7f-444f-843a-5334fb15383e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020923Z:e2e4ec45-0f7f-444f-843a-5334fb15383e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd9271ca-d7b6-4a12-86c6-86a234ce650f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11061" + ], + "x-ms-request-id": [ + "7abdb098-4dae-4164-b65d-bbf4d69cca62" + ], + "x-ms-correlation-request-id": [ + "7abdb098-4dae-4164-b65d-bbf4d69cca62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020923Z:7abdb098-4dae-4164-b65d-bbf4d69cca62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51a3679a-b2e5-42eb-9ac1-53b32b1943ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11060" + ], + "x-ms-request-id": [ + "5108cef5-800a-46f7-bb0e-d4508f651fbe" + ], + "x-ms-correlation-request-id": [ + "5108cef5-800a-46f7-bb0e-d4508f651fbe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020923Z:5108cef5-800a-46f7-bb0e-d4508f651fbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "093a09a7-8b67-4740-988e-fc5fa62feaee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11059" + ], + "x-ms-request-id": [ + "ad115d03-6b29-44a2-a0d5-ed2b90268fe8" + ], + "x-ms-correlation-request-id": [ + "ad115d03-6b29-44a2-a0d5-ed2b90268fe8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020923Z:ad115d03-6b29-44a2-a0d5-ed2b90268fe8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8be02088-fb33-4cd4-815f-b4f983619284" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11058" + ], + "x-ms-request-id": [ + "7f0ff29b-3527-4431-ac77-53a9fca3eb72" + ], + "x-ms-correlation-request-id": [ + "7f0ff29b-3527-4431-ac77-53a9fca3eb72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:7f0ff29b-3527-4431-ac77-53a9fca3eb72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bac58da9-c6a9-484b-a258-e1dbfeb8adad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11057" + ], + "x-ms-request-id": [ + "3eaab7b3-193f-4144-8f5c-1cb1a7608fc6" + ], + "x-ms-correlation-request-id": [ + "3eaab7b3-193f-4144-8f5c-1cb1a7608fc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:3eaab7b3-193f-4144-8f5c-1cb1a7608fc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c17c5abe-1846-4687-bfa4-d9fcda16e817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11056" + ], + "x-ms-request-id": [ + "ecf1302a-1782-4c38-8a2a-32009ae55b8a" + ], + "x-ms-correlation-request-id": [ + "ecf1302a-1782-4c38-8a2a-32009ae55b8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:ecf1302a-1782-4c38-8a2a-32009ae55b8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65334332-8f82-43b1-9144-3c34eba8dce4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11055" + ], + "x-ms-request-id": [ + "d5167ca3-de77-4b03-b5c1-22b914b9eadb" + ], + "x-ms-correlation-request-id": [ + "d5167ca3-de77-4b03-b5c1-22b914b9eadb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:d5167ca3-de77-4b03-b5c1-22b914b9eadb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e033e6b0-8580-492f-8110-0a5cdbf82927" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11054" + ], + "x-ms-request-id": [ + "9d3aa761-76da-4f5d-9dff-1d2290832f7a" + ], + "x-ms-correlation-request-id": [ + "9d3aa761-76da-4f5d-9dff-1d2290832f7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:9d3aa761-76da-4f5d-9dff-1d2290832f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20a3d534-5503-41d4-b848-1a1c6e96cf3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11053" + ], + "x-ms-request-id": [ + "2126e66e-a291-45ec-84ac-e74379eafcaa" + ], + "x-ms-correlation-request-id": [ + "2126e66e-a291-45ec-84ac-e74379eafcaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020924Z:2126e66e-a291-45ec-84ac-e74379eafcaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fc1ce3c-dab5-402e-8b8c-2af93148c9a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11052" + ], + "x-ms-request-id": [ + "0cbc59f9-4fb2-48fd-853a-1583b9c077c6" + ], + "x-ms-correlation-request-id": [ + "0cbc59f9-4fb2-48fd-853a-1583b9c077c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:0cbc59f9-4fb2-48fd-853a-1583b9c077c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d276c4b-266c-4c07-a285-1b4053bdc17c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11051" + ], + "x-ms-request-id": [ + "10c47dea-453e-4fe6-a1d6-e3e23601cbc9" + ], + "x-ms-correlation-request-id": [ + "10c47dea-453e-4fe6-a1d6-e3e23601cbc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:10c47dea-453e-4fe6-a1d6-e3e23601cbc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31062afd-bd37-4554-adaf-5725fa9b9bec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11050" + ], + "x-ms-request-id": [ + "9f1333b9-6f28-4464-8f8b-48ceb5fdc97a" + ], + "x-ms-correlation-request-id": [ + "9f1333b9-6f28-4464-8f8b-48ceb5fdc97a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:9f1333b9-6f28-4464-8f8b-48ceb5fdc97a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a061bf9-1447-4d2b-80d4-e47d06e5b18c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11049" + ], + "x-ms-request-id": [ + "c3526ad8-5854-405a-b7d0-a30613f6380b" + ], + "x-ms-correlation-request-id": [ + "c3526ad8-5854-405a-b7d0-a30613f6380b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:c3526ad8-5854-405a-b7d0-a30613f6380b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7a43faf-5f55-472c-be02-8d4506fe7659" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11048" + ], + "x-ms-request-id": [ + "04c76d4c-3f4a-416b-ba2f-aed8e2c42bcd" + ], + "x-ms-correlation-request-id": [ + "04c76d4c-3f4a-416b-ba2f-aed8e2c42bcd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:04c76d4c-3f4a-416b-ba2f-aed8e2c42bcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "506a7b1d-ff6d-44ad-9267-39be16086160" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11047" + ], + "x-ms-request-id": [ + "ff59869e-1f2c-4ca6-9034-b23bc40701a9" + ], + "x-ms-correlation-request-id": [ + "ff59869e-1f2c-4ca6-9034-b23bc40701a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020925Z:ff59869e-1f2c-4ca6-9034-b23bc40701a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7400127a-c45e-4c38-952d-08fb779ee654" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11046" + ], + "x-ms-request-id": [ + "33cc8f86-9001-42ee-a945-dbbeea96c697" + ], + "x-ms-correlation-request-id": [ + "33cc8f86-9001-42ee-a945-dbbeea96c697" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:33cc8f86-9001-42ee-a945-dbbeea96c697" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "423abc60-5d6e-478c-9dec-44af0b3811a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11045" + ], + "x-ms-request-id": [ + "de3dba45-4b12-411b-a00f-d435d0f3d799" + ], + "x-ms-correlation-request-id": [ + "de3dba45-4b12-411b-a00f-d435d0f3d799" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:de3dba45-4b12-411b-a00f-d435d0f3d799" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27155fbd-3e50-4afd-b09e-0b1be645bbd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11044" + ], + "x-ms-request-id": [ + "3db187e1-84dc-4e60-9e38-12ebcbae85d4" + ], + "x-ms-correlation-request-id": [ + "3db187e1-84dc-4e60-9e38-12ebcbae85d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:3db187e1-84dc-4e60-9e38-12ebcbae85d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1c5795-88a3-41b1-a700-3e596e47e81e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11043" + ], + "x-ms-request-id": [ + "fd5cd68a-8c29-4164-81e9-61bb309488dc" + ], + "x-ms-correlation-request-id": [ + "fd5cd68a-8c29-4164-81e9-61bb309488dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:fd5cd68a-8c29-4164-81e9-61bb309488dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e378684d-ee9d-49b4-b16c-83bf2a91b40b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11042" + ], + "x-ms-request-id": [ + "25e84bb6-7b49-4c6b-8d71-9c75733704c5" + ], + "x-ms-correlation-request-id": [ + "25e84bb6-7b49-4c6b-8d71-9c75733704c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:25e84bb6-7b49-4c6b-8d71-9c75733704c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "430ce410-0ed2-4cbf-8fc1-815a61c05028" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11041" + ], + "x-ms-request-id": [ + "79aa6cc1-8e0e-4eca-a0f4-fdbbaefb737e" + ], + "x-ms-correlation-request-id": [ + "79aa6cc1-8e0e-4eca-a0f4-fdbbaefb737e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020926Z:79aa6cc1-8e0e-4eca-a0f4-fdbbaefb737e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf968191-ab8a-4681-9d1e-09e970316b68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11040" + ], + "x-ms-request-id": [ + "f4f359c6-e21d-42aa-ab09-c25f30afb814" + ], + "x-ms-correlation-request-id": [ + "f4f359c6-e21d-42aa-ab09-c25f30afb814" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:f4f359c6-e21d-42aa-ab09-c25f30afb814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af001d1e-5792-4507-afd6-f76f29fe4bc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11039" + ], + "x-ms-request-id": [ + "8746136a-2536-43c5-bc7c-9ae2935b00a6" + ], + "x-ms-correlation-request-id": [ + "8746136a-2536-43c5-bc7c-9ae2935b00a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:8746136a-2536-43c5-bc7c-9ae2935b00a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05134564-e955-41c0-8119-5f8c66381dfd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11038" + ], + "x-ms-request-id": [ + "ef28825e-fc60-4190-980d-2098fadb1a94" + ], + "x-ms-correlation-request-id": [ + "ef28825e-fc60-4190-980d-2098fadb1a94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:ef28825e-fc60-4190-980d-2098fadb1a94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc3aba62-f1e5-4881-86b7-25d23d0ca09d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11037" + ], + "x-ms-request-id": [ + "e06ea71c-10dd-4589-9750-b4ac511636eb" + ], + "x-ms-correlation-request-id": [ + "e06ea71c-10dd-4589-9750-b4ac511636eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:e06ea71c-10dd-4589-9750-b4ac511636eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40578bec-d55d-495d-8c78-41a28c15233a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11036" + ], + "x-ms-request-id": [ + "fbae1102-311c-48dc-8a8e-5a35c7aa4c82" + ], + "x-ms-correlation-request-id": [ + "fbae1102-311c-48dc-8a8e-5a35c7aa4c82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:fbae1102-311c-48dc-8a8e-5a35c7aa4c82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "980f7216-4d4a-4a16-850c-b683fa6524e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11035" + ], + "x-ms-request-id": [ + "72bfc4a2-1007-4c94-8814-e109f6825319" + ], + "x-ms-correlation-request-id": [ + "72bfc4a2-1007-4c94-8814-e109f6825319" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020927Z:72bfc4a2-1007-4c94-8814-e109f6825319" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ed2611-0a02-42f4-b815-3c98de522921" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11034" + ], + "x-ms-request-id": [ + "15233a0f-b58a-493f-a5f6-dc40f3a2c1be" + ], + "x-ms-correlation-request-id": [ + "15233a0f-b58a-493f-a5f6-dc40f3a2c1be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:15233a0f-b58a-493f-a5f6-dc40f3a2c1be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b6a3527-29fa-4ea8-bb38-4dd2a97e55e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11033" + ], + "x-ms-request-id": [ + "44584aa8-ba8b-4100-8893-c3e6a61edee8" + ], + "x-ms-correlation-request-id": [ + "44584aa8-ba8b-4100-8893-c3e6a61edee8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:44584aa8-ba8b-4100-8893-c3e6a61edee8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03b28f3b-4f4e-41a1-b1dd-8da13979fdc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11032" + ], + "x-ms-request-id": [ + "17670048-1be1-424e-ba86-7360835d4f99" + ], + "x-ms-correlation-request-id": [ + "17670048-1be1-424e-ba86-7360835d4f99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:17670048-1be1-424e-ba86-7360835d4f99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f29e981c-62f1-4d2b-a542-0d94e7d44f49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11031" + ], + "x-ms-request-id": [ + "ce3d316c-46bc-425d-a2f6-96b468f7878c" + ], + "x-ms-correlation-request-id": [ + "ce3d316c-46bc-425d-a2f6-96b468f7878c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:ce3d316c-46bc-425d-a2f6-96b468f7878c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3311b6b-2ac9-47d7-aa6b-f0f9d530d8c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11030" + ], + "x-ms-request-id": [ + "866f5afe-11bb-470a-8aae-cb826895ff1a" + ], + "x-ms-correlation-request-id": [ + "866f5afe-11bb-470a-8aae-cb826895ff1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:866f5afe-11bb-470a-8aae-cb826895ff1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a56f543-a697-4a4a-8c19-043a5cd044f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11029" + ], + "x-ms-request-id": [ + "133ff0dd-b7a0-4ee1-9133-b9e6adb1a85e" + ], + "x-ms-correlation-request-id": [ + "133ff0dd-b7a0-4ee1-9133-b9e6adb1a85e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020928Z:133ff0dd-b7a0-4ee1-9133-b9e6adb1a85e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a295af1b-da20-4a15-85c6-061d239c7a32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11028" + ], + "x-ms-request-id": [ + "9c71b226-d8f3-4907-8377-afeda40a78a4" + ], + "x-ms-correlation-request-id": [ + "9c71b226-d8f3-4907-8377-afeda40a78a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020929Z:9c71b226-d8f3-4907-8377-afeda40a78a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72e1b45c-646f-4ed0-b08d-72dc39b4863f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11027" + ], + "x-ms-request-id": [ + "80859562-fdb4-49fa-92ed-0b276e8070c5" + ], + "x-ms-correlation-request-id": [ + "80859562-fdb4-49fa-92ed-0b276e8070c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020929Z:80859562-fdb4-49fa-92ed-0b276e8070c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0babc5a8-0a50-4a65-9617-117881fd892e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11026" + ], + "x-ms-request-id": [ + "e9c351bf-a2e1-4467-8606-8617b67fc3df" + ], + "x-ms-correlation-request-id": [ + "e9c351bf-a2e1-4467-8606-8617b67fc3df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020929Z:e9c351bf-a2e1-4467-8606-8617b67fc3df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b18173c-c07c-49c1-a02b-575ae2452506" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11025" + ], + "x-ms-request-id": [ + "e88e8721-eab4-407a-9b64-e9bae4f71dd9" + ], + "x-ms-correlation-request-id": [ + "e88e8721-eab4-407a-9b64-e9bae4f71dd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020929Z:e88e8721-eab4-407a-9b64-e9bae4f71dd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37e25dcf-5d16-4d4a-a623-80c0bf7d67d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11024" + ], + "x-ms-request-id": [ + "727f6dfa-c1a3-40f5-9c0b-64e850a4df9a" + ], + "x-ms-correlation-request-id": [ + "727f6dfa-c1a3-40f5-9c0b-64e850a4df9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020929Z:727f6dfa-c1a3-40f5-9c0b-64e850a4df9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "002db310-2a4d-4183-8b25-068d02d7ae3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11023" + ], + "x-ms-request-id": [ + "dbf4f323-d170-4ecd-9168-c4685a72692d" + ], + "x-ms-correlation-request-id": [ + "dbf4f323-d170-4ecd-9168-c4685a72692d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:dbf4f323-d170-4ecd-9168-c4685a72692d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f52cd159-cb2b-465c-a39e-586dca7a9007" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11022" + ], + "x-ms-request-id": [ + "d8262e2b-332a-4e27-ada8-944213a0113d" + ], + "x-ms-correlation-request-id": [ + "d8262e2b-332a-4e27-ada8-944213a0113d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:d8262e2b-332a-4e27-ada8-944213a0113d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9dd34b5-0d6e-4076-9392-ddb5dddd618c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11021" + ], + "x-ms-request-id": [ + "418990d5-f4ce-44e5-9cb8-6f49464f49dd" + ], + "x-ms-correlation-request-id": [ + "418990d5-f4ce-44e5-9cb8-6f49464f49dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:418990d5-f4ce-44e5-9cb8-6f49464f49dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ca274ff-58ed-4ab0-b27c-8541ef896652" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11020" + ], + "x-ms-request-id": [ + "8185b5d5-f976-4aa0-bb2d-9c867f6106ec" + ], + "x-ms-correlation-request-id": [ + "8185b5d5-f976-4aa0-bb2d-9c867f6106ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:8185b5d5-f976-4aa0-bb2d-9c867f6106ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c7ecb5f-9e29-4a6a-9a37-7e8f1bca61fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11019" + ], + "x-ms-request-id": [ + "fa25ec8e-8a48-4a53-b66a-517ff2f5e6aa" + ], + "x-ms-correlation-request-id": [ + "fa25ec8e-8a48-4a53-b66a-517ff2f5e6aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:fa25ec8e-8a48-4a53-b66a-517ff2f5e6aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "064391ae-322f-4149-bc1f-e1b9db444c1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11018" + ], + "x-ms-request-id": [ + "fbeef608-b372-4d77-b2e5-5edca1c619f0" + ], + "x-ms-correlation-request-id": [ + "fbeef608-b372-4d77-b2e5-5edca1c619f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020930Z:fbeef608-b372-4d77-b2e5-5edca1c619f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0085067a-cc3c-4e50-9802-dfbbe72ddb06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11017" + ], + "x-ms-request-id": [ + "8cedb2cc-1e4a-4f9e-97df-aa05c900d044" + ], + "x-ms-correlation-request-id": [ + "8cedb2cc-1e4a-4f9e-97df-aa05c900d044" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:8cedb2cc-1e4a-4f9e-97df-aa05c900d044" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffe3ba7a-720c-49e6-973a-ee6e3ec90866" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11016" + ], + "x-ms-request-id": [ + "42055c11-1105-4696-bb6c-a152709d50b4" + ], + "x-ms-correlation-request-id": [ + "42055c11-1105-4696-bb6c-a152709d50b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:42055c11-1105-4696-bb6c-a152709d50b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0230925c-d7c5-4488-9596-4e2acafa3597" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11015" + ], + "x-ms-request-id": [ + "a94c3a40-9065-40e9-ab57-04a5dfb6ece0" + ], + "x-ms-correlation-request-id": [ + "a94c3a40-9065-40e9-ab57-04a5dfb6ece0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:a94c3a40-9065-40e9-ab57-04a5dfb6ece0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84cfd522-2209-4bab-9bd2-d8a04f065e4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11014" + ], + "x-ms-request-id": [ + "1f6ac03e-0a18-4c0f-b79d-3fb0d87eecd8" + ], + "x-ms-correlation-request-id": [ + "1f6ac03e-0a18-4c0f-b79d-3fb0d87eecd8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:1f6ac03e-0a18-4c0f-b79d-3fb0d87eecd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d84d66f-9f2b-43e2-ac56-a175f7258606" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11013" + ], + "x-ms-request-id": [ + "a2bf183c-5a6a-4ab4-bea3-d5032342f143" + ], + "x-ms-correlation-request-id": [ + "a2bf183c-5a6a-4ab4-bea3-d5032342f143" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:a2bf183c-5a6a-4ab4-bea3-d5032342f143" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3367cb9e-18fc-4e9b-b3f3-fd857b5fe0d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11012" + ], + "x-ms-request-id": [ + "240fd832-ad9e-4ed2-aecc-80aa7c11ba70" + ], + "x-ms-correlation-request-id": [ + "240fd832-ad9e-4ed2-aecc-80aa7c11ba70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020931Z:240fd832-ad9e-4ed2-aecc-80aa7c11ba70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78068185-27f4-4620-9fe2-712db1cf69f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11011" + ], + "x-ms-request-id": [ + "b64d54d3-ef42-4674-a316-db057bfabd81" + ], + "x-ms-correlation-request-id": [ + "b64d54d3-ef42-4674-a316-db057bfabd81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:b64d54d3-ef42-4674-a316-db057bfabd81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "547765ac-e146-434e-96ee-318b147f0549" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11010" + ], + "x-ms-request-id": [ + "3669c380-79ea-4566-aee3-b4c8d4716bf2" + ], + "x-ms-correlation-request-id": [ + "3669c380-79ea-4566-aee3-b4c8d4716bf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:3669c380-79ea-4566-aee3-b4c8d4716bf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18915120-b0fe-4084-a8ec-da407a5bd99b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11009" + ], + "x-ms-request-id": [ + "0455f987-3762-415b-8e10-4b88325fbd42" + ], + "x-ms-correlation-request-id": [ + "0455f987-3762-415b-8e10-4b88325fbd42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:0455f987-3762-415b-8e10-4b88325fbd42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2662449f-88f5-41b8-ac68-d6af29601fa3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11008" + ], + "x-ms-request-id": [ + "501d4b5c-00b2-46b0-bc9e-6b3c8633303d" + ], + "x-ms-correlation-request-id": [ + "501d4b5c-00b2-46b0-bc9e-6b3c8633303d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:501d4b5c-00b2-46b0-bc9e-6b3c8633303d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc114b13-c602-4bc9-8b98-19aeb457d97f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11007" + ], + "x-ms-request-id": [ + "e35e6eff-6459-4731-8aaa-9459825bbd26" + ], + "x-ms-correlation-request-id": [ + "e35e6eff-6459-4731-8aaa-9459825bbd26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:e35e6eff-6459-4731-8aaa-9459825bbd26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34d1a133-71a8-4d4e-92d4-3d7c64f5c959" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11006" + ], + "x-ms-request-id": [ + "78501d3d-8a51-4390-84e2-7889d30966fc" + ], + "x-ms-correlation-request-id": [ + "78501d3d-8a51-4390-84e2-7889d30966fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020932Z:78501d3d-8a51-4390-84e2-7889d30966fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d0c25f-c2d2-4133-bac9-8c8e0d3e4b4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11005" + ], + "x-ms-request-id": [ + "5d1df85a-4363-44b3-afc0-4110f8aed664" + ], + "x-ms-correlation-request-id": [ + "5d1df85a-4363-44b3-afc0-4110f8aed664" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:5d1df85a-4363-44b3-afc0-4110f8aed664" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4723e99-786a-47e0-8a54-f8bf6fd9d1a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11004" + ], + "x-ms-request-id": [ + "142024fc-97d4-46c4-89a4-c306f68f8ad4" + ], + "x-ms-correlation-request-id": [ + "142024fc-97d4-46c4-89a4-c306f68f8ad4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:142024fc-97d4-46c4-89a4-c306f68f8ad4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70982f29-6029-477b-86c7-a8f82f91c00f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11003" + ], + "x-ms-request-id": [ + "ea8afb22-02a3-4964-a799-0d2911d34e8c" + ], + "x-ms-correlation-request-id": [ + "ea8afb22-02a3-4964-a799-0d2911d34e8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:ea8afb22-02a3-4964-a799-0d2911d34e8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f7efe80-acfd-423e-9cab-dee929d57b00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11002" + ], + "x-ms-request-id": [ + "77acea9e-9b40-4ec9-893d-59d51ff34030" + ], + "x-ms-correlation-request-id": [ + "77acea9e-9b40-4ec9-893d-59d51ff34030" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:77acea9e-9b40-4ec9-893d-59d51ff34030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be1951df-c580-4e7e-8612-b8013b4ccb2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11001" + ], + "x-ms-request-id": [ + "3e66caf2-67fe-4843-8061-6587ebb3c139" + ], + "x-ms-correlation-request-id": [ + "3e66caf2-67fe-4843-8061-6587ebb3c139" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:3e66caf2-67fe-4843-8061-6587ebb3c139" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f929903-df38-435e-b4ec-f8b03ead066d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11000" + ], + "x-ms-request-id": [ + "861b6c54-717f-4bc4-89af-29723e2e191c" + ], + "x-ms-correlation-request-id": [ + "861b6c54-717f-4bc4-89af-29723e2e191c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020933Z:861b6c54-717f-4bc4-89af-29723e2e191c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccee2420-5ae5-416f-8419-5cf44826bf34" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10999" + ], + "x-ms-request-id": [ + "f8c59926-c3fd-4909-be10-b3104b8e5ec4" + ], + "x-ms-correlation-request-id": [ + "f8c59926-c3fd-4909-be10-b3104b8e5ec4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:f8c59926-c3fd-4909-be10-b3104b8e5ec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af671826-9a03-45d8-8ad8-3dbc29f96893" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10998" + ], + "x-ms-request-id": [ + "8dc5dd9b-509f-4772-b09e-e0f64de717d8" + ], + "x-ms-correlation-request-id": [ + "8dc5dd9b-509f-4772-b09e-e0f64de717d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:8dc5dd9b-509f-4772-b09e-e0f64de717d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88fbe3d4-0d3e-4a3b-83d6-95b1474b14df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10997" + ], + "x-ms-request-id": [ + "18023355-f33b-40e9-9b1a-a63444893dd2" + ], + "x-ms-correlation-request-id": [ + "18023355-f33b-40e9-9b1a-a63444893dd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:18023355-f33b-40e9-9b1a-a63444893dd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e814ebf-07dc-4dd4-9df7-c0058473d06e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10996" + ], + "x-ms-request-id": [ + "992c288c-2d80-46f2-8fe4-9dca7ce3d7bd" + ], + "x-ms-correlation-request-id": [ + "992c288c-2d80-46f2-8fe4-9dca7ce3d7bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:992c288c-2d80-46f2-8fe4-9dca7ce3d7bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ec6969a-6b64-4a08-bba0-e0b75b8c8250" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10995" + ], + "x-ms-request-id": [ + "7a6a7041-0bf2-4caf-8185-d6e1a2cf6cdc" + ], + "x-ms-correlation-request-id": [ + "7a6a7041-0bf2-4caf-8185-d6e1a2cf6cdc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:7a6a7041-0bf2-4caf-8185-d6e1a2cf6cdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e37a57c-b010-43ae-915b-6e9ec803230e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10994" + ], + "x-ms-request-id": [ + "cdb00726-a3a4-47da-8501-e9ca93f16bb2" + ], + "x-ms-correlation-request-id": [ + "cdb00726-a3a4-47da-8501-e9ca93f16bb2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020934Z:cdb00726-a3a4-47da-8501-e9ca93f16bb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7f44ddc-596d-4a81-9a92-a1c1f49368c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10993" + ], + "x-ms-request-id": [ + "2ee83d50-3faa-4875-a373-6eff9511ed72" + ], + "x-ms-correlation-request-id": [ + "2ee83d50-3faa-4875-a373-6eff9511ed72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:2ee83d50-3faa-4875-a373-6eff9511ed72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ecf59b6-cc37-4643-8448-f03daf4f56e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10992" + ], + "x-ms-request-id": [ + "de1a3d9c-c249-490a-b7a8-eba9109bc801" + ], + "x-ms-correlation-request-id": [ + "de1a3d9c-c249-490a-b7a8-eba9109bc801" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:de1a3d9c-c249-490a-b7a8-eba9109bc801" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf07b3b8-33a0-4c55-8184-9f89cc031668" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10991" + ], + "x-ms-request-id": [ + "71c897fe-a239-4b8e-9396-1dca3d7e131c" + ], + "x-ms-correlation-request-id": [ + "71c897fe-a239-4b8e-9396-1dca3d7e131c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:71c897fe-a239-4b8e-9396-1dca3d7e131c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "153b8ecd-37b9-44b5-ae24-d50f5fd6c22d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10990" + ], + "x-ms-request-id": [ + "0a4e30c5-da75-4934-b4a9-d9090e68ca14" + ], + "x-ms-correlation-request-id": [ + "0a4e30c5-da75-4934-b4a9-d9090e68ca14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:0a4e30c5-da75-4934-b4a9-d9090e68ca14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "934f3e9d-e94c-4a32-b15f-d1b2ec8734d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10989" + ], + "x-ms-request-id": [ + "c080f264-b376-4257-9205-ea45635cac3d" + ], + "x-ms-correlation-request-id": [ + "c080f264-b376-4257-9205-ea45635cac3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:c080f264-b376-4257-9205-ea45635cac3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe0d167-8d9c-46fb-9443-86ec48576aa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10988" + ], + "x-ms-request-id": [ + "f11bd306-0ef6-409a-87e4-c3fcbce8595b" + ], + "x-ms-correlation-request-id": [ + "f11bd306-0ef6-409a-87e4-c3fcbce8595b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:f11bd306-0ef6-409a-87e4-c3fcbce8595b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "680224e7-89eb-485c-8e43-5f7d104a4da6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10987" + ], + "x-ms-request-id": [ + "b5b42e61-4a02-480d-b52f-d4f65a215173" + ], + "x-ms-correlation-request-id": [ + "b5b42e61-4a02-480d-b52f-d4f65a215173" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020935Z:b5b42e61-4a02-480d-b52f-d4f65a215173" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b70c153-5b07-423f-87d7-1dfe496568b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10986" + ], + "x-ms-request-id": [ + "354651b9-2b11-428c-a3d2-1fd7b5a22534" + ], + "x-ms-correlation-request-id": [ + "354651b9-2b11-428c-a3d2-1fd7b5a22534" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:354651b9-2b11-428c-a3d2-1fd7b5a22534" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a77ea9b-6fe3-401a-8007-265f225d593a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10985" + ], + "x-ms-request-id": [ + "99a0b044-7247-4b2f-8be6-922eb3fa6451" + ], + "x-ms-correlation-request-id": [ + "99a0b044-7247-4b2f-8be6-922eb3fa6451" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:99a0b044-7247-4b2f-8be6-922eb3fa6451" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53325090-6b08-44be-a482-a616c5dbb90d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10984" + ], + "x-ms-request-id": [ + "2da0a031-c281-407e-8447-b572ab4f64e1" + ], + "x-ms-correlation-request-id": [ + "2da0a031-c281-407e-8447-b572ab4f64e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:2da0a031-c281-407e-8447-b572ab4f64e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a336465-ab94-4be9-afa5-9e73427da044" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10983" + ], + "x-ms-request-id": [ + "473ed727-9fa2-4fbf-9d3c-419ea74ef480" + ], + "x-ms-correlation-request-id": [ + "473ed727-9fa2-4fbf-9d3c-419ea74ef480" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:473ed727-9fa2-4fbf-9d3c-419ea74ef480" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb781b70-f3db-4a2f-9503-24b6abc5deb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10982" + ], + "x-ms-request-id": [ + "b7bb60f9-db6f-42bf-a0de-91433c814016" + ], + "x-ms-correlation-request-id": [ + "b7bb60f9-db6f-42bf-a0de-91433c814016" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:b7bb60f9-db6f-42bf-a0de-91433c814016" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf1492b5-29f7-446b-989b-515f4928c9a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10981" + ], + "x-ms-request-id": [ + "24970cd7-a754-43b7-a74e-40e005a1881e" + ], + "x-ms-correlation-request-id": [ + "24970cd7-a754-43b7-a74e-40e005a1881e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020936Z:24970cd7-a754-43b7-a74e-40e005a1881e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa831c52-305c-4df6-a222-9f076a1e529c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10980" + ], + "x-ms-request-id": [ + "adde734a-caad-4cbc-8756-4a15f51dfd06" + ], + "x-ms-correlation-request-id": [ + "adde734a-caad-4cbc-8756-4a15f51dfd06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:adde734a-caad-4cbc-8756-4a15f51dfd06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d90ce795-3654-4733-879a-1bdf6161cfa8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10979" + ], + "x-ms-request-id": [ + "155c8894-1d8a-482e-9997-7857d9f9477c" + ], + "x-ms-correlation-request-id": [ + "155c8894-1d8a-482e-9997-7857d9f9477c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:155c8894-1d8a-482e-9997-7857d9f9477c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5dc3e798-0e6c-4cdf-88a6-99b7d7d869cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10978" + ], + "x-ms-request-id": [ + "41bdc6fd-4557-4baa-a162-83780cb632d1" + ], + "x-ms-correlation-request-id": [ + "41bdc6fd-4557-4baa-a162-83780cb632d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:41bdc6fd-4557-4baa-a162-83780cb632d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19b85cfb-b63f-4177-8ccd-d862d5a17f92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10977" + ], + "x-ms-request-id": [ + "00ea10b8-b55a-431a-a970-94a9e7836062" + ], + "x-ms-correlation-request-id": [ + "00ea10b8-b55a-431a-a970-94a9e7836062" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:00ea10b8-b55a-431a-a970-94a9e7836062" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3938d59a-c764-43e2-b675-6be69991356e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10976" + ], + "x-ms-request-id": [ + "91c4c52c-4744-4d3d-90a8-7ddcef217d3f" + ], + "x-ms-correlation-request-id": [ + "91c4c52c-4744-4d3d-90a8-7ddcef217d3f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:91c4c52c-4744-4d3d-90a8-7ddcef217d3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68857ca3-0e97-491d-adb0-6dbc558c3940" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10975" + ], + "x-ms-request-id": [ + "5e523d30-768b-46a9-a21b-622c16781a57" + ], + "x-ms-correlation-request-id": [ + "5e523d30-768b-46a9-a21b-622c16781a57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020937Z:5e523d30-768b-46a9-a21b-622c16781a57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8428d4e8-8c1a-49d4-9182-b71a7af82843" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10974" + ], + "x-ms-request-id": [ + "460c448e-2b65-4925-a03b-339e6c138940" + ], + "x-ms-correlation-request-id": [ + "460c448e-2b65-4925-a03b-339e6c138940" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020938Z:460c448e-2b65-4925-a03b-339e6c138940" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f78a18ce-5576-4e45-a723-379013130e55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10973" + ], + "x-ms-request-id": [ + "f2519b9f-056d-4f7a-8bdc-b47c3e87f186" + ], + "x-ms-correlation-request-id": [ + "f2519b9f-056d-4f7a-8bdc-b47c3e87f186" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020938Z:f2519b9f-056d-4f7a-8bdc-b47c3e87f186" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a27205f-068b-4f51-931a-5e841a538135" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10972" + ], + "x-ms-request-id": [ + "902157f5-a125-43fb-a05d-b0b9abde3718" + ], + "x-ms-correlation-request-id": [ + "902157f5-a125-43fb-a05d-b0b9abde3718" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020938Z:902157f5-a125-43fb-a05d-b0b9abde3718" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba00f89c-3a61-4e57-a155-3846830101d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10971" + ], + "x-ms-request-id": [ + "89e8409e-a0ee-45e9-8d09-bc8705911caf" + ], + "x-ms-correlation-request-id": [ + "89e8409e-a0ee-45e9-8d09-bc8705911caf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020938Z:89e8409e-a0ee-45e9-8d09-bc8705911caf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64390843-7ebf-4f5d-8e35-8edef0872819" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10970" + ], + "x-ms-request-id": [ + "059e9777-368b-4c89-905c-a252f4501f2e" + ], + "x-ms-correlation-request-id": [ + "059e9777-368b-4c89-905c-a252f4501f2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020938Z:059e9777-368b-4c89-905c-a252f4501f2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd3a64e0-797f-42c7-8fab-67a4699f5210" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10969" + ], + "x-ms-request-id": [ + "2fbadfde-00d7-471b-9b4b-230300598afa" + ], + "x-ms-correlation-request-id": [ + "2fbadfde-00d7-471b-9b4b-230300598afa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:2fbadfde-00d7-471b-9b4b-230300598afa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adb188ac-1db5-4c7d-a7e9-444416e34868" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10968" + ], + "x-ms-request-id": [ + "9a289d01-098b-4254-bd6e-2b2a471458e4" + ], + "x-ms-correlation-request-id": [ + "9a289d01-098b-4254-bd6e-2b2a471458e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:9a289d01-098b-4254-bd6e-2b2a471458e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad2e4125-e839-4c1e-abf9-f2dc035264ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10967" + ], + "x-ms-request-id": [ + "5e7dc69c-1b9d-452b-ad16-8b70a6bf416a" + ], + "x-ms-correlation-request-id": [ + "5e7dc69c-1b9d-452b-ad16-8b70a6bf416a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:5e7dc69c-1b9d-452b-ad16-8b70a6bf416a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd686d63-dd6f-4370-ab13-c9b2b66e9297" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10966" + ], + "x-ms-request-id": [ + "44ad8dbf-40a2-44ee-b979-165b7a93a38f" + ], + "x-ms-correlation-request-id": [ + "44ad8dbf-40a2-44ee-b979-165b7a93a38f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:44ad8dbf-40a2-44ee-b979-165b7a93a38f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "400923d5-760c-4e53-b984-ea9bf49cc189" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10965" + ], + "x-ms-request-id": [ + "5ad77c43-bf1a-4f65-81e4-3cf4424eb2d7" + ], + "x-ms-correlation-request-id": [ + "5ad77c43-bf1a-4f65-81e4-3cf4424eb2d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:5ad77c43-bf1a-4f65-81e4-3cf4424eb2d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17f74c3a-d1d4-419e-b0cb-c4c8366b9e5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10964" + ], + "x-ms-request-id": [ + "2d8e95e1-7985-4410-892c-0fd9fad6abb4" + ], + "x-ms-correlation-request-id": [ + "2d8e95e1-7985-4410-892c-0fd9fad6abb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020939Z:2d8e95e1-7985-4410-892c-0fd9fad6abb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c86ae3b3-0e0c-4bcb-9ac2-1891e614371f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10963" + ], + "x-ms-request-id": [ + "7af57c62-5149-4fc4-b75e-6f5b4a214d17" + ], + "x-ms-correlation-request-id": [ + "7af57c62-5149-4fc4-b75e-6f5b4a214d17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:7af57c62-5149-4fc4-b75e-6f5b4a214d17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d77f98e-c034-4e41-a692-d8ca6ec3b052" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10962" + ], + "x-ms-request-id": [ + "ed3d85c3-a1bb-40f9-bbec-82a3f77136b8" + ], + "x-ms-correlation-request-id": [ + "ed3d85c3-a1bb-40f9-bbec-82a3f77136b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:ed3d85c3-a1bb-40f9-bbec-82a3f77136b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72487445-7342-48ba-8643-f9632781fe5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10961" + ], + "x-ms-request-id": [ + "ea43dca7-13c8-4c7e-88b7-1fc2d46fc4bb" + ], + "x-ms-correlation-request-id": [ + "ea43dca7-13c8-4c7e-88b7-1fc2d46fc4bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:ea43dca7-13c8-4c7e-88b7-1fc2d46fc4bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8982363-7722-496c-ad56-491cd331170f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10960" + ], + "x-ms-request-id": [ + "1eb148ae-4e06-4361-a4be-01934c173463" + ], + "x-ms-correlation-request-id": [ + "1eb148ae-4e06-4361-a4be-01934c173463" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:1eb148ae-4e06-4361-a4be-01934c173463" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44b20fe8-b905-4fbf-a117-b7875ba1b3d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10959" + ], + "x-ms-request-id": [ + "d86aa701-4938-4f2d-9d2c-ad151b1214c9" + ], + "x-ms-correlation-request-id": [ + "d86aa701-4938-4f2d-9d2c-ad151b1214c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:d86aa701-4938-4f2d-9d2c-ad151b1214c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12a3f14e-afad-40dc-833d-7621bdc3a122" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10958" + ], + "x-ms-request-id": [ + "314f6854-a921-4ed0-abab-eeb5eecffbe6" + ], + "x-ms-correlation-request-id": [ + "314f6854-a921-4ed0-abab-eeb5eecffbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020940Z:314f6854-a921-4ed0-abab-eeb5eecffbe6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "148d50a6-d302-4427-9428-377bc9bb7d6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10957" + ], + "x-ms-request-id": [ + "7fbc01bf-98d1-4ca0-a7ea-7f179baac503" + ], + "x-ms-correlation-request-id": [ + "7fbc01bf-98d1-4ca0-a7ea-7f179baac503" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:7fbc01bf-98d1-4ca0-a7ea-7f179baac503" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20da6408-cafe-4ac5-ad38-d7932143b6d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10956" + ], + "x-ms-request-id": [ + "388cd0ee-8baa-451c-a3c4-ccbcfd3d484c" + ], + "x-ms-correlation-request-id": [ + "388cd0ee-8baa-451c-a3c4-ccbcfd3d484c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:388cd0ee-8baa-451c-a3c4-ccbcfd3d484c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55f68888-ce6b-4cb6-9b5e-1480a2090ff2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10955" + ], + "x-ms-request-id": [ + "d4436cae-89c5-4c8b-82ff-f912ba532a80" + ], + "x-ms-correlation-request-id": [ + "d4436cae-89c5-4c8b-82ff-f912ba532a80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:d4436cae-89c5-4c8b-82ff-f912ba532a80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d79fb731-7be1-46d9-a029-9573c0329b2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10954" + ], + "x-ms-request-id": [ + "8f8699a1-9dae-4e00-8bed-658c0f8b3fe4" + ], + "x-ms-correlation-request-id": [ + "8f8699a1-9dae-4e00-8bed-658c0f8b3fe4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:8f8699a1-9dae-4e00-8bed-658c0f8b3fe4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eba279c-4000-4015-a3a1-597865c4880b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10953" + ], + "x-ms-request-id": [ + "acf99780-df30-469d-87a6-72c0c53d9b89" + ], + "x-ms-correlation-request-id": [ + "acf99780-df30-469d-87a6-72c0c53d9b89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:acf99780-df30-469d-87a6-72c0c53d9b89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dbda69a-9ce7-4564-8d97-b43ad4083d35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10952" + ], + "x-ms-request-id": [ + "a44e0e17-ce91-4b0e-885d-509ce9e5bf48" + ], + "x-ms-correlation-request-id": [ + "a44e0e17-ce91-4b0e-885d-509ce9e5bf48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020941Z:a44e0e17-ce91-4b0e-885d-509ce9e5bf48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6097ae0f-3c59-45cb-86b3-931c8dba1e14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10951" + ], + "x-ms-request-id": [ + "4deb5a07-e69a-4174-9af1-afec0c531e37" + ], + "x-ms-correlation-request-id": [ + "4deb5a07-e69a-4174-9af1-afec0c531e37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:4deb5a07-e69a-4174-9af1-afec0c531e37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8104ffb-47aa-42a1-8d40-44d487a95a10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10950" + ], + "x-ms-request-id": [ + "c8e5a04d-c935-4ac2-9b66-979760deb7ba" + ], + "x-ms-correlation-request-id": [ + "c8e5a04d-c935-4ac2-9b66-979760deb7ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:c8e5a04d-c935-4ac2-9b66-979760deb7ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3c81696-563f-4b60-9f01-a65b5e2d05f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10949" + ], + "x-ms-request-id": [ + "6abf78cf-e6fa-41db-be74-6c0318fa11fa" + ], + "x-ms-correlation-request-id": [ + "6abf78cf-e6fa-41db-be74-6c0318fa11fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:6abf78cf-e6fa-41db-be74-6c0318fa11fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "610df80e-78cf-4d8f-bade-aef0ecda02cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10948" + ], + "x-ms-request-id": [ + "c4746525-ee48-48e7-a335-0ebba01d9e4b" + ], + "x-ms-correlation-request-id": [ + "c4746525-ee48-48e7-a335-0ebba01d9e4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:c4746525-ee48-48e7-a335-0ebba01d9e4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "256a86fd-95d0-41e5-ba32-48f13ffe26a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10947" + ], + "x-ms-request-id": [ + "cd2fdec4-7ef1-4220-af72-3d1e27d609c9" + ], + "x-ms-correlation-request-id": [ + "cd2fdec4-7ef1-4220-af72-3d1e27d609c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:cd2fdec4-7ef1-4220-af72-3d1e27d609c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d32cf1-3751-46b7-82c7-854ee2003879" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10946" + ], + "x-ms-request-id": [ + "0d330352-6992-4024-a8ed-573e4886ddc8" + ], + "x-ms-correlation-request-id": [ + "0d330352-6992-4024-a8ed-573e4886ddc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020942Z:0d330352-6992-4024-a8ed-573e4886ddc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23dd687c-952e-49e4-81f3-cb349ad9534e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10945" + ], + "x-ms-request-id": [ + "76784137-7a3a-436b-81d2-19a03e6e0db4" + ], + "x-ms-correlation-request-id": [ + "76784137-7a3a-436b-81d2-19a03e6e0db4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:76784137-7a3a-436b-81d2-19a03e6e0db4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49add1f0-6699-4861-9c9e-8e69818b9faf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10944" + ], + "x-ms-request-id": [ + "bfe6e9fd-3fa1-40ec-8ea4-aeeabe0a1c0b" + ], + "x-ms-correlation-request-id": [ + "bfe6e9fd-3fa1-40ec-8ea4-aeeabe0a1c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:bfe6e9fd-3fa1-40ec-8ea4-aeeabe0a1c0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9266c2f-ab41-4b16-ba71-081b17ff3bf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10943" + ], + "x-ms-request-id": [ + "fd2056a5-0729-488b-a9e3-2be25457dc88" + ], + "x-ms-correlation-request-id": [ + "fd2056a5-0729-488b-a9e3-2be25457dc88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:fd2056a5-0729-488b-a9e3-2be25457dc88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70376d45-cbc4-488c-8593-e8ba7de9a2cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10942" + ], + "x-ms-request-id": [ + "e51ea261-6ce3-480a-ad92-4be8879b604d" + ], + "x-ms-correlation-request-id": [ + "e51ea261-6ce3-480a-ad92-4be8879b604d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:e51ea261-6ce3-480a-ad92-4be8879b604d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d71364e2-d971-46ff-a6bb-d6f7d5c21bf6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10941" + ], + "x-ms-request-id": [ + "f0ebb2bd-97ba-44fd-a854-315fa600ef63" + ], + "x-ms-correlation-request-id": [ + "f0ebb2bd-97ba-44fd-a854-315fa600ef63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:f0ebb2bd-97ba-44fd-a854-315fa600ef63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "270cbcbd-b086-4e06-9eed-2ce33c3c8ac1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10940" + ], + "x-ms-request-id": [ + "f6d4982d-601d-4b7e-9e52-026affc3b19d" + ], + "x-ms-correlation-request-id": [ + "f6d4982d-601d-4b7e-9e52-026affc3b19d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020943Z:f6d4982d-601d-4b7e-9e52-026affc3b19d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cba2c8a-9cd7-48d3-85fe-65849ff88f8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10939" + ], + "x-ms-request-id": [ + "22de854d-040e-41b9-b935-99366365853e" + ], + "x-ms-correlation-request-id": [ + "22de854d-040e-41b9-b935-99366365853e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:22de854d-040e-41b9-b935-99366365853e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e4608cf-7feb-49f5-8810-5214fd0a2b98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10938" + ], + "x-ms-request-id": [ + "415d7175-d329-4190-9ddd-62b2de9e06df" + ], + "x-ms-correlation-request-id": [ + "415d7175-d329-4190-9ddd-62b2de9e06df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:415d7175-d329-4190-9ddd-62b2de9e06df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0be1c4b4-87d1-478b-9d26-56a3fd702a30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10937" + ], + "x-ms-request-id": [ + "0c6d98cc-ccec-4096-8a8f-1b9b0dc72ab3" + ], + "x-ms-correlation-request-id": [ + "0c6d98cc-ccec-4096-8a8f-1b9b0dc72ab3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:0c6d98cc-ccec-4096-8a8f-1b9b0dc72ab3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d7ab388-bab5-4994-9d33-7d39939ddba5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10936" + ], + "x-ms-request-id": [ + "ab7a2c2a-1f35-453c-a43d-706c35eaeca0" + ], + "x-ms-correlation-request-id": [ + "ab7a2c2a-1f35-453c-a43d-706c35eaeca0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:ab7a2c2a-1f35-453c-a43d-706c35eaeca0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bb93c9d-47aa-43e6-a4ac-864d79a80a84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10935" + ], + "x-ms-request-id": [ + "a12794db-d32f-4932-944a-45d87672faea" + ], + "x-ms-correlation-request-id": [ + "a12794db-d32f-4932-944a-45d87672faea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:a12794db-d32f-4932-944a-45d87672faea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c6f32c1-72e1-4ddc-92f0-d1743fb5dfa7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10934" + ], + "x-ms-request-id": [ + "1ab36ff3-abb3-43fc-9226-b83c25183d97" + ], + "x-ms-correlation-request-id": [ + "1ab36ff3-abb3-43fc-9226-b83c25183d97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020944Z:1ab36ff3-abb3-43fc-9226-b83c25183d97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cca080c7-d358-489f-ade8-773e37ea0ed2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10933" + ], + "x-ms-request-id": [ + "fddaed80-a24f-471a-8b8f-3c0842f1df18" + ], + "x-ms-correlation-request-id": [ + "fddaed80-a24f-471a-8b8f-3c0842f1df18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:fddaed80-a24f-471a-8b8f-3c0842f1df18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3aa12777-ff2a-47e5-b0d9-1de93da78ebf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10932" + ], + "x-ms-request-id": [ + "6f047bdb-cb72-4a7d-af23-89961d3e8305" + ], + "x-ms-correlation-request-id": [ + "6f047bdb-cb72-4a7d-af23-89961d3e8305" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:6f047bdb-cb72-4a7d-af23-89961d3e8305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4016937-9ab1-41ff-8ad4-ab4e513b9979" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10931" + ], + "x-ms-request-id": [ + "df5760f7-3358-40db-88ca-d91f2a6bf993" + ], + "x-ms-correlation-request-id": [ + "df5760f7-3358-40db-88ca-d91f2a6bf993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:df5760f7-3358-40db-88ca-d91f2a6bf993" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c80dc6b4-062a-46e4-8aeb-47767a805736" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10930" + ], + "x-ms-request-id": [ + "fe7307c5-2c26-4517-8dc9-5d2ce9ab4656" + ], + "x-ms-correlation-request-id": [ + "fe7307c5-2c26-4517-8dc9-5d2ce9ab4656" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:fe7307c5-2c26-4517-8dc9-5d2ce9ab4656" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c54871b0-402f-4f29-8bc7-91300c576ce5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10929" + ], + "x-ms-request-id": [ + "0e3c8742-7570-4f37-a85b-b76321769510" + ], + "x-ms-correlation-request-id": [ + "0e3c8742-7570-4f37-a85b-b76321769510" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:0e3c8742-7570-4f37-a85b-b76321769510" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3843f50a-1494-491e-a39f-deafb94b8c13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10928" + ], + "x-ms-request-id": [ + "e2432d54-a2e4-4a91-a849-395dd89faac2" + ], + "x-ms-correlation-request-id": [ + "e2432d54-a2e4-4a91-a849-395dd89faac2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020945Z:e2432d54-a2e4-4a91-a849-395dd89faac2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59b173cb-0668-4219-8a88-da015d08b8f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10927" + ], + "x-ms-request-id": [ + "cc24f116-6747-4184-9f51-86e86fa8179b" + ], + "x-ms-correlation-request-id": [ + "cc24f116-6747-4184-9f51-86e86fa8179b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:cc24f116-6747-4184-9f51-86e86fa8179b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31c6b88c-c4fd-4128-8a9f-275346a9f279" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10926" + ], + "x-ms-request-id": [ + "55274b74-4ce0-4c2d-8add-a90943cf4c01" + ], + "x-ms-correlation-request-id": [ + "55274b74-4ce0-4c2d-8add-a90943cf4c01" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:55274b74-4ce0-4c2d-8add-a90943cf4c01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9bd0c0e-4311-4cfa-a279-b99b6713d8f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10925" + ], + "x-ms-request-id": [ + "f47eac13-0e04-41a4-8c7d-971169707f63" + ], + "x-ms-correlation-request-id": [ + "f47eac13-0e04-41a4-8c7d-971169707f63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:f47eac13-0e04-41a4-8c7d-971169707f63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f90829ca-1b72-4eaf-80d5-4c91bc264c2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10924" + ], + "x-ms-request-id": [ + "cfbac67b-fd7f-452b-84a1-211993175831" + ], + "x-ms-correlation-request-id": [ + "cfbac67b-fd7f-452b-84a1-211993175831" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:cfbac67b-fd7f-452b-84a1-211993175831" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6593d696-1bba-49d8-a9c6-42abb98b4375" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10923" + ], + "x-ms-request-id": [ + "05cfc416-f7b1-45d8-a2a8-78d142455553" + ], + "x-ms-correlation-request-id": [ + "05cfc416-f7b1-45d8-a2a8-78d142455553" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:05cfc416-f7b1-45d8-a2a8-78d142455553" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8a513db-e70e-4433-877e-98258de7955f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10922" + ], + "x-ms-request-id": [ + "4df62fb4-743c-43a1-8e65-2e222fa4659f" + ], + "x-ms-correlation-request-id": [ + "4df62fb4-743c-43a1-8e65-2e222fa4659f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020946Z:4df62fb4-743c-43a1-8e65-2e222fa4659f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "365a892b-f1a6-481a-a661-71c1a9714812" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10921" + ], + "x-ms-request-id": [ + "45131ddd-290c-48ec-a3ce-d55ee098368b" + ], + "x-ms-correlation-request-id": [ + "45131ddd-290c-48ec-a3ce-d55ee098368b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:45131ddd-290c-48ec-a3ce-d55ee098368b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "641ef3e3-81be-46d0-ac9a-b08cd2922b4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10920" + ], + "x-ms-request-id": [ + "c01138da-ebfc-4f0f-bde6-7e661c0bbe33" + ], + "x-ms-correlation-request-id": [ + "c01138da-ebfc-4f0f-bde6-7e661c0bbe33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:c01138da-ebfc-4f0f-bde6-7e661c0bbe33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a82a80a-b8e7-4e98-99c6-112b24e2690e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10919" + ], + "x-ms-request-id": [ + "b4502916-10c3-425a-afe6-5c72e5e759da" + ], + "x-ms-correlation-request-id": [ + "b4502916-10c3-425a-afe6-5c72e5e759da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:b4502916-10c3-425a-afe6-5c72e5e759da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44e8094a-864b-462d-a177-151857049dbd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10918" + ], + "x-ms-request-id": [ + "add2b7dc-0024-4fe1-a840-2f6a01de64d4" + ], + "x-ms-correlation-request-id": [ + "add2b7dc-0024-4fe1-a840-2f6a01de64d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:add2b7dc-0024-4fe1-a840-2f6a01de64d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24e2c8ae-772f-49ac-90ac-ff23534647e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10917" + ], + "x-ms-request-id": [ + "7a4fe250-d144-41b1-a9c1-5a9af03b696b" + ], + "x-ms-correlation-request-id": [ + "7a4fe250-d144-41b1-a9c1-5a9af03b696b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:7a4fe250-d144-41b1-a9c1-5a9af03b696b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44ad9133-4d39-410b-bbeb-0902ee6d5573" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10916" + ], + "x-ms-request-id": [ + "7945a85f-60a3-4685-979b-f6b24de30353" + ], + "x-ms-correlation-request-id": [ + "7945a85f-60a3-4685-979b-f6b24de30353" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020947Z:7945a85f-60a3-4685-979b-f6b24de30353" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e7b4aa-0c0e-4138-9d4b-09c58fc48ea2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10915" + ], + "x-ms-request-id": [ + "8554496c-1882-4593-9c17-17a58216993e" + ], + "x-ms-correlation-request-id": [ + "8554496c-1882-4593-9c17-17a58216993e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:8554496c-1882-4593-9c17-17a58216993e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a53f4967-46bf-4dde-9136-3b4d2d1d230a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10914" + ], + "x-ms-request-id": [ + "821611bd-37db-4852-b546-8228ea365099" + ], + "x-ms-correlation-request-id": [ + "821611bd-37db-4852-b546-8228ea365099" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:821611bd-37db-4852-b546-8228ea365099" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "780c37eb-e197-4163-88a3-dc195cf94082" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10913" + ], + "x-ms-request-id": [ + "80f264f4-34ab-4eba-85bb-5f99e8aa8766" + ], + "x-ms-correlation-request-id": [ + "80f264f4-34ab-4eba-85bb-5f99e8aa8766" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:80f264f4-34ab-4eba-85bb-5f99e8aa8766" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8490083c-8635-4a01-9796-185f2152bf57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10912" + ], + "x-ms-request-id": [ + "99df4452-09c6-4792-8e22-3e204daa48e1" + ], + "x-ms-correlation-request-id": [ + "99df4452-09c6-4792-8e22-3e204daa48e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:99df4452-09c6-4792-8e22-3e204daa48e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfe0e276-ad97-40da-a3a3-95db8df9fd59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10911" + ], + "x-ms-request-id": [ + "0fee115d-7da5-4603-960b-dd162acbef82" + ], + "x-ms-correlation-request-id": [ + "0fee115d-7da5-4603-960b-dd162acbef82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:0fee115d-7da5-4603-960b-dd162acbef82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9657b318-de5d-446a-a02c-3327fd4dc01e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10910" + ], + "x-ms-request-id": [ + "948b4fdf-9f28-4ec2-8dcd-eafca2123e8e" + ], + "x-ms-correlation-request-id": [ + "948b4fdf-9f28-4ec2-8dcd-eafca2123e8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020948Z:948b4fdf-9f28-4ec2-8dcd-eafca2123e8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b5b6c6a-f5f7-42b3-85bb-af4ccd83f3fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10909" + ], + "x-ms-request-id": [ + "9df6ce58-783c-42f4-8a7e-2135c2172d39" + ], + "x-ms-correlation-request-id": [ + "9df6ce58-783c-42f4-8a7e-2135c2172d39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:9df6ce58-783c-42f4-8a7e-2135c2172d39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a1fc2c8-5be4-42eb-a0b7-eb49e5376641" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10908" + ], + "x-ms-request-id": [ + "65a16ec7-95dd-4f02-9722-6b1c716b5162" + ], + "x-ms-correlation-request-id": [ + "65a16ec7-95dd-4f02-9722-6b1c716b5162" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:65a16ec7-95dd-4f02-9722-6b1c716b5162" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4b35d95-260a-4b28-9252-294440e9e5b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10907" + ], + "x-ms-request-id": [ + "570dc516-6f0e-4b4f-a0b4-c24c7bc081c0" + ], + "x-ms-correlation-request-id": [ + "570dc516-6f0e-4b4f-a0b4-c24c7bc081c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:570dc516-6f0e-4b4f-a0b4-c24c7bc081c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af57b3c5-f56f-42e2-b305-9d74312c7b97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10906" + ], + "x-ms-request-id": [ + "fa544263-5912-4453-b28d-d9c6d41eab07" + ], + "x-ms-correlation-request-id": [ + "fa544263-5912-4453-b28d-d9c6d41eab07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:fa544263-5912-4453-b28d-d9c6d41eab07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "159e59e4-3b4a-45fa-ab5b-912c9a5abb1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10905" + ], + "x-ms-request-id": [ + "71a0da9a-67bd-4a5a-a04f-89e8dcf254ea" + ], + "x-ms-correlation-request-id": [ + "71a0da9a-67bd-4a5a-a04f-89e8dcf254ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:71a0da9a-67bd-4a5a-a04f-89e8dcf254ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2be4b7fe-2c3c-4ec8-a849-5d321aa5d545" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10904" + ], + "x-ms-request-id": [ + "a80ea5f0-c6d7-49ff-ac46-6280f5cc8482" + ], + "x-ms-correlation-request-id": [ + "a80ea5f0-c6d7-49ff-ac46-6280f5cc8482" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020949Z:a80ea5f0-c6d7-49ff-ac46-6280f5cc8482" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f326c11-9362-4db8-a617-42473c48acbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10903" + ], + "x-ms-request-id": [ + "e494f0de-c56b-4a03-b524-3ff7629b9682" + ], + "x-ms-correlation-request-id": [ + "e494f0de-c56b-4a03-b524-3ff7629b9682" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:e494f0de-c56b-4a03-b524-3ff7629b9682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6ddb2e7-6fc1-4bbb-a6b6-b481402f98b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10902" + ], + "x-ms-request-id": [ + "cde2764b-cb4c-4a3f-b4dd-b9d97aaa3d9a" + ], + "x-ms-correlation-request-id": [ + "cde2764b-cb4c-4a3f-b4dd-b9d97aaa3d9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:cde2764b-cb4c-4a3f-b4dd-b9d97aaa3d9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "461e6e11-6c9b-4ff2-9704-f8a1cbc2631d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10901" + ], + "x-ms-request-id": [ + "7674311c-8a91-415e-972a-3f728cc3bb87" + ], + "x-ms-correlation-request-id": [ + "7674311c-8a91-415e-972a-3f728cc3bb87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:7674311c-8a91-415e-972a-3f728cc3bb87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62b52427-142f-48d2-87b6-ff7222040aee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10900" + ], + "x-ms-request-id": [ + "b594f437-b5b4-416d-8b16-b7e96ed96fa6" + ], + "x-ms-correlation-request-id": [ + "b594f437-b5b4-416d-8b16-b7e96ed96fa6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:b594f437-b5b4-416d-8b16-b7e96ed96fa6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "358e8a22-a4bb-4ea0-8fe2-4788b84c64f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10899" + ], + "x-ms-request-id": [ + "3cd64c2c-99f4-46ea-aedd-9dd1dd65853a" + ], + "x-ms-correlation-request-id": [ + "3cd64c2c-99f4-46ea-aedd-9dd1dd65853a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:3cd64c2c-99f4-46ea-aedd-9dd1dd65853a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52f68427-9201-46e2-b983-4871cff3f27d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10898" + ], + "x-ms-request-id": [ + "3df10d46-a3e0-4284-be48-a93a9e761cd9" + ], + "x-ms-correlation-request-id": [ + "3df10d46-a3e0-4284-be48-a93a9e761cd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020950Z:3df10d46-a3e0-4284-be48-a93a9e761cd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28e4a5c7-a36b-4a0f-8cd7-4455f1b2150d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10897" + ], + "x-ms-request-id": [ + "15652ee7-0747-4763-9806-bcc29717a693" + ], + "x-ms-correlation-request-id": [ + "15652ee7-0747-4763-9806-bcc29717a693" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:15652ee7-0747-4763-9806-bcc29717a693" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "821d1988-f5e0-4c6a-bcf3-7b42e4f0a055" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10896" + ], + "x-ms-request-id": [ + "8f1def00-6d20-4321-b467-60d199a29dc1" + ], + "x-ms-correlation-request-id": [ + "8f1def00-6d20-4321-b467-60d199a29dc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:8f1def00-6d20-4321-b467-60d199a29dc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87d96b6a-480b-4067-b199-1cecff928b9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10895" + ], + "x-ms-request-id": [ + "437c2a34-b07b-431b-86c7-66e1ef40ee37" + ], + "x-ms-correlation-request-id": [ + "437c2a34-b07b-431b-86c7-66e1ef40ee37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:437c2a34-b07b-431b-86c7-66e1ef40ee37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "802065d5-f814-494d-b87e-da7fbfa9bd56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10894" + ], + "x-ms-request-id": [ + "27c052f3-7129-459f-bcd1-0ba4b81f95c0" + ], + "x-ms-correlation-request-id": [ + "27c052f3-7129-459f-bcd1-0ba4b81f95c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:27c052f3-7129-459f-bcd1-0ba4b81f95c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53a3aeb5-0d25-4fc5-ae32-2e758ccd0298" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10893" + ], + "x-ms-request-id": [ + "e8f1261d-87f5-4273-8cfa-d770629a78ba" + ], + "x-ms-correlation-request-id": [ + "e8f1261d-87f5-4273-8cfa-d770629a78ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:e8f1261d-87f5-4273-8cfa-d770629a78ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d74f6b5c-ef36-41ff-b47f-f1d8a0b27008" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10892" + ], + "x-ms-request-id": [ + "20843335-12f9-4b23-b678-194e6612b50e" + ], + "x-ms-correlation-request-id": [ + "20843335-12f9-4b23-b678-194e6612b50e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020951Z:20843335-12f9-4b23-b678-194e6612b50e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd0be111-5386-4c47-b04d-31bdb43d67de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10891" + ], + "x-ms-request-id": [ + "db75f919-fda2-4a4f-a025-c4ca5091ccd9" + ], + "x-ms-correlation-request-id": [ + "db75f919-fda2-4a4f-a025-c4ca5091ccd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:db75f919-fda2-4a4f-a025-c4ca5091ccd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7953cea-b2a7-4b26-8867-97382b4941e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10890" + ], + "x-ms-request-id": [ + "c7c21362-b6b6-4014-aafe-8fe42e9dc09e" + ], + "x-ms-correlation-request-id": [ + "c7c21362-b6b6-4014-aafe-8fe42e9dc09e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:c7c21362-b6b6-4014-aafe-8fe42e9dc09e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abb464d9-d698-40a9-9608-7f299f2af5af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10889" + ], + "x-ms-request-id": [ + "62415376-822e-434e-bf81-5dc3bfa437cb" + ], + "x-ms-correlation-request-id": [ + "62415376-822e-434e-bf81-5dc3bfa437cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:62415376-822e-434e-bf81-5dc3bfa437cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "263a839b-0302-4185-bac9-5975512c3495" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10888" + ], + "x-ms-request-id": [ + "94ae032d-e50a-4deb-b126-2416c4ece3bf" + ], + "x-ms-correlation-request-id": [ + "94ae032d-e50a-4deb-b126-2416c4ece3bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:94ae032d-e50a-4deb-b126-2416c4ece3bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c757e59-7b7b-40ce-b27d-f2fb1dfce165" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10887" + ], + "x-ms-request-id": [ + "f29277d0-bac0-4cfa-9ab3-a452939e9cdb" + ], + "x-ms-correlation-request-id": [ + "f29277d0-bac0-4cfa-9ab3-a452939e9cdb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:f29277d0-bac0-4cfa-9ab3-a452939e9cdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed0ff1b2-501a-4f24-a854-0062e90d23cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10886" + ], + "x-ms-request-id": [ + "b706ca2c-57e9-4aca-9fec-41748ce7778d" + ], + "x-ms-correlation-request-id": [ + "b706ca2c-57e9-4aca-9fec-41748ce7778d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020952Z:b706ca2c-57e9-4aca-9fec-41748ce7778d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4d5c086-f799-4193-a750-6f8dadc55fec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10885" + ], + "x-ms-request-id": [ + "147f369d-f17c-4e87-b4ef-2a0e33307c28" + ], + "x-ms-correlation-request-id": [ + "147f369d-f17c-4e87-b4ef-2a0e33307c28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:147f369d-f17c-4e87-b4ef-2a0e33307c28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43720f2e-7940-42cd-a279-aabb619b1965" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10884" + ], + "x-ms-request-id": [ + "fc04f956-f76f-4597-9cc7-31da53d1cad3" + ], + "x-ms-correlation-request-id": [ + "fc04f956-f76f-4597-9cc7-31da53d1cad3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:fc04f956-f76f-4597-9cc7-31da53d1cad3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c732d1ae-a9d9-452a-b666-f5e0435f9ad5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10883" + ], + "x-ms-request-id": [ + "ff689014-8a40-4f39-acf8-ae73c970f2b0" + ], + "x-ms-correlation-request-id": [ + "ff689014-8a40-4f39-acf8-ae73c970f2b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:ff689014-8a40-4f39-acf8-ae73c970f2b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6850080-2fd7-485d-bd30-bd4efc77d52d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10882" + ], + "x-ms-request-id": [ + "dc6ac117-84c5-4b8f-ab70-e797c629c909" + ], + "x-ms-correlation-request-id": [ + "dc6ac117-84c5-4b8f-ab70-e797c629c909" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:dc6ac117-84c5-4b8f-ab70-e797c629c909" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27272b56-a408-4316-81d5-51bf0dc75255" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10881" + ], + "x-ms-request-id": [ + "087028bd-dadb-4221-9595-e75c60023e6d" + ], + "x-ms-correlation-request-id": [ + "087028bd-dadb-4221-9595-e75c60023e6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:087028bd-dadb-4221-9595-e75c60023e6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51698d10-595e-49de-9199-087659633d87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10880" + ], + "x-ms-request-id": [ + "e212ffda-b944-42d7-8bc8-765bf67856b4" + ], + "x-ms-correlation-request-id": [ + "e212ffda-b944-42d7-8bc8-765bf67856b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020953Z:e212ffda-b944-42d7-8bc8-765bf67856b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bf79a39-ebe8-4e6a-8d0f-120bc9ddc9a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10879" + ], + "x-ms-request-id": [ + "a8e35fee-cd50-4047-a705-7ba49baae7fe" + ], + "x-ms-correlation-request-id": [ + "a8e35fee-cd50-4047-a705-7ba49baae7fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:a8e35fee-cd50-4047-a705-7ba49baae7fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e65b42ac-9ba2-49d2-b717-a7f13b3a8b2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10878" + ], + "x-ms-request-id": [ + "b2005145-d443-4dc3-91ed-3bbfb03c7bf7" + ], + "x-ms-correlation-request-id": [ + "b2005145-d443-4dc3-91ed-3bbfb03c7bf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:b2005145-d443-4dc3-91ed-3bbfb03c7bf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3c8c5ed-80b0-4d05-88e0-859eacba883e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10877" + ], + "x-ms-request-id": [ + "fb927bf2-ef63-4730-a264-943edc12f00e" + ], + "x-ms-correlation-request-id": [ + "fb927bf2-ef63-4730-a264-943edc12f00e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:fb927bf2-ef63-4730-a264-943edc12f00e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56b2878e-ce16-46c1-bdc6-5071fb4a1ffa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10876" + ], + "x-ms-request-id": [ + "cf2a5dfb-f58a-443a-a9cf-65f279c78177" + ], + "x-ms-correlation-request-id": [ + "cf2a5dfb-f58a-443a-a9cf-65f279c78177" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:cf2a5dfb-f58a-443a-a9cf-65f279c78177" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5d1aaf8-94a1-4696-989a-71fba57760f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10875" + ], + "x-ms-request-id": [ + "817cdcdf-06a9-4f0f-8c35-f76881816777" + ], + "x-ms-correlation-request-id": [ + "817cdcdf-06a9-4f0f-8c35-f76881816777" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:817cdcdf-06a9-4f0f-8c35-f76881816777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "960cc6dc-2224-4221-b896-709c09069303" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10874" + ], + "x-ms-request-id": [ + "72e76fe4-190d-430f-8ca0-430ae3fd4e22" + ], + "x-ms-correlation-request-id": [ + "72e76fe4-190d-430f-8ca0-430ae3fd4e22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020954Z:72e76fe4-190d-430f-8ca0-430ae3fd4e22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4889cb5d-9041-4bca-80d5-dc6ed76d17c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10873" + ], + "x-ms-request-id": [ + "a1cb6db8-5306-4647-adbf-2467f44bbafa" + ], + "x-ms-correlation-request-id": [ + "a1cb6db8-5306-4647-adbf-2467f44bbafa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:a1cb6db8-5306-4647-adbf-2467f44bbafa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c14cffc-0fe8-4754-99da-2d89ea59fd3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10872" + ], + "x-ms-request-id": [ + "b8fcd838-9fa2-4d84-8db9-b2cf3becc473" + ], + "x-ms-correlation-request-id": [ + "b8fcd838-9fa2-4d84-8db9-b2cf3becc473" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:b8fcd838-9fa2-4d84-8db9-b2cf3becc473" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74baa2fc-6343-42c5-adc2-e511971f22ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10871" + ], + "x-ms-request-id": [ + "1b26c21e-8dad-4581-8d1b-c658e0a612f5" + ], + "x-ms-correlation-request-id": [ + "1b26c21e-8dad-4581-8d1b-c658e0a612f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:1b26c21e-8dad-4581-8d1b-c658e0a612f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e73a492d-9269-4f33-b665-01abcc2ed195" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10870" + ], + "x-ms-request-id": [ + "3b454989-e252-469b-a8d8-32a506ae59f7" + ], + "x-ms-correlation-request-id": [ + "3b454989-e252-469b-a8d8-32a506ae59f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:3b454989-e252-469b-a8d8-32a506ae59f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3809a120-4e0d-426b-90c6-cf4be3c5f81b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10869" + ], + "x-ms-request-id": [ + "352f41c0-3acd-443a-a41b-b9f536fa95ea" + ], + "x-ms-correlation-request-id": [ + "352f41c0-3acd-443a-a41b-b9f536fa95ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:352f41c0-3acd-443a-a41b-b9f536fa95ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f9ec0da-3d00-40cd-928a-8ed10513b685" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10868" + ], + "x-ms-request-id": [ + "f35be799-d40f-4a78-84cf-48c384f9aa13" + ], + "x-ms-correlation-request-id": [ + "f35be799-d40f-4a78-84cf-48c384f9aa13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020955Z:f35be799-d40f-4a78-84cf-48c384f9aa13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8baaff10-7e4e-47bd-8c68-aab303e16053" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10867" + ], + "x-ms-request-id": [ + "98ae9767-773d-4a19-b359-a83441fb7a49" + ], + "x-ms-correlation-request-id": [ + "98ae9767-773d-4a19-b359-a83441fb7a49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:98ae9767-773d-4a19-b359-a83441fb7a49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "280caa55-97db-41e7-a031-91ab44916259" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10866" + ], + "x-ms-request-id": [ + "b75caae4-1831-4353-8511-27b906955062" + ], + "x-ms-correlation-request-id": [ + "b75caae4-1831-4353-8511-27b906955062" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:b75caae4-1831-4353-8511-27b906955062" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "befe2f9e-d67d-4f2a-a2a9-e797b9741f8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10865" + ], + "x-ms-request-id": [ + "70184e3c-afe7-49b5-a7bf-dc392b3a85ad" + ], + "x-ms-correlation-request-id": [ + "70184e3c-afe7-49b5-a7bf-dc392b3a85ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:70184e3c-afe7-49b5-a7bf-dc392b3a85ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "488bec31-01fe-4f21-857e-1f4d7f711d3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10864" + ], + "x-ms-request-id": [ + "06360ade-3811-434b-bfa2-974ad87d0adb" + ], + "x-ms-correlation-request-id": [ + "06360ade-3811-434b-bfa2-974ad87d0adb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:06360ade-3811-434b-bfa2-974ad87d0adb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ac21bee-7410-49c0-8a56-21b99ea1b33c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10863" + ], + "x-ms-request-id": [ + "b3cf27b0-04da-40fa-a7db-a811939ea291" + ], + "x-ms-correlation-request-id": [ + "b3cf27b0-04da-40fa-a7db-a811939ea291" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:b3cf27b0-04da-40fa-a7db-a811939ea291" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5da117ca-c821-4330-a75c-eba3a77d18f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10862" + ], + "x-ms-request-id": [ + "076e6d54-8ce2-4a8e-8625-0bf573cb18d8" + ], + "x-ms-correlation-request-id": [ + "076e6d54-8ce2-4a8e-8625-0bf573cb18d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020956Z:076e6d54-8ce2-4a8e-8625-0bf573cb18d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dd77e7d-0c2e-420a-9e68-07d79504c148" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10861" + ], + "x-ms-request-id": [ + "5052735c-5df9-418b-8640-c235de893582" + ], + "x-ms-correlation-request-id": [ + "5052735c-5df9-418b-8640-c235de893582" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:5052735c-5df9-418b-8640-c235de893582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "374df6ed-4ca0-4448-b33b-e088e178b610" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10860" + ], + "x-ms-request-id": [ + "f34b84af-2588-4640-8f76-3edf56159c39" + ], + "x-ms-correlation-request-id": [ + "f34b84af-2588-4640-8f76-3edf56159c39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:f34b84af-2588-4640-8f76-3edf56159c39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a721fc2c-00f0-4380-8b95-872a83d83f51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10859" + ], + "x-ms-request-id": [ + "5391963e-c636-4e1f-96b3-9083088b5112" + ], + "x-ms-correlation-request-id": [ + "5391963e-c636-4e1f-96b3-9083088b5112" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:5391963e-c636-4e1f-96b3-9083088b5112" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8963463-18b8-462a-9c28-97d7cc57dc05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10858" + ], + "x-ms-request-id": [ + "305fbda7-1f2b-4b5c-b7e4-29f8b2aff762" + ], + "x-ms-correlation-request-id": [ + "305fbda7-1f2b-4b5c-b7e4-29f8b2aff762" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:305fbda7-1f2b-4b5c-b7e4-29f8b2aff762" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55bebd83-aba4-49b1-99cc-ef3713bbb446" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10857" + ], + "x-ms-request-id": [ + "c53e5e92-4ceb-45e6-abc2-73eaa7ff9c37" + ], + "x-ms-correlation-request-id": [ + "c53e5e92-4ceb-45e6-abc2-73eaa7ff9c37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:c53e5e92-4ceb-45e6-abc2-73eaa7ff9c37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46874084-4d9c-423c-be9d-f60ff0723b76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10856" + ], + "x-ms-request-id": [ + "16361441-17d2-43c0-8d54-bbcf1f1dd5c5" + ], + "x-ms-correlation-request-id": [ + "16361441-17d2-43c0-8d54-bbcf1f1dd5c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020957Z:16361441-17d2-43c0-8d54-bbcf1f1dd5c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f64e4a7-4ef5-4cde-99ef-77cce9065482" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10855" + ], + "x-ms-request-id": [ + "5a7aa780-1590-46a0-b2db-7ca8468aba09" + ], + "x-ms-correlation-request-id": [ + "5a7aa780-1590-46a0-b2db-7ca8468aba09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:5a7aa780-1590-46a0-b2db-7ca8468aba09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f2630d-129d-409b-81c9-b384df88855f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10854" + ], + "x-ms-request-id": [ + "825c02e0-8706-4d0a-965c-fa96017ad63d" + ], + "x-ms-correlation-request-id": [ + "825c02e0-8706-4d0a-965c-fa96017ad63d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:825c02e0-8706-4d0a-965c-fa96017ad63d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9a048f7-a92f-45f7-a1b3-c5fe04c89e8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10853" + ], + "x-ms-request-id": [ + "c1bf1721-c6de-4827-a70e-1cef23aa121a" + ], + "x-ms-correlation-request-id": [ + "c1bf1721-c6de-4827-a70e-1cef23aa121a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:c1bf1721-c6de-4827-a70e-1cef23aa121a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d06c211-0aa7-4174-a475-3e2684eb79a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10852" + ], + "x-ms-request-id": [ + "c958e00d-c737-416f-ab10-406d9dd0aaa7" + ], + "x-ms-correlation-request-id": [ + "c958e00d-c737-416f-ab10-406d9dd0aaa7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:c958e00d-c737-416f-ab10-406d9dd0aaa7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f116472f-f70f-4dd4-8f9f-7c89e3b24cf2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10851" + ], + "x-ms-request-id": [ + "9d5a37f2-672c-4027-aadb-1bf8973143f6" + ], + "x-ms-correlation-request-id": [ + "9d5a37f2-672c-4027-aadb-1bf8973143f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:9d5a37f2-672c-4027-aadb-1bf8973143f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caf37ddd-dd55-4679-b2ee-33d9a6d85601" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10850" + ], + "x-ms-request-id": [ + "3af4aed7-68dc-4274-af36-029c7fd4f015" + ], + "x-ms-correlation-request-id": [ + "3af4aed7-68dc-4274-af36-029c7fd4f015" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020958Z:3af4aed7-68dc-4274-af36-029c7fd4f015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94d86bf5-58a9-44d8-ac45-641d55a3df05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10849" + ], + "x-ms-request-id": [ + "f5cc5bdd-9d8e-4171-9c8f-54be8f60c14d" + ], + "x-ms-correlation-request-id": [ + "f5cc5bdd-9d8e-4171-9c8f-54be8f60c14d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020959Z:f5cc5bdd-9d8e-4171-9c8f-54be8f60c14d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e953c11-840e-47c8-ac31-9a852a446356" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10848" + ], + "x-ms-request-id": [ + "77789eeb-d449-4415-8b5f-14315f9fd461" + ], + "x-ms-correlation-request-id": [ + "77789eeb-d449-4415-8b5f-14315f9fd461" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020959Z:77789eeb-d449-4415-8b5f-14315f9fd461" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e45c5689-6000-4fd4-b6fa-5c89eb1a46af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10847" + ], + "x-ms-request-id": [ + "9b364206-3621-4449-9dfc-a85268a666ee" + ], + "x-ms-correlation-request-id": [ + "9b364206-3621-4449-9dfc-a85268a666ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020959Z:9b364206-3621-4449-9dfc-a85268a666ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0a8464d-6e92-479a-b3ab-1705816ddc13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10846" + ], + "x-ms-request-id": [ + "05b3565d-c08c-4c3f-afd9-ed078653cca8" + ], + "x-ms-correlation-request-id": [ + "05b3565d-c08c-4c3f-afd9-ed078653cca8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020959Z:05b3565d-c08c-4c3f-afd9-ed078653cca8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2563d4-e5de-4b2f-9ec9-b567a4ca71bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10845" + ], + "x-ms-request-id": [ + "c291094b-fa57-4cb5-b4d4-36ee90e7b235" + ], + "x-ms-correlation-request-id": [ + "c291094b-fa57-4cb5-b4d4-36ee90e7b235" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T020959Z:c291094b-fa57-4cb5-b4d4-36ee90e7b235" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bc00775-b1a7-4183-a3d9-93e673f64c64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10844" + ], + "x-ms-request-id": [ + "5ffb8896-55e5-4165-ba25-733d374deded" + ], + "x-ms-correlation-request-id": [ + "5ffb8896-55e5-4165-ba25-733d374deded" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:5ffb8896-55e5-4165-ba25-733d374deded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2ee971e-695b-4cf0-9d74-aa4869d51f7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10843" + ], + "x-ms-request-id": [ + "dfeb2d70-31a8-4e7c-9119-61862322c8db" + ], + "x-ms-correlation-request-id": [ + "dfeb2d70-31a8-4e7c-9119-61862322c8db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:dfeb2d70-31a8-4e7c-9119-61862322c8db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "deb4c299-8b16-4893-b32b-e1ebf6313283" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10842" + ], + "x-ms-request-id": [ + "170d2ab9-74de-4f30-aa08-cd9c5fba0655" + ], + "x-ms-correlation-request-id": [ + "170d2ab9-74de-4f30-aa08-cd9c5fba0655" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:170d2ab9-74de-4f30-aa08-cd9c5fba0655" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:09: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d13262e-c8be-4c74-aad5-9c901e4e7f42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10841" + ], + "x-ms-request-id": [ + "50ee30ab-1efc-4423-bbbd-c6af2248b887" + ], + "x-ms-correlation-request-id": [ + "50ee30ab-1efc-4423-bbbd-c6af2248b887" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:50ee30ab-1efc-4423-bbbd-c6af2248b887" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "174febf2-ccca-4a73-a1e6-bd23e9f6bcc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10840" + ], + "x-ms-request-id": [ + "8c491dec-f0db-464a-bf64-ce625a0dc39d" + ], + "x-ms-correlation-request-id": [ + "8c491dec-f0db-464a-bf64-ce625a0dc39d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:8c491dec-f0db-464a-bf64-ce625a0dc39d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56da74f3-ada0-4506-9640-fd7d2d791906" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10839" + ], + "x-ms-request-id": [ + "f297e18a-2f04-43ea-bf93-828e45789217" + ], + "x-ms-correlation-request-id": [ + "f297e18a-2f04-43ea-bf93-828e45789217" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021000Z:f297e18a-2f04-43ea-bf93-828e45789217" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2c74397-ebab-4c1b-bf78-ae9ef9952ee9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10838" + ], + "x-ms-request-id": [ + "3a91f728-08d3-41ca-aec4-f5d03f31a7f1" + ], + "x-ms-correlation-request-id": [ + "3a91f728-08d3-41ca-aec4-f5d03f31a7f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:3a91f728-08d3-41ca-aec4-f5d03f31a7f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ee7239f-b9a6-4441-8828-ef722d6a1156" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10837" + ], + "x-ms-request-id": [ + "c6e6e5c8-e904-4c2c-9053-ea10a2dbb1a3" + ], + "x-ms-correlation-request-id": [ + "c6e6e5c8-e904-4c2c-9053-ea10a2dbb1a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:c6e6e5c8-e904-4c2c-9053-ea10a2dbb1a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e955f19-e539-489e-aa90-78e190a304c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10836" + ], + "x-ms-request-id": [ + "0e536800-367b-40ff-aba9-8b0031660f16" + ], + "x-ms-correlation-request-id": [ + "0e536800-367b-40ff-aba9-8b0031660f16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:0e536800-367b-40ff-aba9-8b0031660f16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efc0d3b4-8840-48ce-b552-36e354495d5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10835" + ], + "x-ms-request-id": [ + "1f06bad3-8447-4457-b81a-bd6957f47781" + ], + "x-ms-correlation-request-id": [ + "1f06bad3-8447-4457-b81a-bd6957f47781" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:1f06bad3-8447-4457-b81a-bd6957f47781" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "390ef047-d7e2-4364-aee6-9a7b3ee16d73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10834" + ], + "x-ms-request-id": [ + "531ef7b0-3a10-4cf9-a5e1-9098fbf3859c" + ], + "x-ms-correlation-request-id": [ + "531ef7b0-3a10-4cf9-a5e1-9098fbf3859c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:531ef7b0-3a10-4cf9-a5e1-9098fbf3859c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05e49eab-3c6e-4286-bab5-81412b407172" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10833" + ], + "x-ms-request-id": [ + "c1f373a9-43b4-40b4-b83b-3f8816979a83" + ], + "x-ms-correlation-request-id": [ + "c1f373a9-43b4-40b4-b83b-3f8816979a83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021001Z:c1f373a9-43b4-40b4-b83b-3f8816979a83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bda3e5cb-2f6a-4c75-8b0d-d1f81edadcc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10832" + ], + "x-ms-request-id": [ + "e2a7137c-7a01-4521-b908-fb8c3160a8f1" + ], + "x-ms-correlation-request-id": [ + "e2a7137c-7a01-4521-b908-fb8c3160a8f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:e2a7137c-7a01-4521-b908-fb8c3160a8f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a2403e1-09aa-4287-90bd-8a00f5d09fd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10831" + ], + "x-ms-request-id": [ + "286c85b5-4ab7-4d81-9528-edc45e0f24f0" + ], + "x-ms-correlation-request-id": [ + "286c85b5-4ab7-4d81-9528-edc45e0f24f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:286c85b5-4ab7-4d81-9528-edc45e0f24f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "563c9a56-6b43-494f-8466-4b890e61f1c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10830" + ], + "x-ms-request-id": [ + "3af7e441-58c9-41e8-b976-49f49d82e138" + ], + "x-ms-correlation-request-id": [ + "3af7e441-58c9-41e8-b976-49f49d82e138" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:3af7e441-58c9-41e8-b976-49f49d82e138" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccf5313a-bad5-42ad-9b5f-733b391ce351" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10829" + ], + "x-ms-request-id": [ + "32b25617-4034-4278-998c-903b91cc45e2" + ], + "x-ms-correlation-request-id": [ + "32b25617-4034-4278-998c-903b91cc45e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:32b25617-4034-4278-998c-903b91cc45e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4892240e-8305-442a-b175-9fdcd8d207aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10828" + ], + "x-ms-request-id": [ + "f45663f4-2e67-487f-bf51-52b5c480bfc0" + ], + "x-ms-correlation-request-id": [ + "f45663f4-2e67-487f-bf51-52b5c480bfc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:f45663f4-2e67-487f-bf51-52b5c480bfc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7175192-5c1b-4b8b-863d-e1d68c1e4f48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10827" + ], + "x-ms-request-id": [ + "001d6134-73a3-4588-8d73-430d24627ed3" + ], + "x-ms-correlation-request-id": [ + "001d6134-73a3-4588-8d73-430d24627ed3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021002Z:001d6134-73a3-4588-8d73-430d24627ed3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e051ab3d-9a0d-4910-87f0-23e72336bd0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10826" + ], + "x-ms-request-id": [ + "41f6729b-9f00-4980-9154-9bf8952b8c3b" + ], + "x-ms-correlation-request-id": [ + "41f6729b-9f00-4980-9154-9bf8952b8c3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:41f6729b-9f00-4980-9154-9bf8952b8c3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68c7d2bb-5430-42b2-9049-a870b86afd8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10825" + ], + "x-ms-request-id": [ + "e947d82a-9f8f-492a-8239-1deb6f971654" + ], + "x-ms-correlation-request-id": [ + "e947d82a-9f8f-492a-8239-1deb6f971654" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:e947d82a-9f8f-492a-8239-1deb6f971654" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1359378-2a23-49c9-ad61-b80cb7145940" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10824" + ], + "x-ms-request-id": [ + "4ee644e2-95f6-444e-9994-afb9f0878b44" + ], + "x-ms-correlation-request-id": [ + "4ee644e2-95f6-444e-9994-afb9f0878b44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:4ee644e2-95f6-444e-9994-afb9f0878b44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82b32d46-ceda-49ef-96a7-61811209f34c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10823" + ], + "x-ms-request-id": [ + "eac41cca-02a3-410d-a54a-5c9404c6c346" + ], + "x-ms-correlation-request-id": [ + "eac41cca-02a3-410d-a54a-5c9404c6c346" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:eac41cca-02a3-410d-a54a-5c9404c6c346" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04890d93-376e-48ef-8241-7afbf511298f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10822" + ], + "x-ms-request-id": [ + "8ce7220e-5aa5-4f09-b921-1dcc3edd42d4" + ], + "x-ms-correlation-request-id": [ + "8ce7220e-5aa5-4f09-b921-1dcc3edd42d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:8ce7220e-5aa5-4f09-b921-1dcc3edd42d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54f35846-76f7-4986-b16c-a3b876f9d0e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10821" + ], + "x-ms-request-id": [ + "e33de1ea-8d7a-42d1-9f00-c9394ba19553" + ], + "x-ms-correlation-request-id": [ + "e33de1ea-8d7a-42d1-9f00-c9394ba19553" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021003Z:e33de1ea-8d7a-42d1-9f00-c9394ba19553" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bc403ec-aae7-4c9a-8ebd-0b1a6a00d405" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10820" + ], + "x-ms-request-id": [ + "6c4361f5-131e-4d0e-86be-615cf87b9933" + ], + "x-ms-correlation-request-id": [ + "6c4361f5-131e-4d0e-86be-615cf87b9933" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:6c4361f5-131e-4d0e-86be-615cf87b9933" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b0db220-1ff8-4f54-8d1f-5ab5d2cd7ae2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10819" + ], + "x-ms-request-id": [ + "039b922f-2f99-48b8-a461-2e06b128f43f" + ], + "x-ms-correlation-request-id": [ + "039b922f-2f99-48b8-a461-2e06b128f43f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:039b922f-2f99-48b8-a461-2e06b128f43f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "931558de-cc85-4794-a924-08eea6a65fa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10818" + ], + "x-ms-request-id": [ + "48ed5b81-4bbc-402e-a227-867154461269" + ], + "x-ms-correlation-request-id": [ + "48ed5b81-4bbc-402e-a227-867154461269" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:48ed5b81-4bbc-402e-a227-867154461269" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2587291-5843-4828-b117-1849cad63501" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10817" + ], + "x-ms-request-id": [ + "a110cd86-b784-4037-adad-3c5f73440e07" + ], + "x-ms-correlation-request-id": [ + "a110cd86-b784-4037-adad-3c5f73440e07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:a110cd86-b784-4037-adad-3c5f73440e07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1e054fc-0154-41ed-9731-656e325b4b1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10816" + ], + "x-ms-request-id": [ + "c1534b5a-d65a-4727-abd6-7d4f93cf3b59" + ], + "x-ms-correlation-request-id": [ + "c1534b5a-d65a-4727-abd6-7d4f93cf3b59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:c1534b5a-d65a-4727-abd6-7d4f93cf3b59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a27676c5-be6c-4591-a23a-b0a3c517b3d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10815" + ], + "x-ms-request-id": [ + "bd95b0be-5d55-438f-9f19-8e5b735f541e" + ], + "x-ms-correlation-request-id": [ + "bd95b0be-5d55-438f-9f19-8e5b735f541e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021004Z:bd95b0be-5d55-438f-9f19-8e5b735f541e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3672ccc6-f9a9-4c7f-baf5-b85de1272d4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10814" + ], + "x-ms-request-id": [ + "f09a4f74-58cb-4dc8-abf8-9f710dcc9b53" + ], + "x-ms-correlation-request-id": [ + "f09a4f74-58cb-4dc8-abf8-9f710dcc9b53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:f09a4f74-58cb-4dc8-abf8-9f710dcc9b53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e765219-ba7b-4fdc-a9b5-4e71d77743ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10813" + ], + "x-ms-request-id": [ + "64e7f652-d65b-4af7-9b40-85f5b0cb258b" + ], + "x-ms-correlation-request-id": [ + "64e7f652-d65b-4af7-9b40-85f5b0cb258b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:64e7f652-d65b-4af7-9b40-85f5b0cb258b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fbf047f-ff1a-4246-8fa1-6fbc6975d7e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10812" + ], + "x-ms-request-id": [ + "73845bb5-1b2a-4de1-a2c5-3c37127e8a15" + ], + "x-ms-correlation-request-id": [ + "73845bb5-1b2a-4de1-a2c5-3c37127e8a15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:73845bb5-1b2a-4de1-a2c5-3c37127e8a15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751e21aa-f624-4329-8ee9-7e8768d26420" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10811" + ], + "x-ms-request-id": [ + "5785052e-e83f-45d9-84b6-948ec274e2ad" + ], + "x-ms-correlation-request-id": [ + "5785052e-e83f-45d9-84b6-948ec274e2ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:5785052e-e83f-45d9-84b6-948ec274e2ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61b00712-b299-4e11-bb7d-154ae4c1105a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10810" + ], + "x-ms-request-id": [ + "55067a7c-3cf4-4706-8494-9dd87c2e4dd2" + ], + "x-ms-correlation-request-id": [ + "55067a7c-3cf4-4706-8494-9dd87c2e4dd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:55067a7c-3cf4-4706-8494-9dd87c2e4dd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f3b0c3f-e762-4ce6-ab0b-42b3924ea6a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10809" + ], + "x-ms-request-id": [ + "356f2d2c-5f32-4e54-8f56-14cd9dc52dc3" + ], + "x-ms-correlation-request-id": [ + "356f2d2c-5f32-4e54-8f56-14cd9dc52dc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021005Z:356f2d2c-5f32-4e54-8f56-14cd9dc52dc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc6df097-e535-47ba-88e5-1caf4a8239d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10808" + ], + "x-ms-request-id": [ + "cd14e5fd-4441-4a04-8b6a-84c20d5bd0f3" + ], + "x-ms-correlation-request-id": [ + "cd14e5fd-4441-4a04-8b6a-84c20d5bd0f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:cd14e5fd-4441-4a04-8b6a-84c20d5bd0f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fff4493-8e57-47b4-8cc3-86744343d6da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10807" + ], + "x-ms-request-id": [ + "d00d3340-0b4a-4c61-9df2-8fc36097af5e" + ], + "x-ms-correlation-request-id": [ + "d00d3340-0b4a-4c61-9df2-8fc36097af5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:d00d3340-0b4a-4c61-9df2-8fc36097af5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d934f8f1-6f93-489a-9ecb-cbd853175609" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10806" + ], + "x-ms-request-id": [ + "6f3a3492-9f08-473a-b658-3d4499f40fb9" + ], + "x-ms-correlation-request-id": [ + "6f3a3492-9f08-473a-b658-3d4499f40fb9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:6f3a3492-9f08-473a-b658-3d4499f40fb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60e4720c-5e96-489c-aa1c-beece194969e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10805" + ], + "x-ms-request-id": [ + "260281a7-860e-4c45-971a-9f19fee73b0e" + ], + "x-ms-correlation-request-id": [ + "260281a7-860e-4c45-971a-9f19fee73b0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:260281a7-860e-4c45-971a-9f19fee73b0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf860610-83ec-4026-bf95-ea0514e7a141" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10804" + ], + "x-ms-request-id": [ + "fcdf544d-2c3a-4d3b-b67e-dbdb5254f65f" + ], + "x-ms-correlation-request-id": [ + "fcdf544d-2c3a-4d3b-b67e-dbdb5254f65f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:fcdf544d-2c3a-4d3b-b67e-dbdb5254f65f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c68bbdf-8b34-40c2-bbef-e17387d54c5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10803" + ], + "x-ms-request-id": [ + "6ee05934-86fd-4cae-9e91-27ffe24b72e2" + ], + "x-ms-correlation-request-id": [ + "6ee05934-86fd-4cae-9e91-27ffe24b72e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021006Z:6ee05934-86fd-4cae-9e91-27ffe24b72e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4b71dea-f68a-489b-9c5f-a19a14020508" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10802" + ], + "x-ms-request-id": [ + "eea78d43-b357-4e78-820f-583b0a759dab" + ], + "x-ms-correlation-request-id": [ + "eea78d43-b357-4e78-820f-583b0a759dab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:eea78d43-b357-4e78-820f-583b0a759dab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc2203c2-98d1-4151-b295-0287640d9c7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10801" + ], + "x-ms-request-id": [ + "26c2035f-09e2-4d84-98f1-3ac5a78fdd27" + ], + "x-ms-correlation-request-id": [ + "26c2035f-09e2-4d84-98f1-3ac5a78fdd27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:26c2035f-09e2-4d84-98f1-3ac5a78fdd27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2958170d-e501-480d-8249-01ef1dc2f028" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10800" + ], + "x-ms-request-id": [ + "8f402943-ae05-4428-aea7-61184e698ee4" + ], + "x-ms-correlation-request-id": [ + "8f402943-ae05-4428-aea7-61184e698ee4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:8f402943-ae05-4428-aea7-61184e698ee4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f587ec6-9781-4086-81cf-d64ea5b192f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10799" + ], + "x-ms-request-id": [ + "0a7a9cd8-e098-4401-b6dd-1779504707b7" + ], + "x-ms-correlation-request-id": [ + "0a7a9cd8-e098-4401-b6dd-1779504707b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:0a7a9cd8-e098-4401-b6dd-1779504707b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7af90686-1490-4cd2-9961-768e208dd744" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10798" + ], + "x-ms-request-id": [ + "f24053ca-350d-4e83-91a7-179e45b04a41" + ], + "x-ms-correlation-request-id": [ + "f24053ca-350d-4e83-91a7-179e45b04a41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:f24053ca-350d-4e83-91a7-179e45b04a41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc72ae47-a7c2-40ba-a9fa-da0f84e5ade5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10797" + ], + "x-ms-request-id": [ + "1ed474fc-f609-4f0a-957e-70d5e248217b" + ], + "x-ms-correlation-request-id": [ + "1ed474fc-f609-4f0a-957e-70d5e248217b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021007Z:1ed474fc-f609-4f0a-957e-70d5e248217b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2616fd53-f84f-4200-a0dc-5fba56d74e45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10796" + ], + "x-ms-request-id": [ + "d3625936-4f0b-4dd6-9c12-e834f8438b42" + ], + "x-ms-correlation-request-id": [ + "d3625936-4f0b-4dd6-9c12-e834f8438b42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:d3625936-4f0b-4dd6-9c12-e834f8438b42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "909a00a3-1695-4ddb-b690-c30eadb46f3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10795" + ], + "x-ms-request-id": [ + "4011cf47-478f-4d69-9c11-0a9909deaf30" + ], + "x-ms-correlation-request-id": [ + "4011cf47-478f-4d69-9c11-0a9909deaf30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:4011cf47-478f-4d69-9c11-0a9909deaf30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3af2a70-4f96-49b2-b02c-c32403df29a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10794" + ], + "x-ms-request-id": [ + "0fab08fa-79c0-4ace-8ccd-7dc688167292" + ], + "x-ms-correlation-request-id": [ + "0fab08fa-79c0-4ace-8ccd-7dc688167292" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:0fab08fa-79c0-4ace-8ccd-7dc688167292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2636bc0-6959-49e2-a1e9-1c9a5307ff70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10793" + ], + "x-ms-request-id": [ + "eb9ecb91-6a4f-47fe-9509-36138f0d8bcc" + ], + "x-ms-correlation-request-id": [ + "eb9ecb91-6a4f-47fe-9509-36138f0d8bcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:eb9ecb91-6a4f-47fe-9509-36138f0d8bcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f1f278f-b6f3-415f-a6ae-aa5730a4d762" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10792" + ], + "x-ms-request-id": [ + "66458609-67b8-472a-b72f-d1083e93b86e" + ], + "x-ms-correlation-request-id": [ + "66458609-67b8-472a-b72f-d1083e93b86e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:66458609-67b8-472a-b72f-d1083e93b86e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8884c0e-ac90-42ba-998e-b83f56138649" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10791" + ], + "x-ms-request-id": [ + "aa8697d0-59f9-4c49-a841-7299d8b780c5" + ], + "x-ms-correlation-request-id": [ + "aa8697d0-59f9-4c49-a841-7299d8b780c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021008Z:aa8697d0-59f9-4c49-a841-7299d8b780c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2896351f-a79b-4c34-99c8-734f29bb4c99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10790" + ], + "x-ms-request-id": [ + "b28b9216-3193-4b7d-b2eb-6641e0d625d2" + ], + "x-ms-correlation-request-id": [ + "b28b9216-3193-4b7d-b2eb-6641e0d625d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:b28b9216-3193-4b7d-b2eb-6641e0d625d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82ab50e1-6735-4422-ba8e-cc0305299737" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10789" + ], + "x-ms-request-id": [ + "47cd64d6-a8b8-4124-9ce4-4742f40e917c" + ], + "x-ms-correlation-request-id": [ + "47cd64d6-a8b8-4124-9ce4-4742f40e917c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:47cd64d6-a8b8-4124-9ce4-4742f40e917c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12c66a6d-fe78-4d2c-bc14-be2c5eeef5c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10788" + ], + "x-ms-request-id": [ + "52511da3-f254-424c-940d-a94067b89d7e" + ], + "x-ms-correlation-request-id": [ + "52511da3-f254-424c-940d-a94067b89d7e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:52511da3-f254-424c-940d-a94067b89d7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e2728de-3992-4c97-a17a-ffa4ca841f50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10787" + ], + "x-ms-request-id": [ + "6882994a-34fb-43da-9cb6-8bf2a2386b75" + ], + "x-ms-correlation-request-id": [ + "6882994a-34fb-43da-9cb6-8bf2a2386b75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:6882994a-34fb-43da-9cb6-8bf2a2386b75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48e2a3e0-6e10-4d20-8179-c63691adf169" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10786" + ], + "x-ms-request-id": [ + "1028d0dd-e27c-48cd-aefc-4823658f1559" + ], + "x-ms-correlation-request-id": [ + "1028d0dd-e27c-48cd-aefc-4823658f1559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:1028d0dd-e27c-48cd-aefc-4823658f1559" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c22520aa-042a-40ee-8b5f-eb730ff0f3ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10785" + ], + "x-ms-request-id": [ + "0ca3813e-8504-4bb3-a4ca-5b851f5f0ddb" + ], + "x-ms-correlation-request-id": [ + "0ca3813e-8504-4bb3-a4ca-5b851f5f0ddb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021009Z:0ca3813e-8504-4bb3-a4ca-5b851f5f0ddb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57bb219a-c73e-4bc3-9d8c-dcd5f48cc0a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10784" + ], + "x-ms-request-id": [ + "b115c1f4-495e-48f4-a830-af1fcae955db" + ], + "x-ms-correlation-request-id": [ + "b115c1f4-495e-48f4-a830-af1fcae955db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:b115c1f4-495e-48f4-a830-af1fcae955db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cad4a50e-33cb-4cb2-95f7-dc46ebc45907" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10783" + ], + "x-ms-request-id": [ + "7653cbf0-b467-4f5c-9b7c-147b5304352d" + ], + "x-ms-correlation-request-id": [ + "7653cbf0-b467-4f5c-9b7c-147b5304352d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:7653cbf0-b467-4f5c-9b7c-147b5304352d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98f2fdf8-d681-4ff9-849c-cca1f4703535" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10782" + ], + "x-ms-request-id": [ + "7a079e8a-abed-4075-82c2-15ca55a8a384" + ], + "x-ms-correlation-request-id": [ + "7a079e8a-abed-4075-82c2-15ca55a8a384" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:7a079e8a-abed-4075-82c2-15ca55a8a384" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "979ff600-cf04-4199-b338-f2fd356a0c3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10781" + ], + "x-ms-request-id": [ + "f1eb888c-1478-4efa-b687-4f9fabffda95" + ], + "x-ms-correlation-request-id": [ + "f1eb888c-1478-4efa-b687-4f9fabffda95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:f1eb888c-1478-4efa-b687-4f9fabffda95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70b361c2-117b-4f7f-a341-aa8f71ce5247" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10780" + ], + "x-ms-request-id": [ + "0a3d0f1c-a617-43d5-954e-288366363ea3" + ], + "x-ms-correlation-request-id": [ + "0a3d0f1c-a617-43d5-954e-288366363ea3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:0a3d0f1c-a617-43d5-954e-288366363ea3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d67828f8-3c88-49d4-b8e0-2def0889ddd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10779" + ], + "x-ms-request-id": [ + "06720360-1922-49d3-a418-6519bcd5a0ff" + ], + "x-ms-correlation-request-id": [ + "06720360-1922-49d3-a418-6519bcd5a0ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021010Z:06720360-1922-49d3-a418-6519bcd5a0ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b894c3b5-800c-4639-ac42-0eb8cd3465f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10778" + ], + "x-ms-request-id": [ + "337adcb0-4868-4961-9de7-3e9395dc4270" + ], + "x-ms-correlation-request-id": [ + "337adcb0-4868-4961-9de7-3e9395dc4270" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021011Z:337adcb0-4868-4961-9de7-3e9395dc4270" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc9b5f52-d766-435e-97f6-399c3aad9207" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10777" + ], + "x-ms-request-id": [ + "2b414144-f21d-48fb-be9a-f6109b621fcf" + ], + "x-ms-correlation-request-id": [ + "2b414144-f21d-48fb-be9a-f6109b621fcf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021011Z:2b414144-f21d-48fb-be9a-f6109b621fcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "695d758c-fcc7-4ef4-b0cf-5528a7462d80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10776" + ], + "x-ms-request-id": [ + "46fad728-7b3a-4a91-afe5-640976fd07a7" + ], + "x-ms-correlation-request-id": [ + "46fad728-7b3a-4a91-afe5-640976fd07a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021011Z:46fad728-7b3a-4a91-afe5-640976fd07a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e86a3fcd-6753-468a-a94f-797fc2fc712e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10775" + ], + "x-ms-request-id": [ + "9b8a42d0-d1c3-445b-a4c0-55804ca8d7cf" + ], + "x-ms-correlation-request-id": [ + "9b8a42d0-d1c3-445b-a4c0-55804ca8d7cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021011Z:9b8a42d0-d1c3-445b-a4c0-55804ca8d7cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cccd9bce-4afb-40bf-81c8-278aeff1775e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10774" + ], + "x-ms-request-id": [ + "fc337419-27bd-4936-b941-fec558439f7d" + ], + "x-ms-correlation-request-id": [ + "fc337419-27bd-4936-b941-fec558439f7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021011Z:fc337419-27bd-4936-b941-fec558439f7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e122d667-d76d-41e9-bfa0-4d9f3ac84d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10773" + ], + "x-ms-request-id": [ + "fcc1921a-ab93-43ad-8cab-e946fdf34367" + ], + "x-ms-correlation-request-id": [ + "fcc1921a-ab93-43ad-8cab-e946fdf34367" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021012Z:fcc1921a-ab93-43ad-8cab-e946fdf34367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b2a221d-0248-45f8-9980-18b1c62105b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10772" + ], + "x-ms-request-id": [ + "23e0a4bb-c980-43cf-8f41-ec3c435e70c4" + ], + "x-ms-correlation-request-id": [ + "23e0a4bb-c980-43cf-8f41-ec3c435e70c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021012Z:23e0a4bb-c980-43cf-8f41-ec3c435e70c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1d4605c-ba15-4f72-98e1-fbe484d3fe91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10771" + ], + "x-ms-request-id": [ + "51bb91a1-7e3f-4aa4-b23f-7bde832c55b3" + ], + "x-ms-correlation-request-id": [ + "51bb91a1-7e3f-4aa4-b23f-7bde832c55b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021012Z:51bb91a1-7e3f-4aa4-b23f-7bde832c55b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3778f314-a8fd-4781-a64d-c0ac0c55caa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10770" + ], + "x-ms-request-id": [ + "6f6f2a83-818d-4317-b80e-566b8ecad84d" + ], + "x-ms-correlation-request-id": [ + "6f6f2a83-818d-4317-b80e-566b8ecad84d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021012Z:6f6f2a83-818d-4317-b80e-566b8ecad84d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "133a384a-09b8-4ead-8c51-57ae423f98fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10769" + ], + "x-ms-request-id": [ + "8a4a8255-536c-4dc7-ab40-cc96baf39c75" + ], + "x-ms-correlation-request-id": [ + "8a4a8255-536c-4dc7-ab40-cc96baf39c75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021012Z:8a4a8255-536c-4dc7-ab40-cc96baf39c75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103765a1-a472-4dd9-b7d9-f7dd1c51c781" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10768" + ], + "x-ms-request-id": [ + "e672093e-c173-420c-97d5-a2440f367006" + ], + "x-ms-correlation-request-id": [ + "e672093e-c173-420c-97d5-a2440f367006" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:e672093e-c173-420c-97d5-a2440f367006" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b59f8bd1-6ef0-4651-9f9b-4f74d3c5138d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10767" + ], + "x-ms-request-id": [ + "c1a3cf50-d920-4050-97ac-fce236006c94" + ], + "x-ms-correlation-request-id": [ + "c1a3cf50-d920-4050-97ac-fce236006c94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:c1a3cf50-d920-4050-97ac-fce236006c94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "659f5da4-0856-49a5-804c-fefd0a568683" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10766" + ], + "x-ms-request-id": [ + "0eef1879-4867-4b44-bb90-f05633f344bc" + ], + "x-ms-correlation-request-id": [ + "0eef1879-4867-4b44-bb90-f05633f344bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:0eef1879-4867-4b44-bb90-f05633f344bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbd77690-30af-4b96-843f-fe636af3b965" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10765" + ], + "x-ms-request-id": [ + "85cadb16-8bbb-440b-99d7-1b5b0c6dbe9b" + ], + "x-ms-correlation-request-id": [ + "85cadb16-8bbb-440b-99d7-1b5b0c6dbe9b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:85cadb16-8bbb-440b-99d7-1b5b0c6dbe9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e3c853b-716f-493b-9b41-a5487a46496c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10764" + ], + "x-ms-request-id": [ + "bb6f297f-0d7e-43bd-a5e0-e16aca39ee56" + ], + "x-ms-correlation-request-id": [ + "bb6f297f-0d7e-43bd-a5e0-e16aca39ee56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:bb6f297f-0d7e-43bd-a5e0-e16aca39ee56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64983597-6a41-4b64-a7e3-a2dd9e62312f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10763" + ], + "x-ms-request-id": [ + "440b2c92-f3c9-43a0-8b30-9075e2ad5684" + ], + "x-ms-correlation-request-id": [ + "440b2c92-f3c9-43a0-8b30-9075e2ad5684" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:440b2c92-f3c9-43a0-8b30-9075e2ad5684" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be8f4b87-bf02-4cc0-9a39-412ccfa67757" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10762" + ], + "x-ms-request-id": [ + "1b950342-2a05-4e4e-89c7-24cc67f3c963" + ], + "x-ms-correlation-request-id": [ + "1b950342-2a05-4e4e-89c7-24cc67f3c963" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021013Z:1b950342-2a05-4e4e-89c7-24cc67f3c963" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be144510-8154-4f16-8dfb-003bc0895bd2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10761" + ], + "x-ms-request-id": [ + "4bc51e4f-bb02-4f57-96fb-8476ff676f56" + ], + "x-ms-correlation-request-id": [ + "4bc51e4f-bb02-4f57-96fb-8476ff676f56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021014Z:4bc51e4f-bb02-4f57-96fb-8476ff676f56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e180fdc8-0f3f-430e-9077-77561ac3d5d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10760" + ], + "x-ms-request-id": [ + "f46f2a4b-707d-41ff-a937-bfd2c9b5a857" + ], + "x-ms-correlation-request-id": [ + "f46f2a4b-707d-41ff-a937-bfd2c9b5a857" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021014Z:f46f2a4b-707d-41ff-a937-bfd2c9b5a857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "222f4315-740c-4574-872b-c0287c092612" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10759" + ], + "x-ms-request-id": [ + "951020c3-833d-4279-bd49-c2bb46f71b43" + ], + "x-ms-correlation-request-id": [ + "951020c3-833d-4279-bd49-c2bb46f71b43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021014Z:951020c3-833d-4279-bd49-c2bb46f71b43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a15df69-8f89-460e-8f20-8a7fb36b9c32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10758" + ], + "x-ms-request-id": [ + "2cba86c6-9bdb-4d2d-94f8-d6adbd072975" + ], + "x-ms-correlation-request-id": [ + "2cba86c6-9bdb-4d2d-94f8-d6adbd072975" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021014Z:2cba86c6-9bdb-4d2d-94f8-d6adbd072975" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a09ce3e0-e1f5-401d-a369-ae22e67c24bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10757" + ], + "x-ms-request-id": [ + "dd9e13c2-e7c0-40c7-8be9-e14c70e2d0cd" + ], + "x-ms-correlation-request-id": [ + "dd9e13c2-e7c0-40c7-8be9-e14c70e2d0cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021014Z:dd9e13c2-e7c0-40c7-8be9-e14c70e2d0cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "935f774b-18ea-4bf3-94df-1ff388ff236c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10756" + ], + "x-ms-request-id": [ + "e9b6bead-008b-4917-84bb-2368ed5b91e8" + ], + "x-ms-correlation-request-id": [ + "e9b6bead-008b-4917-84bb-2368ed5b91e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:e9b6bead-008b-4917-84bb-2368ed5b91e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "910b35c7-5087-4fff-84bd-b3af714c4265" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10755" + ], + "x-ms-request-id": [ + "eba303c8-2ab4-4441-8493-5bf4520744ca" + ], + "x-ms-correlation-request-id": [ + "eba303c8-2ab4-4441-8493-5bf4520744ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:eba303c8-2ab4-4441-8493-5bf4520744ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "194290ce-09ca-458e-a391-17ab72a6793f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10754" + ], + "x-ms-request-id": [ + "bc8f49f6-4c51-44db-9123-6a797b909d98" + ], + "x-ms-correlation-request-id": [ + "bc8f49f6-4c51-44db-9123-6a797b909d98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:bc8f49f6-4c51-44db-9123-6a797b909d98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27665bcc-8624-44da-9263-04e0f0b9c362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10753" + ], + "x-ms-request-id": [ + "382af1ac-4f95-48d8-85e5-123f1bb40603" + ], + "x-ms-correlation-request-id": [ + "382af1ac-4f95-48d8-85e5-123f1bb40603" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:382af1ac-4f95-48d8-85e5-123f1bb40603" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9aa39e2e-35c3-4c06-b559-f6145ccd6019" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10752" + ], + "x-ms-request-id": [ + "8075a367-b4b1-480a-9de2-0f46648164e4" + ], + "x-ms-correlation-request-id": [ + "8075a367-b4b1-480a-9de2-0f46648164e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:8075a367-b4b1-480a-9de2-0f46648164e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc0b962-a57b-4954-97ea-009f17f040e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10751" + ], + "x-ms-request-id": [ + "e8a19f9b-ceb7-4aeb-8d04-bebf09394655" + ], + "x-ms-correlation-request-id": [ + "e8a19f9b-ceb7-4aeb-8d04-bebf09394655" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:e8a19f9b-ceb7-4aeb-8d04-bebf09394655" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56007786-6777-47eb-8f9f-d2afca50afe1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10750" + ], + "x-ms-request-id": [ + "4a77aef5-c99d-4aa2-ac31-63da51925018" + ], + "x-ms-correlation-request-id": [ + "4a77aef5-c99d-4aa2-ac31-63da51925018" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021015Z:4a77aef5-c99d-4aa2-ac31-63da51925018" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9735737-4f7e-4af4-8087-81c20469c0c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10749" + ], + "x-ms-request-id": [ + "0021cfe5-79ce-4e3f-bc2e-ac7f854f8c14" + ], + "x-ms-correlation-request-id": [ + "0021cfe5-79ce-4e3f-bc2e-ac7f854f8c14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:0021cfe5-79ce-4e3f-bc2e-ac7f854f8c14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "769e8ba0-c340-4cb4-a545-c1c9a30f2c0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10748" + ], + "x-ms-request-id": [ + "eb4274f6-56f5-4282-9f73-7b0346f9e6d6" + ], + "x-ms-correlation-request-id": [ + "eb4274f6-56f5-4282-9f73-7b0346f9e6d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:eb4274f6-56f5-4282-9f73-7b0346f9e6d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2b785fb-2353-4679-ab31-5a2e4fa66cbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10747" + ], + "x-ms-request-id": [ + "b6bcd7a2-9ae3-4725-9239-016d5544814d" + ], + "x-ms-correlation-request-id": [ + "b6bcd7a2-9ae3-4725-9239-016d5544814d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:b6bcd7a2-9ae3-4725-9239-016d5544814d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bff6e7de-5959-4d3d-b498-26aeae7e7157" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10746" + ], + "x-ms-request-id": [ + "d2f7daf8-a8d8-4fb9-b86d-db7255df0142" + ], + "x-ms-correlation-request-id": [ + "d2f7daf8-a8d8-4fb9-b86d-db7255df0142" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:d2f7daf8-a8d8-4fb9-b86d-db7255df0142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c4fab38-c956-4169-948f-e25777c22bc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10745" + ], + "x-ms-request-id": [ + "773798ac-7797-4611-b1e1-e8eee3a892a6" + ], + "x-ms-correlation-request-id": [ + "773798ac-7797-4611-b1e1-e8eee3a892a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:773798ac-7797-4611-b1e1-e8eee3a892a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd71b024-27ca-4ed4-9b60-9bc509eb5335" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10744" + ], + "x-ms-request-id": [ + "6528bd96-eb69-429e-8865-e39548d74582" + ], + "x-ms-correlation-request-id": [ + "6528bd96-eb69-429e-8865-e39548d74582" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021016Z:6528bd96-eb69-429e-8865-e39548d74582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8568ba5-7e03-46c1-a4c8-2d3fea8a73d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10743" + ], + "x-ms-request-id": [ + "ad5ec4ea-cbb3-4928-bf58-f766895814f2" + ], + "x-ms-correlation-request-id": [ + "ad5ec4ea-cbb3-4928-bf58-f766895814f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:ad5ec4ea-cbb3-4928-bf58-f766895814f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95ddbb4c-fe57-4de3-bed0-bf45476df08a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10742" + ], + "x-ms-request-id": [ + "0431924f-da2d-4b50-82bc-86d0fc0424b3" + ], + "x-ms-correlation-request-id": [ + "0431924f-da2d-4b50-82bc-86d0fc0424b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:0431924f-da2d-4b50-82bc-86d0fc0424b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a3207db-1659-428d-b078-9393239123fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10741" + ], + "x-ms-request-id": [ + "57ee6eb1-8b1c-4075-8978-abaff758bd1d" + ], + "x-ms-correlation-request-id": [ + "57ee6eb1-8b1c-4075-8978-abaff758bd1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:57ee6eb1-8b1c-4075-8978-abaff758bd1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11384a7a-5b58-449a-86cf-a4857e4ab6b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10740" + ], + "x-ms-request-id": [ + "4b33afec-fc12-44c3-b36f-fb1343db9a28" + ], + "x-ms-correlation-request-id": [ + "4b33afec-fc12-44c3-b36f-fb1343db9a28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:4b33afec-fc12-44c3-b36f-fb1343db9a28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "647a3509-e699-4a0b-a518-b777c7446389" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10739" + ], + "x-ms-request-id": [ + "6d149920-55fe-4319-9b3f-bc37913ca2a8" + ], + "x-ms-correlation-request-id": [ + "6d149920-55fe-4319-9b3f-bc37913ca2a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:6d149920-55fe-4319-9b3f-bc37913ca2a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec7680e7-c062-4a72-9f50-24cd5f79acc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10738" + ], + "x-ms-request-id": [ + "43d21b0d-66a5-432d-b880-dd5380afdb2f" + ], + "x-ms-correlation-request-id": [ + "43d21b0d-66a5-432d-b880-dd5380afdb2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021017Z:43d21b0d-66a5-432d-b880-dd5380afdb2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718353f4-cd46-4ef3-973c-faf6b6abc527" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10737" + ], + "x-ms-request-id": [ + "f9fd7257-3195-446c-9bad-763e4c833ea1" + ], + "x-ms-correlation-request-id": [ + "f9fd7257-3195-446c-9bad-763e4c833ea1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:f9fd7257-3195-446c-9bad-763e4c833ea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1b5c29c-c9b8-402c-9f78-19b973a4384b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10736" + ], + "x-ms-request-id": [ + "1e6f10e9-b448-4b12-bd0a-955841fab5fb" + ], + "x-ms-correlation-request-id": [ + "1e6f10e9-b448-4b12-bd0a-955841fab5fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:1e6f10e9-b448-4b12-bd0a-955841fab5fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b281ed4-0e7e-4876-9ce1-313f151cfefc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10735" + ], + "x-ms-request-id": [ + "b819414a-68fd-4026-8b3b-9015f16df67f" + ], + "x-ms-correlation-request-id": [ + "b819414a-68fd-4026-8b3b-9015f16df67f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:b819414a-68fd-4026-8b3b-9015f16df67f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ae6280c-2620-4504-922c-63b1dc741d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10734" + ], + "x-ms-request-id": [ + "695ebca9-b64a-4c13-9761-733fbccd71ed" + ], + "x-ms-correlation-request-id": [ + "695ebca9-b64a-4c13-9761-733fbccd71ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:695ebca9-b64a-4c13-9761-733fbccd71ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd115b5b-567a-45c4-8b67-7a2893abca35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10733" + ], + "x-ms-request-id": [ + "080a665d-9f43-4e96-bdd4-3d9c318cbec2" + ], + "x-ms-correlation-request-id": [ + "080a665d-9f43-4e96-bdd4-3d9c318cbec2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:080a665d-9f43-4e96-bdd4-3d9c318cbec2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c233adb-6dc9-4efc-8ef3-beabe370e43c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10732" + ], + "x-ms-request-id": [ + "298e21a6-499d-473f-ac69-bbba5d3d92cd" + ], + "x-ms-correlation-request-id": [ + "298e21a6-499d-473f-ac69-bbba5d3d92cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021018Z:298e21a6-499d-473f-ac69-bbba5d3d92cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91e64a80-017c-4f02-a36c-507ae0bdfc17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10731" + ], + "x-ms-request-id": [ + "1cdca3e2-542e-4e67-8f65-8702923c77d3" + ], + "x-ms-correlation-request-id": [ + "1cdca3e2-542e-4e67-8f65-8702923c77d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:1cdca3e2-542e-4e67-8f65-8702923c77d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1295c890-0015-4423-aa1d-7fc290f9746e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10730" + ], + "x-ms-request-id": [ + "c92cdb7b-4d4e-43c6-a58e-89030459bae0" + ], + "x-ms-correlation-request-id": [ + "c92cdb7b-4d4e-43c6-a58e-89030459bae0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:c92cdb7b-4d4e-43c6-a58e-89030459bae0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e72ea9e-a29a-4079-a002-2e7e53bf0d81" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10729" + ], + "x-ms-request-id": [ + "ea5a0511-38b8-4df8-8351-3df55d8af93b" + ], + "x-ms-correlation-request-id": [ + "ea5a0511-38b8-4df8-8351-3df55d8af93b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:ea5a0511-38b8-4df8-8351-3df55d8af93b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67d03ca0-94de-4277-abcf-1cdceb20bf6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10728" + ], + "x-ms-request-id": [ + "163a3c07-21ad-4d2a-a5e2-170262e6d304" + ], + "x-ms-correlation-request-id": [ + "163a3c07-21ad-4d2a-a5e2-170262e6d304" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:163a3c07-21ad-4d2a-a5e2-170262e6d304" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9301676-9234-4f53-b235-a68256134734" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10727" + ], + "x-ms-request-id": [ + "6509b5e9-713e-4d8f-8bc4-8bb54fe09c4f" + ], + "x-ms-correlation-request-id": [ + "6509b5e9-713e-4d8f-8bc4-8bb54fe09c4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:6509b5e9-713e-4d8f-8bc4-8bb54fe09c4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51e2a9dc-8e21-4b3b-9e82-d584306935a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10726" + ], + "x-ms-request-id": [ + "bd94ae32-c5a2-4039-92d1-b7110b90a8ec" + ], + "x-ms-correlation-request-id": [ + "bd94ae32-c5a2-4039-92d1-b7110b90a8ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021019Z:bd94ae32-c5a2-4039-92d1-b7110b90a8ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58b87ce8-f534-4499-a845-2c9bd4a0e608" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10725" + ], + "x-ms-request-id": [ + "5d8603e8-86db-4362-9a17-1ce9accaa79f" + ], + "x-ms-correlation-request-id": [ + "5d8603e8-86db-4362-9a17-1ce9accaa79f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:5d8603e8-86db-4362-9a17-1ce9accaa79f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f615386-1e82-4cc5-b037-30fd36115950" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10724" + ], + "x-ms-request-id": [ + "b4c76e2a-8650-46a7-a449-fa92d75ecdcc" + ], + "x-ms-correlation-request-id": [ + "b4c76e2a-8650-46a7-a449-fa92d75ecdcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:b4c76e2a-8650-46a7-a449-fa92d75ecdcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10692b2b-1ae1-446d-ae68-bb4e33691b61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10723" + ], + "x-ms-request-id": [ + "fe531072-7ae5-467e-b60b-e5a12d489489" + ], + "x-ms-correlation-request-id": [ + "fe531072-7ae5-467e-b60b-e5a12d489489" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:fe531072-7ae5-467e-b60b-e5a12d489489" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f2c2c2f-c1e7-4eaa-8cbf-90c6a75e2f49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10722" + ], + "x-ms-request-id": [ + "fc7bc8fc-ea5c-4a1a-9923-6c05448e1c81" + ], + "x-ms-correlation-request-id": [ + "fc7bc8fc-ea5c-4a1a-9923-6c05448e1c81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:fc7bc8fc-ea5c-4a1a-9923-6c05448e1c81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "715a365e-26fd-4f9d-a377-f3a6fdac8b58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10721" + ], + "x-ms-request-id": [ + "cc613837-284f-4d2b-b43a-ee9aa5ee2146" + ], + "x-ms-correlation-request-id": [ + "cc613837-284f-4d2b-b43a-ee9aa5ee2146" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:cc613837-284f-4d2b-b43a-ee9aa5ee2146" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0a54717-2a0d-4521-94cb-ac9985b56138" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10720" + ], + "x-ms-request-id": [ + "72a45643-f2da-43eb-87f2-c603b879e377" + ], + "x-ms-correlation-request-id": [ + "72a45643-f2da-43eb-87f2-c603b879e377" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021020Z:72a45643-f2da-43eb-87f2-c603b879e377" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28c5d86d-fa64-4373-b8c5-9be49686445d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10719" + ], + "x-ms-request-id": [ + "934194e6-bf7c-46e4-80e2-6aaef35b030d" + ], + "x-ms-correlation-request-id": [ + "934194e6-bf7c-46e4-80e2-6aaef35b030d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:934194e6-bf7c-46e4-80e2-6aaef35b030d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73c7e11b-67a1-4be0-9ba2-14937cba490f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10718" + ], + "x-ms-request-id": [ + "8578a958-481a-471b-8a93-e3490bc89292" + ], + "x-ms-correlation-request-id": [ + "8578a958-481a-471b-8a93-e3490bc89292" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:8578a958-481a-471b-8a93-e3490bc89292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36a69390-2e9e-437f-a730-e9d223051500" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10717" + ], + "x-ms-request-id": [ + "baf512d7-6da4-411b-b1a2-918114e3ba1a" + ], + "x-ms-correlation-request-id": [ + "baf512d7-6da4-411b-b1a2-918114e3ba1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:baf512d7-6da4-411b-b1a2-918114e3ba1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "868d238e-5075-44aa-9d3a-e6a16199d462" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10716" + ], + "x-ms-request-id": [ + "0ee43014-0400-4544-a772-31a21e42bc53" + ], + "x-ms-correlation-request-id": [ + "0ee43014-0400-4544-a772-31a21e42bc53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:0ee43014-0400-4544-a772-31a21e42bc53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e177595-8ef1-410c-bdf6-0efc1d309f71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10715" + ], + "x-ms-request-id": [ + "8073aa96-16f1-4b79-8661-7d2fff9eeba7" + ], + "x-ms-correlation-request-id": [ + "8073aa96-16f1-4b79-8661-7d2fff9eeba7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:8073aa96-16f1-4b79-8661-7d2fff9eeba7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75d9b0d3-5daa-4469-af12-15f768de8fc7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10714" + ], + "x-ms-request-id": [ + "2a0d17d6-5f9a-4d32-8bc9-ae710b628f5b" + ], + "x-ms-correlation-request-id": [ + "2a0d17d6-5f9a-4d32-8bc9-ae710b628f5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021021Z:2a0d17d6-5f9a-4d32-8bc9-ae710b628f5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "533d6fdf-2257-4bc1-aa23-cfcecff3f9e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10713" + ], + "x-ms-request-id": [ + "be13bd63-715d-40f8-b582-d935808711da" + ], + "x-ms-correlation-request-id": [ + "be13bd63-715d-40f8-b582-d935808711da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:be13bd63-715d-40f8-b582-d935808711da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc4f5ba2-474f-4839-800e-2df3f7fd3027" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10712" + ], + "x-ms-request-id": [ + "4de7cbaa-fc3b-4851-8714-505d238e00e3" + ], + "x-ms-correlation-request-id": [ + "4de7cbaa-fc3b-4851-8714-505d238e00e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:4de7cbaa-fc3b-4851-8714-505d238e00e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27e29db9-c19f-491b-8bd8-92bc784e3b8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10711" + ], + "x-ms-request-id": [ + "20f9758c-7901-4179-984d-5350d1a7d8d6" + ], + "x-ms-correlation-request-id": [ + "20f9758c-7901-4179-984d-5350d1a7d8d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:20f9758c-7901-4179-984d-5350d1a7d8d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d853be1-e7c7-43b9-990f-80431c391719" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10710" + ], + "x-ms-request-id": [ + "0f46dadc-fb34-425e-b508-4c2b47f252c8" + ], + "x-ms-correlation-request-id": [ + "0f46dadc-fb34-425e-b508-4c2b47f252c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:0f46dadc-fb34-425e-b508-4c2b47f252c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32839346-704e-4637-8d5a-b473efb85736" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10709" + ], + "x-ms-request-id": [ + "4b53501c-aa00-4260-9e1e-a9a3b0cd24d4" + ], + "x-ms-correlation-request-id": [ + "4b53501c-aa00-4260-9e1e-a9a3b0cd24d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:4b53501c-aa00-4260-9e1e-a9a3b0cd24d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c58d4b87-9b0f-48c4-be31-e43b3ab75108" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10708" + ], + "x-ms-request-id": [ + "a68b2652-8bea-4a3f-9cd7-04b083c89ccf" + ], + "x-ms-correlation-request-id": [ + "a68b2652-8bea-4a3f-9cd7-04b083c89ccf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:a68b2652-8bea-4a3f-9cd7-04b083c89ccf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "600f9cff-d88b-4f47-93b3-e54c53253889" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10707" + ], + "x-ms-request-id": [ + "529b4b40-2c8d-439f-801b-fd4e143c6408" + ], + "x-ms-correlation-request-id": [ + "529b4b40-2c8d-439f-801b-fd4e143c6408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021022Z:529b4b40-2c8d-439f-801b-fd4e143c6408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96ab4529-75d5-4a52-8bf8-76fbaeeeef41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10706" + ], + "x-ms-request-id": [ + "904b62b0-ab7c-40dd-a0be-1e5b3fa7f1e2" + ], + "x-ms-correlation-request-id": [ + "904b62b0-ab7c-40dd-a0be-1e5b3fa7f1e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:904b62b0-ab7c-40dd-a0be-1e5b3fa7f1e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ff5bf09-7160-42ad-a89b-559d7b2a917d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10705" + ], + "x-ms-request-id": [ + "a13134c1-2bfb-4d6d-800c-88a004e422e7" + ], + "x-ms-correlation-request-id": [ + "a13134c1-2bfb-4d6d-800c-88a004e422e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:a13134c1-2bfb-4d6d-800c-88a004e422e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bded6b1e-e0ea-4e0f-b0f4-1eb60271450d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10704" + ], + "x-ms-request-id": [ + "6721af61-354d-43d8-bf3b-61dbf7901a39" + ], + "x-ms-correlation-request-id": [ + "6721af61-354d-43d8-bf3b-61dbf7901a39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:6721af61-354d-43d8-bf3b-61dbf7901a39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d266cf0-9053-41e3-b7a4-038589fdb7b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10703" + ], + "x-ms-request-id": [ + "08518e6b-dd25-4c66-8312-6f88cebf1593" + ], + "x-ms-correlation-request-id": [ + "08518e6b-dd25-4c66-8312-6f88cebf1593" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:08518e6b-dd25-4c66-8312-6f88cebf1593" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a85ad03-0b17-4aa0-a8b9-b7e0313f2afd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10702" + ], + "x-ms-request-id": [ + "13503c2f-9faa-47e9-924e-8ce7ebb47d0e" + ], + "x-ms-correlation-request-id": [ + "13503c2f-9faa-47e9-924e-8ce7ebb47d0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:13503c2f-9faa-47e9-924e-8ce7ebb47d0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75db45e6-382f-4bfc-8e56-86e6147b817b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10701" + ], + "x-ms-request-id": [ + "d548d983-ca2e-485c-ba08-3b24b406952d" + ], + "x-ms-correlation-request-id": [ + "d548d983-ca2e-485c-ba08-3b24b406952d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021023Z:d548d983-ca2e-485c-ba08-3b24b406952d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f7e0777-d988-4a9a-824e-c3dc29db371d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10700" + ], + "x-ms-request-id": [ + "ccfb792a-9f85-4333-8981-66a46aaf6843" + ], + "x-ms-correlation-request-id": [ + "ccfb792a-9f85-4333-8981-66a46aaf6843" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:ccfb792a-9f85-4333-8981-66a46aaf6843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a927014a-d36a-4dce-b9bc-4a2251d5e185" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10699" + ], + "x-ms-request-id": [ + "a3916b42-ec9d-4bc7-8148-03a433ddd05b" + ], + "x-ms-correlation-request-id": [ + "a3916b42-ec9d-4bc7-8148-03a433ddd05b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:a3916b42-ec9d-4bc7-8148-03a433ddd05b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23658a5a-d202-4119-b347-ec8be7128981" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10698" + ], + "x-ms-request-id": [ + "7ae463e0-a7b7-45cf-90f3-6a3cd3273b37" + ], + "x-ms-correlation-request-id": [ + "7ae463e0-a7b7-45cf-90f3-6a3cd3273b37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:7ae463e0-a7b7-45cf-90f3-6a3cd3273b37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "613ba6e8-bd85-4311-b7c7-b56353aa3d99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10697" + ], + "x-ms-request-id": [ + "62d94726-41bb-4d98-b4d0-17d15c60ff55" + ], + "x-ms-correlation-request-id": [ + "62d94726-41bb-4d98-b4d0-17d15c60ff55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:62d94726-41bb-4d98-b4d0-17d15c60ff55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09fd4308-99c8-46f2-bc12-89e92429d375" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10696" + ], + "x-ms-request-id": [ + "4a7193d7-e5cd-44c5-8a88-249f6e9c9f6b" + ], + "x-ms-correlation-request-id": [ + "4a7193d7-e5cd-44c5-8a88-249f6e9c9f6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:4a7193d7-e5cd-44c5-8a88-249f6e9c9f6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd25338e-e645-4db4-a6eb-f578057dc150" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10695" + ], + "x-ms-request-id": [ + "2ef7412f-375c-4b78-8cc0-4cea4ed6e68d" + ], + "x-ms-correlation-request-id": [ + "2ef7412f-375c-4b78-8cc0-4cea4ed6e68d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021024Z:2ef7412f-375c-4b78-8cc0-4cea4ed6e68d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8cbc911-cabe-4e62-b417-a57e73d0c2e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10694" + ], + "x-ms-request-id": [ + "e76f1f49-2598-4c76-bffa-dd4097386a2a" + ], + "x-ms-correlation-request-id": [ + "e76f1f49-2598-4c76-bffa-dd4097386a2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:e76f1f49-2598-4c76-bffa-dd4097386a2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6829019-5000-4341-afed-012e3378b521" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10693" + ], + "x-ms-request-id": [ + "f4cdb96b-7086-44c9-869d-7ec57269bf2b" + ], + "x-ms-correlation-request-id": [ + "f4cdb96b-7086-44c9-869d-7ec57269bf2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:f4cdb96b-7086-44c9-869d-7ec57269bf2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15b86d0-0d2f-4c25-a5ff-77156d36c246" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10692" + ], + "x-ms-request-id": [ + "5eb7ddec-3709-4186-ba25-fff964886b83" + ], + "x-ms-correlation-request-id": [ + "5eb7ddec-3709-4186-ba25-fff964886b83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:5eb7ddec-3709-4186-ba25-fff964886b83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5566fcec-6abf-401d-89cf-7cb35cf80e2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10691" + ], + "x-ms-request-id": [ + "aeacf5f1-b10e-4ad0-b77f-2a652686416a" + ], + "x-ms-correlation-request-id": [ + "aeacf5f1-b10e-4ad0-b77f-2a652686416a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:aeacf5f1-b10e-4ad0-b77f-2a652686416a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45f7aacb-c8e4-4c9a-8f13-39d5e4999c98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10690" + ], + "x-ms-request-id": [ + "fd3895a1-fb30-4df4-8bfe-b27e8547e3cd" + ], + "x-ms-correlation-request-id": [ + "fd3895a1-fb30-4df4-8bfe-b27e8547e3cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:fd3895a1-fb30-4df4-8bfe-b27e8547e3cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6baa9e45-32a6-45a2-8c41-873e0474b6cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10689" + ], + "x-ms-request-id": [ + "84c9f58c-e76c-48cb-98e8-69ab45fbced6" + ], + "x-ms-correlation-request-id": [ + "84c9f58c-e76c-48cb-98e8-69ab45fbced6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021025Z:84c9f58c-e76c-48cb-98e8-69ab45fbced6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78a3cf93-f904-491f-b883-d88f0809a260" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10688" + ], + "x-ms-request-id": [ + "bb102ab0-969c-4370-88f6-66cd637737fe" + ], + "x-ms-correlation-request-id": [ + "bb102ab0-969c-4370-88f6-66cd637737fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:bb102ab0-969c-4370-88f6-66cd637737fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dfa66da-19cc-4018-aa29-0130bc89c3bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10687" + ], + "x-ms-request-id": [ + "9abd4674-b244-4efd-9fc0-d5f5d5f54d1e" + ], + "x-ms-correlation-request-id": [ + "9abd4674-b244-4efd-9fc0-d5f5d5f54d1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:9abd4674-b244-4efd-9fc0-d5f5d5f54d1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67c4f11d-1ec8-4b5b-917f-72132e867433" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10686" + ], + "x-ms-request-id": [ + "9f69c213-6794-4499-8b8b-a010dcb2ed1c" + ], + "x-ms-correlation-request-id": [ + "9f69c213-6794-4499-8b8b-a010dcb2ed1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:9f69c213-6794-4499-8b8b-a010dcb2ed1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6609a1e7-013e-490e-bf2d-09b44f8056eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10685" + ], + "x-ms-request-id": [ + "f4a99435-2504-4f0a-b5d8-962cb036fb2f" + ], + "x-ms-correlation-request-id": [ + "f4a99435-2504-4f0a-b5d8-962cb036fb2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:f4a99435-2504-4f0a-b5d8-962cb036fb2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4416c759-d97b-4bbe-9298-c6285eef95ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10684" + ], + "x-ms-request-id": [ + "4957d989-3b6e-46e8-be46-bf5fc769de73" + ], + "x-ms-correlation-request-id": [ + "4957d989-3b6e-46e8-be46-bf5fc769de73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:4957d989-3b6e-46e8-be46-bf5fc769de73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bdf60e6-3e2a-43bc-a924-0e84195a6b56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10683" + ], + "x-ms-request-id": [ + "94d78ee2-5969-4b07-9e98-38b2cfb65ec4" + ], + "x-ms-correlation-request-id": [ + "94d78ee2-5969-4b07-9e98-38b2cfb65ec4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021026Z:94d78ee2-5969-4b07-9e98-38b2cfb65ec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a58f49ff-e390-4cb8-9de4-3226a4c82a58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10682" + ], + "x-ms-request-id": [ + "59533192-fd40-4e8f-aae2-0f16a4812adc" + ], + "x-ms-correlation-request-id": [ + "59533192-fd40-4e8f-aae2-0f16a4812adc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:59533192-fd40-4e8f-aae2-0f16a4812adc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47392027-8b99-4304-9192-e9d5a6e26001" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10681" + ], + "x-ms-request-id": [ + "e43f1cf9-61af-46fd-b397-01724ef97c79" + ], + "x-ms-correlation-request-id": [ + "e43f1cf9-61af-46fd-b397-01724ef97c79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:e43f1cf9-61af-46fd-b397-01724ef97c79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dafde7a-20b5-475c-81b2-6bb9568e9b20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10680" + ], + "x-ms-request-id": [ + "6a14ac84-dd35-4436-8a82-717165ac2cf7" + ], + "x-ms-correlation-request-id": [ + "6a14ac84-dd35-4436-8a82-717165ac2cf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:6a14ac84-dd35-4436-8a82-717165ac2cf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f1fff2a-6093-4243-a204-8bf678a3b8f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10679" + ], + "x-ms-request-id": [ + "3d59b82a-f483-40e0-bd5a-f7d9a2f8ae2e" + ], + "x-ms-correlation-request-id": [ + "3d59b82a-f483-40e0-bd5a-f7d9a2f8ae2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:3d59b82a-f483-40e0-bd5a-f7d9a2f8ae2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b31b2e61-f8de-4174-ae00-ec04453167b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10678" + ], + "x-ms-request-id": [ + "512da027-1d5b-4fe8-a1b5-e526b0cc62d3" + ], + "x-ms-correlation-request-id": [ + "512da027-1d5b-4fe8-a1b5-e526b0cc62d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:512da027-1d5b-4fe8-a1b5-e526b0cc62d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f51d3e6-6090-48d3-b08d-086e3bce2416" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10677" + ], + "x-ms-request-id": [ + "0b8822ae-75fb-4649-aece-990fa04f7bfd" + ], + "x-ms-correlation-request-id": [ + "0b8822ae-75fb-4649-aece-990fa04f7bfd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:0b8822ae-75fb-4649-aece-990fa04f7bfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59592e69-4813-4642-9328-9ba49aeacaa9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10676" + ], + "x-ms-request-id": [ + "9be679fe-1874-41ff-87a1-a36e6c4b4237" + ], + "x-ms-correlation-request-id": [ + "9be679fe-1874-41ff-87a1-a36e6c4b4237" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021027Z:9be679fe-1874-41ff-87a1-a36e6c4b4237" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ad7f84e-1236-4486-a8db-6d4cf2f40f0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10675" + ], + "x-ms-request-id": [ + "64618dc6-efa3-4f50-986b-084158b3b6a2" + ], + "x-ms-correlation-request-id": [ + "64618dc6-efa3-4f50-986b-084158b3b6a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:64618dc6-efa3-4f50-986b-084158b3b6a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b81d65e-2ff2-4417-9d01-80ca67d85892" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10674" + ], + "x-ms-request-id": [ + "f4e80078-63c0-43bc-aae4-4c22268bce27" + ], + "x-ms-correlation-request-id": [ + "f4e80078-63c0-43bc-aae4-4c22268bce27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:f4e80078-63c0-43bc-aae4-4c22268bce27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b30dc30d-a916-499d-b159-45a53a559bdc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10673" + ], + "x-ms-request-id": [ + "2057562d-cac3-43dd-a66a-9e4a48365867" + ], + "x-ms-correlation-request-id": [ + "2057562d-cac3-43dd-a66a-9e4a48365867" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:2057562d-cac3-43dd-a66a-9e4a48365867" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b91dd4f-1d05-454a-b6bb-622fc499d5e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10672" + ], + "x-ms-request-id": [ + "bbe26ba5-a03e-4e93-b433-dda7b7541f73" + ], + "x-ms-correlation-request-id": [ + "bbe26ba5-a03e-4e93-b433-dda7b7541f73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:bbe26ba5-a03e-4e93-b433-dda7b7541f73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88f5f54c-71ce-4d18-9021-9aa94ce0e85d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10671" + ], + "x-ms-request-id": [ + "4aa6b754-7255-413a-9e86-c11ff55a080c" + ], + "x-ms-correlation-request-id": [ + "4aa6b754-7255-413a-9e86-c11ff55a080c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:4aa6b754-7255-413a-9e86-c11ff55a080c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd93cba8-d1cb-4784-8dea-c2f569e1aba0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10670" + ], + "x-ms-request-id": [ + "da253f39-6a19-4833-bf50-0df7798ab367" + ], + "x-ms-correlation-request-id": [ + "da253f39-6a19-4833-bf50-0df7798ab367" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021028Z:da253f39-6a19-4833-bf50-0df7798ab367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53d13fa4-6b60-4097-b031-52af0cede05a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10669" + ], + "x-ms-request-id": [ + "0afeaa72-052d-4577-afbf-e97a15f2d05c" + ], + "x-ms-correlation-request-id": [ + "0afeaa72-052d-4577-afbf-e97a15f2d05c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021029Z:0afeaa72-052d-4577-afbf-e97a15f2d05c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb118dbf-ee0f-4e76-bb79-4e68f9a0b939" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10668" + ], + "x-ms-request-id": [ + "dc41b067-f799-4832-8e90-759c271480e3" + ], + "x-ms-correlation-request-id": [ + "dc41b067-f799-4832-8e90-759c271480e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021029Z:dc41b067-f799-4832-8e90-759c271480e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d99f3c6e-5ac5-42c3-a49c-6bcebe336fc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10667" + ], + "x-ms-request-id": [ + "169ee244-939d-46e6-b2df-7a26fa039d34" + ], + "x-ms-correlation-request-id": [ + "169ee244-939d-46e6-b2df-7a26fa039d34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021029Z:169ee244-939d-46e6-b2df-7a26fa039d34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05999778-cf02-46a3-aea8-c61d48c1454b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10666" + ], + "x-ms-request-id": [ + "b92b1db7-c227-4a2d-bc26-c970adab4b7c" + ], + "x-ms-correlation-request-id": [ + "b92b1db7-c227-4a2d-bc26-c970adab4b7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021029Z:b92b1db7-c227-4a2d-bc26-c970adab4b7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "437ec6ae-d7aa-464a-885a-69192e83cb56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10665" + ], + "x-ms-request-id": [ + "763ee233-3b47-4b7c-ba3f-d100d873b08b" + ], + "x-ms-correlation-request-id": [ + "763ee233-3b47-4b7c-ba3f-d100d873b08b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021029Z:763ee233-3b47-4b7c-ba3f-d100d873b08b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70da4d80-0ce0-4797-9927-5945558088af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10664" + ], + "x-ms-request-id": [ + "201ec387-e447-4c32-985d-cb6697634c5c" + ], + "x-ms-correlation-request-id": [ + "201ec387-e447-4c32-985d-cb6697634c5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:201ec387-e447-4c32-985d-cb6697634c5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab6e7dfc-fcd5-4b01-8ab0-2fa4593d7c17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10663" + ], + "x-ms-request-id": [ + "0e41ce67-03f7-435a-a42d-a9c73fb2e25b" + ], + "x-ms-correlation-request-id": [ + "0e41ce67-03f7-435a-a42d-a9c73fb2e25b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:0e41ce67-03f7-435a-a42d-a9c73fb2e25b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30503705-7a50-4589-a21d-6832a5612a3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10662" + ], + "x-ms-request-id": [ + "518937b4-01e4-477d-bfbc-13d40459692b" + ], + "x-ms-correlation-request-id": [ + "518937b4-01e4-477d-bfbc-13d40459692b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:518937b4-01e4-477d-bfbc-13d40459692b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1bb2b17-a6c6-44d6-85f7-725eb14eacf2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10661" + ], + "x-ms-request-id": [ + "5a191e8a-5a5d-4e3b-9d98-00ff33b70271" + ], + "x-ms-correlation-request-id": [ + "5a191e8a-5a5d-4e3b-9d98-00ff33b70271" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:5a191e8a-5a5d-4e3b-9d98-00ff33b70271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0760823c-af42-421f-89fc-004d057469ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10660" + ], + "x-ms-request-id": [ + "4b764a8b-2d33-48b0-aaed-9a94d003ecc1" + ], + "x-ms-correlation-request-id": [ + "4b764a8b-2d33-48b0-aaed-9a94d003ecc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:4b764a8b-2d33-48b0-aaed-9a94d003ecc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02fafcb2-e770-4bb7-ab17-21ee1e1c0759" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10659" + ], + "x-ms-request-id": [ + "fd77b916-d4a9-4bec-9cdb-a0ffa67d5fbb" + ], + "x-ms-correlation-request-id": [ + "fd77b916-d4a9-4bec-9cdb-a0ffa67d5fbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:fd77b916-d4a9-4bec-9cdb-a0ffa67d5fbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66bec4ef-e2fa-47a4-a2d7-a0e70e356181" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10658" + ], + "x-ms-request-id": [ + "6761df80-f6f1-49ac-953b-34660bae074c" + ], + "x-ms-correlation-request-id": [ + "6761df80-f6f1-49ac-953b-34660bae074c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021030Z:6761df80-f6f1-49ac-953b-34660bae074c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a227e1e0-f8d3-46e0-a6fe-301f72d14dcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10657" + ], + "x-ms-request-id": [ + "564f57df-af63-4a3a-b308-1c18bf84a962" + ], + "x-ms-correlation-request-id": [ + "564f57df-af63-4a3a-b308-1c18bf84a962" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:564f57df-af63-4a3a-b308-1c18bf84a962" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32be51a9-bcbf-49b6-9152-7991329527b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10656" + ], + "x-ms-request-id": [ + "7c50f99d-6771-4849-8fd1-c24529b96f33" + ], + "x-ms-correlation-request-id": [ + "7c50f99d-6771-4849-8fd1-c24529b96f33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:7c50f99d-6771-4849-8fd1-c24529b96f33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3da98b3a-21de-4a78-963e-91ae07222297" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10655" + ], + "x-ms-request-id": [ + "9fd266ab-77c5-4279-86d2-27447a49079e" + ], + "x-ms-correlation-request-id": [ + "9fd266ab-77c5-4279-86d2-27447a49079e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:9fd266ab-77c5-4279-86d2-27447a49079e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8db42ade-f646-4205-aafe-d4e4d0b54f70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10654" + ], + "x-ms-request-id": [ + "10c93cdb-31c0-42c4-9435-2433e810f7c3" + ], + "x-ms-correlation-request-id": [ + "10c93cdb-31c0-42c4-9435-2433e810f7c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:10c93cdb-31c0-42c4-9435-2433e810f7c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aaa0edb-5f05-4626-bf75-42cc1621515a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10653" + ], + "x-ms-request-id": [ + "3b23bde0-08ce-4a0f-a918-effbd7974e14" + ], + "x-ms-correlation-request-id": [ + "3b23bde0-08ce-4a0f-a918-effbd7974e14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:3b23bde0-08ce-4a0f-a918-effbd7974e14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d2b032-4e73-49cc-a805-04b163cede04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10652" + ], + "x-ms-request-id": [ + "b2248f25-1bfc-4f98-ab89-b82ae6c813ea" + ], + "x-ms-correlation-request-id": [ + "b2248f25-1bfc-4f98-ab89-b82ae6c813ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021031Z:b2248f25-1bfc-4f98-ab89-b82ae6c813ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47757145-7f43-4859-96c5-a7cfcc210635" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10651" + ], + "x-ms-request-id": [ + "c2fa0f79-795b-4e3e-ac26-4f596138c034" + ], + "x-ms-correlation-request-id": [ + "c2fa0f79-795b-4e3e-ac26-4f596138c034" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:c2fa0f79-795b-4e3e-ac26-4f596138c034" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "908d5564-183d-42a9-9ee4-82bb218eb6f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10650" + ], + "x-ms-request-id": [ + "36f705c2-d330-4c0e-9320-ed6781c9247d" + ], + "x-ms-correlation-request-id": [ + "36f705c2-d330-4c0e-9320-ed6781c9247d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:36f705c2-d330-4c0e-9320-ed6781c9247d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "368e637c-ead7-4c2c-876f-e465fca1b7b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10649" + ], + "x-ms-request-id": [ + "8f259754-1bac-4429-9780-b5f496fa63ac" + ], + "x-ms-correlation-request-id": [ + "8f259754-1bac-4429-9780-b5f496fa63ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:8f259754-1bac-4429-9780-b5f496fa63ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1242f63d-d6c4-482d-9284-098f8746ca56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10648" + ], + "x-ms-request-id": [ + "3fd73bd2-273d-475a-87d0-fec2501ef9e2" + ], + "x-ms-correlation-request-id": [ + "3fd73bd2-273d-475a-87d0-fec2501ef9e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:3fd73bd2-273d-475a-87d0-fec2501ef9e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "346f4249-0c17-4893-a8e3-831c69ed0cec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10647" + ], + "x-ms-request-id": [ + "612d397f-3d8f-4d16-94cf-c17385041300" + ], + "x-ms-correlation-request-id": [ + "612d397f-3d8f-4d16-94cf-c17385041300" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:612d397f-3d8f-4d16-94cf-c17385041300" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60562398-7dc8-4692-9542-9467f92666e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10646" + ], + "x-ms-request-id": [ + "46ab8c1e-3906-4ba6-beb2-488ce03bb6dc" + ], + "x-ms-correlation-request-id": [ + "46ab8c1e-3906-4ba6-beb2-488ce03bb6dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021032Z:46ab8c1e-3906-4ba6-beb2-488ce03bb6dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3566349b-3382-4590-b9dc-706e0ebe76ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10645" + ], + "x-ms-request-id": [ + "a48f0850-2f26-4e68-afd3-f20256b5070a" + ], + "x-ms-correlation-request-id": [ + "a48f0850-2f26-4e68-afd3-f20256b5070a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:a48f0850-2f26-4e68-afd3-f20256b5070a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9b31482-41cd-45ab-8e23-52fb473890ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10644" + ], + "x-ms-request-id": [ + "8a56ecee-7b15-42e3-9103-f6e553b32197" + ], + "x-ms-correlation-request-id": [ + "8a56ecee-7b15-42e3-9103-f6e553b32197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:8a56ecee-7b15-42e3-9103-f6e553b32197" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f10b2dc8-4e51-4506-b335-27b68ef14fab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10643" + ], + "x-ms-request-id": [ + "42588420-c4b8-42c9-b3e5-67bd91d3dd07" + ], + "x-ms-correlation-request-id": [ + "42588420-c4b8-42c9-b3e5-67bd91d3dd07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:42588420-c4b8-42c9-b3e5-67bd91d3dd07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a79cf4b6-c2f1-475b-845c-fbe38444cb18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10642" + ], + "x-ms-request-id": [ + "9371a781-6bd7-40da-88a7-e3967dbb9fac" + ], + "x-ms-correlation-request-id": [ + "9371a781-6bd7-40da-88a7-e3967dbb9fac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:9371a781-6bd7-40da-88a7-e3967dbb9fac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0558837-fc77-4c62-890f-185ab039f8e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10641" + ], + "x-ms-request-id": [ + "b47aaaab-c3dc-4795-bebe-6d5799123cf1" + ], + "x-ms-correlation-request-id": [ + "b47aaaab-c3dc-4795-bebe-6d5799123cf1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:b47aaaab-c3dc-4795-bebe-6d5799123cf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b64f17b-0397-49b7-bafd-1bec9b9ea0e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10640" + ], + "x-ms-request-id": [ + "8d343c72-0b8c-4e82-a546-1ef5e02630b9" + ], + "x-ms-correlation-request-id": [ + "8d343c72-0b8c-4e82-a546-1ef5e02630b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:8d343c72-0b8c-4e82-a546-1ef5e02630b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac19494d-9812-425b-ada2-a0bc847f3cd2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10639" + ], + "x-ms-request-id": [ + "9949d819-6830-4287-9022-19f496bba507" + ], + "x-ms-correlation-request-id": [ + "9949d819-6830-4287-9022-19f496bba507" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021033Z:9949d819-6830-4287-9022-19f496bba507" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ad064e-c59b-4236-80f5-0d9976791c0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10638" + ], + "x-ms-request-id": [ + "8093af6a-470b-425d-b3a1-ac538e03e521" + ], + "x-ms-correlation-request-id": [ + "8093af6a-470b-425d-b3a1-ac538e03e521" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:8093af6a-470b-425d-b3a1-ac538e03e521" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f14b271-3f70-4630-99d4-6d18bf862c61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10637" + ], + "x-ms-request-id": [ + "35d4e68b-5256-43ab-9f31-7ba28af3df1e" + ], + "x-ms-correlation-request-id": [ + "35d4e68b-5256-43ab-9f31-7ba28af3df1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:35d4e68b-5256-43ab-9f31-7ba28af3df1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4be89c88-e1bd-4100-ae4c-208f7bf9581c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10636" + ], + "x-ms-request-id": [ + "be0a10f2-8cc4-4a87-a72c-2981c9a489e0" + ], + "x-ms-correlation-request-id": [ + "be0a10f2-8cc4-4a87-a72c-2981c9a489e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:be0a10f2-8cc4-4a87-a72c-2981c9a489e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6de0f355-7766-4dd1-b831-3615acb32bce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10635" + ], + "x-ms-request-id": [ + "d305519c-7a2d-4081-b897-6591fd6bd8f9" + ], + "x-ms-correlation-request-id": [ + "d305519c-7a2d-4081-b897-6591fd6bd8f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:d305519c-7a2d-4081-b897-6591fd6bd8f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0fb4797-95a9-475e-b2af-454d63f90fd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10634" + ], + "x-ms-request-id": [ + "a5ecfd1b-abfa-4f3b-8dcf-1e2289d0361b" + ], + "x-ms-correlation-request-id": [ + "a5ecfd1b-abfa-4f3b-8dcf-1e2289d0361b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:a5ecfd1b-abfa-4f3b-8dcf-1e2289d0361b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77d5c0ac-a85d-42fb-8929-f6f9412939c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10633" + ], + "x-ms-request-id": [ + "805dbffa-b577-4d0a-87f6-ffc9a51b538b" + ], + "x-ms-correlation-request-id": [ + "805dbffa-b577-4d0a-87f6-ffc9a51b538b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021034Z:805dbffa-b577-4d0a-87f6-ffc9a51b538b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07cf0d78-59d4-4683-9e9f-c03a399459a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10632" + ], + "x-ms-request-id": [ + "9c95b214-f3c1-42c7-942c-7b633116b5a9" + ], + "x-ms-correlation-request-id": [ + "9c95b214-f3c1-42c7-942c-7b633116b5a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:9c95b214-f3c1-42c7-942c-7b633116b5a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d69896f-77ae-4c87-8bbe-c06b1dd86c12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10631" + ], + "x-ms-request-id": [ + "2cc533c2-f568-43d2-9292-7072121c1fc6" + ], + "x-ms-correlation-request-id": [ + "2cc533c2-f568-43d2-9292-7072121c1fc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:2cc533c2-f568-43d2-9292-7072121c1fc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d722c5f2-d7ec-40e2-954e-31bb35d3d866" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10630" + ], + "x-ms-request-id": [ + "6d161394-665d-4b50-8086-537c2c4cb181" + ], + "x-ms-correlation-request-id": [ + "6d161394-665d-4b50-8086-537c2c4cb181" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:6d161394-665d-4b50-8086-537c2c4cb181" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4d8de48-7dad-4a27-8982-25bdf89930c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10629" + ], + "x-ms-request-id": [ + "9e22d9be-816f-4d19-a0d1-5add664a57c8" + ], + "x-ms-correlation-request-id": [ + "9e22d9be-816f-4d19-a0d1-5add664a57c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:9e22d9be-816f-4d19-a0d1-5add664a57c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f242688d-98ba-41f0-bece-7405842d73d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10628" + ], + "x-ms-request-id": [ + "9d028147-343a-415d-9942-de96a94b8fca" + ], + "x-ms-correlation-request-id": [ + "9d028147-343a-415d-9942-de96a94b8fca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:9d028147-343a-415d-9942-de96a94b8fca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6135657b-3c4e-45fb-aaf7-eec174ad2d9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10627" + ], + "x-ms-request-id": [ + "721ec6d9-9cfa-40d0-83fa-15a48c952a7d" + ], + "x-ms-correlation-request-id": [ + "721ec6d9-9cfa-40d0-83fa-15a48c952a7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021035Z:721ec6d9-9cfa-40d0-83fa-15a48c952a7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2b66794-9b56-43c1-b765-52f483deca08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10626" + ], + "x-ms-request-id": [ + "edaa7f33-f332-43e3-8e0f-211d0f275a3b" + ], + "x-ms-correlation-request-id": [ + "edaa7f33-f332-43e3-8e0f-211d0f275a3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:edaa7f33-f332-43e3-8e0f-211d0f275a3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eeb3ef7-b0d4-487a-ae26-a8ffd4c1c30f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10625" + ], + "x-ms-request-id": [ + "1899aa69-8f12-486c-b41c-32d377239578" + ], + "x-ms-correlation-request-id": [ + "1899aa69-8f12-486c-b41c-32d377239578" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:1899aa69-8f12-486c-b41c-32d377239578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e61fc20b-1867-48f6-9e08-fdbd4501ec14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10624" + ], + "x-ms-request-id": [ + "0d1edca9-18e8-4497-9324-89dd566f5755" + ], + "x-ms-correlation-request-id": [ + "0d1edca9-18e8-4497-9324-89dd566f5755" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:0d1edca9-18e8-4497-9324-89dd566f5755" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6a27906-f4c5-4bf4-8652-1c50176ade6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10623" + ], + "x-ms-request-id": [ + "27683f4e-fa59-4168-92b0-1c917e94bb8a" + ], + "x-ms-correlation-request-id": [ + "27683f4e-fa59-4168-92b0-1c917e94bb8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:27683f4e-fa59-4168-92b0-1c917e94bb8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d505efef-1b66-4b18-9824-91506d84ce99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10622" + ], + "x-ms-request-id": [ + "0203fc80-ebe9-4bda-afa3-0b7d457e5a84" + ], + "x-ms-correlation-request-id": [ + "0203fc80-ebe9-4bda-afa3-0b7d457e5a84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:0203fc80-ebe9-4bda-afa3-0b7d457e5a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "628106cc-a80a-44d6-9cd3-6d7bcde51ab7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10621" + ], + "x-ms-request-id": [ + "611a4e27-a75c-417c-a932-f3db69265167" + ], + "x-ms-correlation-request-id": [ + "611a4e27-a75c-417c-a932-f3db69265167" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021036Z:611a4e27-a75c-417c-a932-f3db69265167" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9c9ab23-d1ab-4ba6-94eb-b4377a906144" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10620" + ], + "x-ms-request-id": [ + "26be851f-45d8-468e-9f39-51aa27934e6c" + ], + "x-ms-correlation-request-id": [ + "26be851f-45d8-468e-9f39-51aa27934e6c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:26be851f-45d8-468e-9f39-51aa27934e6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ff2e087-349c-41fa-8213-25d2872ae19e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10619" + ], + "x-ms-request-id": [ + "e9119bf8-8075-47a9-9b2d-b96a6ddcf71f" + ], + "x-ms-correlation-request-id": [ + "e9119bf8-8075-47a9-9b2d-b96a6ddcf71f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:e9119bf8-8075-47a9-9b2d-b96a6ddcf71f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e7b9351-e2f2-41bb-aee9-e2ffb288485d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10618" + ], + "x-ms-request-id": [ + "f4776786-e383-40ab-85c0-5bc73405b931" + ], + "x-ms-correlation-request-id": [ + "f4776786-e383-40ab-85c0-5bc73405b931" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:f4776786-e383-40ab-85c0-5bc73405b931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d19ebe39-9749-4fee-b824-dcd5947f7c8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10617" + ], + "x-ms-request-id": [ + "de8a5f46-c283-4c44-bfcf-a072c2037cc6" + ], + "x-ms-correlation-request-id": [ + "de8a5f46-c283-4c44-bfcf-a072c2037cc6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:de8a5f46-c283-4c44-bfcf-a072c2037cc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a4e61c3-b86a-44a2-bfad-54599471c1db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10616" + ], + "x-ms-request-id": [ + "181f6e97-dbca-43b1-a9ec-5963ccc0907e" + ], + "x-ms-correlation-request-id": [ + "181f6e97-dbca-43b1-a9ec-5963ccc0907e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:181f6e97-dbca-43b1-a9ec-5963ccc0907e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50e7b91d-8a35-4873-a0f2-db8ee784dc4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10615" + ], + "x-ms-request-id": [ + "2f339e35-8278-41fd-8e60-c56764cfb077" + ], + "x-ms-correlation-request-id": [ + "2f339e35-8278-41fd-8e60-c56764cfb077" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:2f339e35-8278-41fd-8e60-c56764cfb077" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74cab475-4703-4c87-bc8b-25ba1e6aedf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10614" + ], + "x-ms-request-id": [ + "263af867-81d3-44d5-869f-5da82a66b5b0" + ], + "x-ms-correlation-request-id": [ + "263af867-81d3-44d5-869f-5da82a66b5b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021037Z:263af867-81d3-44d5-869f-5da82a66b5b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49a621d4-dbb4-4bcd-b8a8-1d034e8a701e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10613" + ], + "x-ms-request-id": [ + "c07ba65a-6c0d-4c51-a07b-c43f0ffc0071" + ], + "x-ms-correlation-request-id": [ + "c07ba65a-6c0d-4c51-a07b-c43f0ffc0071" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:c07ba65a-6c0d-4c51-a07b-c43f0ffc0071" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e73590a-e0f1-4384-87d0-8e3871210c4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10612" + ], + "x-ms-request-id": [ + "e942bc10-5a69-47a1-b3b9-b532dbd73b13" + ], + "x-ms-correlation-request-id": [ + "e942bc10-5a69-47a1-b3b9-b532dbd73b13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:e942bc10-5a69-47a1-b3b9-b532dbd73b13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a95ef0c-3776-4bbd-af10-5494faae766b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10611" + ], + "x-ms-request-id": [ + "282c9894-b14d-4fa7-9320-d9917a6003f6" + ], + "x-ms-correlation-request-id": [ + "282c9894-b14d-4fa7-9320-d9917a6003f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:282c9894-b14d-4fa7-9320-d9917a6003f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7d51f2e-2fca-4d26-bac9-7bb56a3c8c22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10610" + ], + "x-ms-request-id": [ + "2fca6504-3750-4ddf-b07c-40e8d065d968" + ], + "x-ms-correlation-request-id": [ + "2fca6504-3750-4ddf-b07c-40e8d065d968" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:2fca6504-3750-4ddf-b07c-40e8d065d968" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43877e8c-246f-4653-9e64-9944265462d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10609" + ], + "x-ms-request-id": [ + "b6a91fd3-eca4-4972-a5fa-89cc89f38d35" + ], + "x-ms-correlation-request-id": [ + "b6a91fd3-eca4-4972-a5fa-89cc89f38d35" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:b6a91fd3-eca4-4972-a5fa-89cc89f38d35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0237477-e9ce-4b24-b710-302f19cc1ec7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10608" + ], + "x-ms-request-id": [ + "e77d05c1-a130-42e7-82bb-fd2fa9bc2f1f" + ], + "x-ms-correlation-request-id": [ + "e77d05c1-a130-42e7-82bb-fd2fa9bc2f1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021038Z:e77d05c1-a130-42e7-82bb-fd2fa9bc2f1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6319682b-61f9-419e-83e2-3efd5563505a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10607" + ], + "x-ms-request-id": [ + "ea7bf2b1-6054-48a3-b488-71856bdd2ff8" + ], + "x-ms-correlation-request-id": [ + "ea7bf2b1-6054-48a3-b488-71856bdd2ff8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:ea7bf2b1-6054-48a3-b488-71856bdd2ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "874d8636-7162-4ce4-8f9f-c59a4b4ec34d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10606" + ], + "x-ms-request-id": [ + "f7d4b497-2b49-4d02-bbe7-95dcfda67339" + ], + "x-ms-correlation-request-id": [ + "f7d4b497-2b49-4d02-bbe7-95dcfda67339" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:f7d4b497-2b49-4d02-bbe7-95dcfda67339" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5c70e78-cdc8-40d9-94ef-627acf7ff4dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10605" + ], + "x-ms-request-id": [ + "20704f20-682c-4357-a41b-ed54e23108c2" + ], + "x-ms-correlation-request-id": [ + "20704f20-682c-4357-a41b-ed54e23108c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:20704f20-682c-4357-a41b-ed54e23108c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07cfea4a-717f-4fd3-92d8-c52ab84b93f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10604" + ], + "x-ms-request-id": [ + "236c2d61-0fe8-41c9-bf67-1a2d30c325a6" + ], + "x-ms-correlation-request-id": [ + "236c2d61-0fe8-41c9-bf67-1a2d30c325a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:236c2d61-0fe8-41c9-bf67-1a2d30c325a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8e62a1-9318-49fc-b89e-b6f8eb9a0a04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10603" + ], + "x-ms-request-id": [ + "ff762bef-e813-4ff0-af65-01767fee3c99" + ], + "x-ms-correlation-request-id": [ + "ff762bef-e813-4ff0-af65-01767fee3c99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:ff762bef-e813-4ff0-af65-01767fee3c99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8321d98-c395-45f7-aebe-07d315a89901" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10602" + ], + "x-ms-request-id": [ + "8899af67-8a2a-4c9a-b260-3ef7ff73f45d" + ], + "x-ms-correlation-request-id": [ + "8899af67-8a2a-4c9a-b260-3ef7ff73f45d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021039Z:8899af67-8a2a-4c9a-b260-3ef7ff73f45d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09785d62-759c-4390-a1ef-748241b77ae0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10601" + ], + "x-ms-request-id": [ + "03d3eaa2-4ad3-4c58-9da7-120541903712" + ], + "x-ms-correlation-request-id": [ + "03d3eaa2-4ad3-4c58-9da7-120541903712" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:03d3eaa2-4ad3-4c58-9da7-120541903712" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fd7fdae-91a3-47c8-b1b0-a329d40b3889" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10600" + ], + "x-ms-request-id": [ + "1b48f32e-cdde-4b22-8d77-776b11ef59f4" + ], + "x-ms-correlation-request-id": [ + "1b48f32e-cdde-4b22-8d77-776b11ef59f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:1b48f32e-cdde-4b22-8d77-776b11ef59f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60a06569-842d-461a-a3f8-9c189e3bbb1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10599" + ], + "x-ms-request-id": [ + "b519eacb-dd2d-450b-8633-1a150ccf1182" + ], + "x-ms-correlation-request-id": [ + "b519eacb-dd2d-450b-8633-1a150ccf1182" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:b519eacb-dd2d-450b-8633-1a150ccf1182" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b7c7f8c-40bf-49e7-bc7c-167764575550" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10598" + ], + "x-ms-request-id": [ + "c52b0ea1-31cf-4e79-bb47-a3aaaf204305" + ], + "x-ms-correlation-request-id": [ + "c52b0ea1-31cf-4e79-bb47-a3aaaf204305" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:c52b0ea1-31cf-4e79-bb47-a3aaaf204305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a07df17-1d41-44ab-92ba-4652e7c5e829" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10597" + ], + "x-ms-request-id": [ + "c5cb2578-4cb5-44e0-b697-c65dbe8cf8b8" + ], + "x-ms-correlation-request-id": [ + "c5cb2578-4cb5-44e0-b697-c65dbe8cf8b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:c5cb2578-4cb5-44e0-b697-c65dbe8cf8b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c9de8f4-de0c-4d3d-9083-b3d6db3793dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10596" + ], + "x-ms-request-id": [ + "6ecdb8a2-2497-4eea-9adf-937a0151665e" + ], + "x-ms-correlation-request-id": [ + "6ecdb8a2-2497-4eea-9adf-937a0151665e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021040Z:6ecdb8a2-2497-4eea-9adf-937a0151665e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7bc84f5-2c92-4cf0-8213-2c9ca3f8aae6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10595" + ], + "x-ms-request-id": [ + "82dcb320-244f-45bb-a888-ecb586d5d2b9" + ], + "x-ms-correlation-request-id": [ + "82dcb320-244f-45bb-a888-ecb586d5d2b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:82dcb320-244f-45bb-a888-ecb586d5d2b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "028750ba-fd9d-4710-b704-0d78afa26ea8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10594" + ], + "x-ms-request-id": [ + "e5071dd4-d1d7-4dd3-a492-3e9027f11a86" + ], + "x-ms-correlation-request-id": [ + "e5071dd4-d1d7-4dd3-a492-3e9027f11a86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:e5071dd4-d1d7-4dd3-a492-3e9027f11a86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a59fadcb-d19b-4abb-b764-beba8d2fc58a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10593" + ], + "x-ms-request-id": [ + "78ff5508-7a20-4014-a161-124bf3c0845c" + ], + "x-ms-correlation-request-id": [ + "78ff5508-7a20-4014-a161-124bf3c0845c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:78ff5508-7a20-4014-a161-124bf3c0845c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea21a0b-6b5c-4ea1-b355-fa63d36ae4e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10592" + ], + "x-ms-request-id": [ + "b5d2bfd2-e9b2-4082-8552-44ff05ef3900" + ], + "x-ms-correlation-request-id": [ + "b5d2bfd2-e9b2-4082-8552-44ff05ef3900" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:b5d2bfd2-e9b2-4082-8552-44ff05ef3900" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2368e53d-cd78-44b8-88fc-f7a867e3b1a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10591" + ], + "x-ms-request-id": [ + "e7feeef9-4bf7-4e2f-9836-5169fa010490" + ], + "x-ms-correlation-request-id": [ + "e7feeef9-4bf7-4e2f-9836-5169fa010490" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:e7feeef9-4bf7-4e2f-9836-5169fa010490" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1a23e7f-2ba1-4eaa-9160-424a74ac1a29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10590" + ], + "x-ms-request-id": [ + "49f37841-9e75-494e-80fc-9cac870ace77" + ], + "x-ms-correlation-request-id": [ + "49f37841-9e75-494e-80fc-9cac870ace77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021041Z:49f37841-9e75-494e-80fc-9cac870ace77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "573e48d8-6057-42c8-8aee-34dc11471f99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10589" + ], + "x-ms-request-id": [ + "c25672bb-46aa-4d7f-8504-16f03813f3fd" + ], + "x-ms-correlation-request-id": [ + "c25672bb-46aa-4d7f-8504-16f03813f3fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021042Z:c25672bb-46aa-4d7f-8504-16f03813f3fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5061bfca-b056-4a85-aad1-8fb92acb3ea3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10588" + ], + "x-ms-request-id": [ + "d239d3b1-a836-44f7-8ced-141dc850b7e2" + ], + "x-ms-correlation-request-id": [ + "d239d3b1-a836-44f7-8ced-141dc850b7e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021042Z:d239d3b1-a836-44f7-8ced-141dc850b7e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95acb7b6-da80-4a35-ab26-101021dcde3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10587" + ], + "x-ms-request-id": [ + "eac8f5dd-cf2c-4872-b119-bfdc15c82d06" + ], + "x-ms-correlation-request-id": [ + "eac8f5dd-cf2c-4872-b119-bfdc15c82d06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021042Z:eac8f5dd-cf2c-4872-b119-bfdc15c82d06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87c98fca-c2e1-4372-8d68-6f5d8b42ac11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10586" + ], + "x-ms-request-id": [ + "441274d5-adcc-416b-9784-8dee2743b9f7" + ], + "x-ms-correlation-request-id": [ + "441274d5-adcc-416b-9784-8dee2743b9f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021042Z:441274d5-adcc-416b-9784-8dee2743b9f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f4495be-0a06-4353-8c55-5d147f06d0c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10585" + ], + "x-ms-request-id": [ + "04332dc1-cdae-4bf4-b9f2-38ed4c634e7a" + ], + "x-ms-correlation-request-id": [ + "04332dc1-cdae-4bf4-b9f2-38ed4c634e7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:04332dc1-cdae-4bf4-b9f2-38ed4c634e7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00ea5882-a326-49a3-8db7-e30c6fc3aaad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10584" + ], + "x-ms-request-id": [ + "a0cef321-dc83-4b9e-804c-5d0ae545ba91" + ], + "x-ms-correlation-request-id": [ + "a0cef321-dc83-4b9e-804c-5d0ae545ba91" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:a0cef321-dc83-4b9e-804c-5d0ae545ba91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d83221e9-11c4-44f0-a77f-3f6d5cb23ed9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10583" + ], + "x-ms-request-id": [ + "671de5f2-2b51-4850-9d8a-d47839fa8207" + ], + "x-ms-correlation-request-id": [ + "671de5f2-2b51-4850-9d8a-d47839fa8207" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:671de5f2-2b51-4850-9d8a-d47839fa8207" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ea1da8e-2fde-4901-b919-7facbe0c01d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10582" + ], + "x-ms-request-id": [ + "44e3385d-b78e-4e65-b64e-6994ce39ec0f" + ], + "x-ms-correlation-request-id": [ + "44e3385d-b78e-4e65-b64e-6994ce39ec0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:44e3385d-b78e-4e65-b64e-6994ce39ec0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe4ecbb2-9637-446e-a80f-a73eafa5c96c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10581" + ], + "x-ms-request-id": [ + "344005a7-9df5-4461-a6e7-4a042b1dd2b2" + ], + "x-ms-correlation-request-id": [ + "344005a7-9df5-4461-a6e7-4a042b1dd2b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:344005a7-9df5-4461-a6e7-4a042b1dd2b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b858d26-1e1a-4d23-8f5f-7c431a14f10d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10580" + ], + "x-ms-request-id": [ + "bd7ec17a-b996-46d0-9bc2-b80572846233" + ], + "x-ms-correlation-request-id": [ + "bd7ec17a-b996-46d0-9bc2-b80572846233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021043Z:bd7ec17a-b996-46d0-9bc2-b80572846233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "064800db-35d5-4832-a6cd-7f8344883746" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10579" + ], + "x-ms-request-id": [ + "4a5d89c2-c781-42bd-bc98-438b050bf5af" + ], + "x-ms-correlation-request-id": [ + "4a5d89c2-c781-42bd-bc98-438b050bf5af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:4a5d89c2-c781-42bd-bc98-438b050bf5af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40036d8e-f63b-49f9-b7ba-d57f887adc75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10578" + ], + "x-ms-request-id": [ + "5891edd4-586b-4c3c-a6d5-7da28e851985" + ], + "x-ms-correlation-request-id": [ + "5891edd4-586b-4c3c-a6d5-7da28e851985" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:5891edd4-586b-4c3c-a6d5-7da28e851985" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63f7d6ee-e226-4041-890e-c829e7882e1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10577" + ], + "x-ms-request-id": [ + "dedb9ec2-85d3-40f8-9ea9-2d2b4e23a1db" + ], + "x-ms-correlation-request-id": [ + "dedb9ec2-85d3-40f8-9ea9-2d2b4e23a1db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:dedb9ec2-85d3-40f8-9ea9-2d2b4e23a1db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a480184-db74-406a-804f-6226a51571aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10576" + ], + "x-ms-request-id": [ + "92b8bf7b-8581-470e-b9f3-7d829f926cf9" + ], + "x-ms-correlation-request-id": [ + "92b8bf7b-8581-470e-b9f3-7d829f926cf9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:92b8bf7b-8581-470e-b9f3-7d829f926cf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1028d859-8dca-4bcf-9947-baf95e241de7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10575" + ], + "x-ms-request-id": [ + "bb889911-3431-41b7-a8c4-19c9f2e15601" + ], + "x-ms-correlation-request-id": [ + "bb889911-3431-41b7-a8c4-19c9f2e15601" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:bb889911-3431-41b7-a8c4-19c9f2e15601" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "171de04b-b62c-4408-8963-839862c995ed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10574" + ], + "x-ms-request-id": [ + "30da6bd4-cb15-4bcb-b094-1b02eba30a48" + ], + "x-ms-correlation-request-id": [ + "30da6bd4-cb15-4bcb-b094-1b02eba30a48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021044Z:30da6bd4-cb15-4bcb-b094-1b02eba30a48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25e05021-b3e3-4cec-b30b-ea63c049f6c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10573" + ], + "x-ms-request-id": [ + "8496a4d5-020d-4a4c-885a-6e9efc4bcce9" + ], + "x-ms-correlation-request-id": [ + "8496a4d5-020d-4a4c-885a-6e9efc4bcce9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:8496a4d5-020d-4a4c-885a-6e9efc4bcce9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "175aaed0-b58e-494d-ae9a-a061aa6e4a3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10572" + ], + "x-ms-request-id": [ + "79707e56-eaae-427a-a1a7-abbf83b829f2" + ], + "x-ms-correlation-request-id": [ + "79707e56-eaae-427a-a1a7-abbf83b829f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:79707e56-eaae-427a-a1a7-abbf83b829f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a22630b-fbbd-4123-9e99-1faaa591893f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10571" + ], + "x-ms-request-id": [ + "4dc32380-8699-41bf-9f49-8ad5cb251813" + ], + "x-ms-correlation-request-id": [ + "4dc32380-8699-41bf-9f49-8ad5cb251813" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:4dc32380-8699-41bf-9f49-8ad5cb251813" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f60e080-c292-42cc-bb11-e4e002741793" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10570" + ], + "x-ms-request-id": [ + "63876f0f-4559-43f5-8291-5fac3d7da70a" + ], + "x-ms-correlation-request-id": [ + "63876f0f-4559-43f5-8291-5fac3d7da70a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:63876f0f-4559-43f5-8291-5fac3d7da70a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fcc2bec-7c1a-4fab-9219-4430be9b20b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10569" + ], + "x-ms-request-id": [ + "691c046c-eb9e-4270-b0b8-1e8c877233a8" + ], + "x-ms-correlation-request-id": [ + "691c046c-eb9e-4270-b0b8-1e8c877233a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:691c046c-eb9e-4270-b0b8-1e8c877233a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5e1dea0-0517-47d0-8249-6605f2ed787f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10568" + ], + "x-ms-request-id": [ + "c97b027a-1fc4-4bc8-8692-90ce09dd22aa" + ], + "x-ms-correlation-request-id": [ + "c97b027a-1fc4-4bc8-8692-90ce09dd22aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021045Z:c97b027a-1fc4-4bc8-8692-90ce09dd22aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab82227d-427b-4de4-8725-29870264c8bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10567" + ], + "x-ms-request-id": [ + "80bce835-661a-4d70-8f76-f186ba86cb75" + ], + "x-ms-correlation-request-id": [ + "80bce835-661a-4d70-8f76-f186ba86cb75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:80bce835-661a-4d70-8f76-f186ba86cb75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72b601dd-ad29-4ab2-95be-373e9adb1e4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10566" + ], + "x-ms-request-id": [ + "7df59702-cf1f-4339-9ae0-012a23b41444" + ], + "x-ms-correlation-request-id": [ + "7df59702-cf1f-4339-9ae0-012a23b41444" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:7df59702-cf1f-4339-9ae0-012a23b41444" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3fd1007-c9e6-4ffa-944c-47dece64b78d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10565" + ], + "x-ms-request-id": [ + "92c11d97-02cf-4ea5-a2f3-6ae1a881a6ff" + ], + "x-ms-correlation-request-id": [ + "92c11d97-02cf-4ea5-a2f3-6ae1a881a6ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:92c11d97-02cf-4ea5-a2f3-6ae1a881a6ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46f71d40-8ad0-45fc-b32b-2cf5a54de113" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10564" + ], + "x-ms-request-id": [ + "6aa8d0ad-fcb4-4bce-a856-d0aa251584fc" + ], + "x-ms-correlation-request-id": [ + "6aa8d0ad-fcb4-4bce-a856-d0aa251584fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:6aa8d0ad-fcb4-4bce-a856-d0aa251584fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d94920c-2497-4b1d-ac6c-e4589611dc84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10563" + ], + "x-ms-request-id": [ + "879f7896-a025-43ce-9fd2-77ec1cac3026" + ], + "x-ms-correlation-request-id": [ + "879f7896-a025-43ce-9fd2-77ec1cac3026" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:879f7896-a025-43ce-9fd2-77ec1cac3026" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99d7df57-c44e-4fa9-b65f-f537e1274ab8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10562" + ], + "x-ms-request-id": [ + "2cef0b85-e232-4d9c-8dc7-678c884de8f4" + ], + "x-ms-correlation-request-id": [ + "2cef0b85-e232-4d9c-8dc7-678c884de8f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021046Z:2cef0b85-e232-4d9c-8dc7-678c884de8f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5316fe4-5047-4cee-80fd-93b4eab727c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10561" + ], + "x-ms-request-id": [ + "4f6871bf-9000-40e1-8410-db2debc0900b" + ], + "x-ms-correlation-request-id": [ + "4f6871bf-9000-40e1-8410-db2debc0900b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:4f6871bf-9000-40e1-8410-db2debc0900b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73fd8b55-387b-4df2-9fac-e7333ff8c4d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10560" + ], + "x-ms-request-id": [ + "c3daa528-5381-408f-8261-824a6951e52b" + ], + "x-ms-correlation-request-id": [ + "c3daa528-5381-408f-8261-824a6951e52b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:c3daa528-5381-408f-8261-824a6951e52b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa953d71-df9c-4596-9681-bf3d6d20d7c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10559" + ], + "x-ms-request-id": [ + "1d6293a8-0032-46bf-9e33-36f0998a66fe" + ], + "x-ms-correlation-request-id": [ + "1d6293a8-0032-46bf-9e33-36f0998a66fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:1d6293a8-0032-46bf-9e33-36f0998a66fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7bdac3f-1986-4afb-a606-52820ccad516" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10558" + ], + "x-ms-request-id": [ + "73472199-d338-4cee-80ee-fc6cfcffae72" + ], + "x-ms-correlation-request-id": [ + "73472199-d338-4cee-80ee-fc6cfcffae72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:73472199-d338-4cee-80ee-fc6cfcffae72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b59fc25a-88b5-4502-92c3-9927097284f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10557" + ], + "x-ms-request-id": [ + "ddf032ee-8a47-4a5a-8afa-1aeab0213b6b" + ], + "x-ms-correlation-request-id": [ + "ddf032ee-8a47-4a5a-8afa-1aeab0213b6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:ddf032ee-8a47-4a5a-8afa-1aeab0213b6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efc79a4c-ee18-4090-807e-f73137bf77e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10556" + ], + "x-ms-request-id": [ + "39d4d46f-8ef5-4b27-bcd4-613a31068d32" + ], + "x-ms-correlation-request-id": [ + "39d4d46f-8ef5-4b27-bcd4-613a31068d32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:39d4d46f-8ef5-4b27-bcd4-613a31068d32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1efcec2d-b139-4456-b871-c9b1600e6124" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10555" + ], + "x-ms-request-id": [ + "cc7ba08d-955f-41eb-be4d-92597b6eb51d" + ], + "x-ms-correlation-request-id": [ + "cc7ba08d-955f-41eb-be4d-92597b6eb51d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021047Z:cc7ba08d-955f-41eb-be4d-92597b6eb51d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a29b645-3923-4b1e-ac56-f9c23fcc4267" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10554" + ], + "x-ms-request-id": [ + "60aa42b8-949a-46e8-98fa-92d9652adb66" + ], + "x-ms-correlation-request-id": [ + "60aa42b8-949a-46e8-98fa-92d9652adb66" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:60aa42b8-949a-46e8-98fa-92d9652adb66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fc804d0-7e17-4525-b2a9-3cf8a009d5be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10553" + ], + "x-ms-request-id": [ + "2f39180c-7e3b-4a06-b4c9-f5a6c8b2536e" + ], + "x-ms-correlation-request-id": [ + "2f39180c-7e3b-4a06-b4c9-f5a6c8b2536e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:2f39180c-7e3b-4a06-b4c9-f5a6c8b2536e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35bf3d0b-b9d9-4bde-bb03-a1b8e24ba035" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10552" + ], + "x-ms-request-id": [ + "1ef9c87a-81c6-4495-80a6-3287d1c2c552" + ], + "x-ms-correlation-request-id": [ + "1ef9c87a-81c6-4495-80a6-3287d1c2c552" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:1ef9c87a-81c6-4495-80a6-3287d1c2c552" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86e21fbb-ece6-4678-83e7-f02c92bcc2c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10551" + ], + "x-ms-request-id": [ + "738b0a30-ef38-4fcc-9fba-74a265b063f2" + ], + "x-ms-correlation-request-id": [ + "738b0a30-ef38-4fcc-9fba-74a265b063f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:738b0a30-ef38-4fcc-9fba-74a265b063f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b978893-6ed5-437d-aca6-381227180010" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10550" + ], + "x-ms-request-id": [ + "69b8fd5e-39f5-4a05-b3c3-ad6eceee6706" + ], + "x-ms-correlation-request-id": [ + "69b8fd5e-39f5-4a05-b3c3-ad6eceee6706" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:69b8fd5e-39f5-4a05-b3c3-ad6eceee6706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a724263-1594-4061-ba17-1ee48550066c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10549" + ], + "x-ms-request-id": [ + "8c11f23f-76cb-4bc4-969a-4cd955a7f9c5" + ], + "x-ms-correlation-request-id": [ + "8c11f23f-76cb-4bc4-969a-4cd955a7f9c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021048Z:8c11f23f-76cb-4bc4-969a-4cd955a7f9c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22bfefa8-6b77-4010-88dd-03084c553688" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10548" + ], + "x-ms-request-id": [ + "c2a99cda-11fc-46b9-a8c2-a62bd4677207" + ], + "x-ms-correlation-request-id": [ + "c2a99cda-11fc-46b9-a8c2-a62bd4677207" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:c2a99cda-11fc-46b9-a8c2-a62bd4677207" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ac17c0a-58fa-4546-9ed4-24d77f716a5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10547" + ], + "x-ms-request-id": [ + "195dcec7-575b-4dc6-97ca-553c5a15c00c" + ], + "x-ms-correlation-request-id": [ + "195dcec7-575b-4dc6-97ca-553c5a15c00c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:195dcec7-575b-4dc6-97ca-553c5a15c00c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9ee78e8-d0e0-4be4-9d55-b6b7650c09ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10546" + ], + "x-ms-request-id": [ + "18467c9e-d683-41a1-ab19-796c635ee0b6" + ], + "x-ms-correlation-request-id": [ + "18467c9e-d683-41a1-ab19-796c635ee0b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:18467c9e-d683-41a1-ab19-796c635ee0b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "770bb497-fcec-414f-a914-09bac2d46889" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10545" + ], + "x-ms-request-id": [ + "3d2cec59-3ac4-4712-9bb6-fc5d8ac99aaf" + ], + "x-ms-correlation-request-id": [ + "3d2cec59-3ac4-4712-9bb6-fc5d8ac99aaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:3d2cec59-3ac4-4712-9bb6-fc5d8ac99aaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "985ccf60-1daa-4646-b186-da98b2ad762b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10544" + ], + "x-ms-request-id": [ + "b3b63e5b-1406-47f5-a59e-662cd9dd1c08" + ], + "x-ms-correlation-request-id": [ + "b3b63e5b-1406-47f5-a59e-662cd9dd1c08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:b3b63e5b-1406-47f5-a59e-662cd9dd1c08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d18db748-f826-4807-b2de-d05aed4f905f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10543" + ], + "x-ms-request-id": [ + "3acfffcc-36a8-4cd7-a028-34180a1add80" + ], + "x-ms-correlation-request-id": [ + "3acfffcc-36a8-4cd7-a028-34180a1add80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021049Z:3acfffcc-36a8-4cd7-a028-34180a1add80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "300f187a-750f-4e03-a611-03b00018521f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10542" + ], + "x-ms-request-id": [ + "0cd26112-25c9-4ea7-bc2a-8ec8eb956ca9" + ], + "x-ms-correlation-request-id": [ + "0cd26112-25c9-4ea7-bc2a-8ec8eb956ca9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:0cd26112-25c9-4ea7-bc2a-8ec8eb956ca9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f489de6-bd52-4a68-9222-9da108bf7d9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10541" + ], + "x-ms-request-id": [ + "27cd659d-a432-49a1-af3e-bb3f9ae20762" + ], + "x-ms-correlation-request-id": [ + "27cd659d-a432-49a1-af3e-bb3f9ae20762" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:27cd659d-a432-49a1-af3e-bb3f9ae20762" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4e10c44-c842-41a9-8f79-9f7103cf35a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10540" + ], + "x-ms-request-id": [ + "75fd7bf2-16af-4ea0-b082-577814b38bb6" + ], + "x-ms-correlation-request-id": [ + "75fd7bf2-16af-4ea0-b082-577814b38bb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:75fd7bf2-16af-4ea0-b082-577814b38bb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b069412-e198-4b34-864c-b7727844e9fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10539" + ], + "x-ms-request-id": [ + "7eb708b8-918c-40a7-a723-6967361b0588" + ], + "x-ms-correlation-request-id": [ + "7eb708b8-918c-40a7-a723-6967361b0588" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:7eb708b8-918c-40a7-a723-6967361b0588" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5de679c-c20e-4268-b274-7e3f6dd2803f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10538" + ], + "x-ms-request-id": [ + "6f54df19-8b00-406a-aeb2-5e0130bccad5" + ], + "x-ms-correlation-request-id": [ + "6f54df19-8b00-406a-aeb2-5e0130bccad5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:6f54df19-8b00-406a-aeb2-5e0130bccad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53f11e35-95f8-4a40-9c4f-f5e76e9b197e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10537" + ], + "x-ms-request-id": [ + "ce507980-930f-4c58-b559-26c009817e9e" + ], + "x-ms-correlation-request-id": [ + "ce507980-930f-4c58-b559-26c009817e9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021050Z:ce507980-930f-4c58-b559-26c009817e9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a614ab8-c627-4815-86e6-9d65407bd073" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10536" + ], + "x-ms-request-id": [ + "3705f682-dd7a-43d7-8da5-b4439fc131b0" + ], + "x-ms-correlation-request-id": [ + "3705f682-dd7a-43d7-8da5-b4439fc131b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021051Z:3705f682-dd7a-43d7-8da5-b4439fc131b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a69423f4-d511-482a-9a14-82675ec1b194" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10535" + ], + "x-ms-request-id": [ + "cf12adc5-f848-487a-80b1-b4f9a650be80" + ], + "x-ms-correlation-request-id": [ + "cf12adc5-f848-487a-80b1-b4f9a650be80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021051Z:cf12adc5-f848-487a-80b1-b4f9a650be80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56c8e79a-974e-4056-9e77-f905203e37b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10534" + ], + "x-ms-request-id": [ + "82a31d03-35fc-477a-93dd-bce40013c00e" + ], + "x-ms-correlation-request-id": [ + "82a31d03-35fc-477a-93dd-bce40013c00e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021051Z:82a31d03-35fc-477a-93dd-bce40013c00e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15d1a00e-7021-49e1-983a-f28d5e9d4975" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10533" + ], + "x-ms-request-id": [ + "6fe99d5e-d436-4240-a428-8d6c3eadb9a5" + ], + "x-ms-correlation-request-id": [ + "6fe99d5e-d436-4240-a428-8d6c3eadb9a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021051Z:6fe99d5e-d436-4240-a428-8d6c3eadb9a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c717e4e0-a180-4313-93b0-2acdc97beca8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10532" + ], + "x-ms-request-id": [ + "abffb306-ba6f-43c7-9cee-5ca5b333064d" + ], + "x-ms-correlation-request-id": [ + "abffb306-ba6f-43c7-9cee-5ca5b333064d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021051Z:abffb306-ba6f-43c7-9cee-5ca5b333064d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07384dc4-17e9-4b7e-972f-ab7696e445c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10531" + ], + "x-ms-request-id": [ + "de5b0fd3-bf87-4312-b5a7-ffa045f2386f" + ], + "x-ms-correlation-request-id": [ + "de5b0fd3-bf87-4312-b5a7-ffa045f2386f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:de5b0fd3-bf87-4312-b5a7-ffa045f2386f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa0d0324-871a-4c76-ad16-0413a4855c29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10530" + ], + "x-ms-request-id": [ + "3fa97fbd-bc56-4caa-ab12-b774fa0a6cad" + ], + "x-ms-correlation-request-id": [ + "3fa97fbd-bc56-4caa-ab12-b774fa0a6cad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:3fa97fbd-bc56-4caa-ab12-b774fa0a6cad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e00f3ea-7541-4329-b39b-cb44289c1739" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10529" + ], + "x-ms-request-id": [ + "1bfeba2d-dde1-4559-9f77-3db13753f200" + ], + "x-ms-correlation-request-id": [ + "1bfeba2d-dde1-4559-9f77-3db13753f200" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:1bfeba2d-dde1-4559-9f77-3db13753f200" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1800c69-058b-42f9-b093-e8071427576c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10528" + ], + "x-ms-request-id": [ + "3435170c-e61f-4126-946d-1eecde1625d9" + ], + "x-ms-correlation-request-id": [ + "3435170c-e61f-4126-946d-1eecde1625d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:3435170c-e61f-4126-946d-1eecde1625d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "219857a9-56ce-44bb-aeeb-0bc965f4e3b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10527" + ], + "x-ms-request-id": [ + "db5e1e74-bc0d-4ccc-a4ce-13894cd244f0" + ], + "x-ms-correlation-request-id": [ + "db5e1e74-bc0d-4ccc-a4ce-13894cd244f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:db5e1e74-bc0d-4ccc-a4ce-13894cd244f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d211844f-5263-410b-a0f6-09ff5322f27c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10526" + ], + "x-ms-request-id": [ + "ef94cdd2-cb3d-44c4-8f34-56d863ba7535" + ], + "x-ms-correlation-request-id": [ + "ef94cdd2-cb3d-44c4-8f34-56d863ba7535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:ef94cdd2-cb3d-44c4-8f34-56d863ba7535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c36b3f5-cc3d-40d3-b64b-9d52e4df5400" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10525" + ], + "x-ms-request-id": [ + "6eb662d0-66cb-43dc-8f84-55b71c58e2d2" + ], + "x-ms-correlation-request-id": [ + "6eb662d0-66cb-43dc-8f84-55b71c58e2d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021052Z:6eb662d0-66cb-43dc-8f84-55b71c58e2d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fc63f27-a213-418e-a307-4c0eccdc308e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10524" + ], + "x-ms-request-id": [ + "1a3d0908-7615-4211-ad88-4c5a5250a1a3" + ], + "x-ms-correlation-request-id": [ + "1a3d0908-7615-4211-ad88-4c5a5250a1a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:1a3d0908-7615-4211-ad88-4c5a5250a1a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "230ddd21-9356-42fb-bf4d-fac90f5f0b3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10523" + ], + "x-ms-request-id": [ + "8f2fb78b-4ef1-4df1-a4e2-86cb427e8500" + ], + "x-ms-correlation-request-id": [ + "8f2fb78b-4ef1-4df1-a4e2-86cb427e8500" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:8f2fb78b-4ef1-4df1-a4e2-86cb427e8500" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "676ee579-4361-4a9e-a041-d1cd5484360d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10522" + ], + "x-ms-request-id": [ + "da1acb2e-c9ba-49ec-8256-84ebac4ffd92" + ], + "x-ms-correlation-request-id": [ + "da1acb2e-c9ba-49ec-8256-84ebac4ffd92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:da1acb2e-c9ba-49ec-8256-84ebac4ffd92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc57315c-5479-4814-ab45-db7c7665c915" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10521" + ], + "x-ms-request-id": [ + "b68d4f42-9389-45df-a355-e32d0bf6953b" + ], + "x-ms-correlation-request-id": [ + "b68d4f42-9389-45df-a355-e32d0bf6953b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:b68d4f42-9389-45df-a355-e32d0bf6953b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d30e59fb-d5fc-4d15-8365-864577e8e09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10520" + ], + "x-ms-request-id": [ + "3696aa58-f3ea-4b7c-ac9b-59151d19936d" + ], + "x-ms-correlation-request-id": [ + "3696aa58-f3ea-4b7c-ac9b-59151d19936d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:3696aa58-f3ea-4b7c-ac9b-59151d19936d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e571b1cd-17da-4f64-9f10-66b4ee78bb9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10519" + ], + "x-ms-request-id": [ + "1fcf3e53-b67d-49da-84a7-c6371969af81" + ], + "x-ms-correlation-request-id": [ + "1fcf3e53-b67d-49da-84a7-c6371969af81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021053Z:1fcf3e53-b67d-49da-84a7-c6371969af81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f77c9c0-a179-446f-ae50-f8c3bf3adb38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10518" + ], + "x-ms-request-id": [ + "5af287bc-ed17-45f6-9391-02db24f6ae73" + ], + "x-ms-correlation-request-id": [ + "5af287bc-ed17-45f6-9391-02db24f6ae73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021054Z:5af287bc-ed17-45f6-9391-02db24f6ae73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6760e736-73dd-4efe-ac01-0ebb9e26a082" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10517" + ], + "x-ms-request-id": [ + "e61c0299-9dc1-4a7d-a7bd-143f7a232171" + ], + "x-ms-correlation-request-id": [ + "e61c0299-9dc1-4a7d-a7bd-143f7a232171" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021054Z:e61c0299-9dc1-4a7d-a7bd-143f7a232171" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "415d3564-f5c0-447e-b4b2-f8bbec56688a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10516" + ], + "x-ms-request-id": [ + "42a17bbc-e44c-49bc-a9ee-4456aa82f353" + ], + "x-ms-correlation-request-id": [ + "42a17bbc-e44c-49bc-a9ee-4456aa82f353" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021054Z:42a17bbc-e44c-49bc-a9ee-4456aa82f353" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "240fbd90-2bfe-4ef7-8485-526c5a6045f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10515" + ], + "x-ms-request-id": [ + "4cff2cfb-3e93-4f2e-90e8-798d64ce06e7" + ], + "x-ms-correlation-request-id": [ + "4cff2cfb-3e93-4f2e-90e8-798d64ce06e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:4cff2cfb-3e93-4f2e-90e8-798d64ce06e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "582f5ce6-7ed0-48cf-9947-85579f986460" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10514" + ], + "x-ms-request-id": [ + "2967d6d9-6a9c-4e4e-a2df-ba1316c1506c" + ], + "x-ms-correlation-request-id": [ + "2967d6d9-6a9c-4e4e-a2df-ba1316c1506c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:2967d6d9-6a9c-4e4e-a2df-ba1316c1506c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc9c4db-561a-41f8-8f65-fc9d88f90aed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10513" + ], + "x-ms-request-id": [ + "4d1ed293-d148-4c22-a839-b4faff4d4df7" + ], + "x-ms-correlation-request-id": [ + "4d1ed293-d148-4c22-a839-b4faff4d4df7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:4d1ed293-d148-4c22-a839-b4faff4d4df7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "722c8cd9-52ca-4209-b699-85d711f6c4b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10512" + ], + "x-ms-request-id": [ + "984023e4-1156-4b18-bf45-3022076ff2fa" + ], + "x-ms-correlation-request-id": [ + "984023e4-1156-4b18-bf45-3022076ff2fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:984023e4-1156-4b18-bf45-3022076ff2fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e97f23-6266-40f4-9f17-000339239598" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10511" + ], + "x-ms-request-id": [ + "5c9684ff-e086-4844-b527-5306bd217e9e" + ], + "x-ms-correlation-request-id": [ + "5c9684ff-e086-4844-b527-5306bd217e9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:5c9684ff-e086-4844-b527-5306bd217e9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed2240ed-640d-4350-ba0f-178460d7e49c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10510" + ], + "x-ms-request-id": [ + "b43cb834-6194-4934-8ea9-74a80b55405c" + ], + "x-ms-correlation-request-id": [ + "b43cb834-6194-4934-8ea9-74a80b55405c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021055Z:b43cb834-6194-4934-8ea9-74a80b55405c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "625f6bb0-3458-48fc-be5e-4fdae2754aac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10509" + ], + "x-ms-request-id": [ + "ea93350b-4b21-479c-9502-7f84fa58b239" + ], + "x-ms-correlation-request-id": [ + "ea93350b-4b21-479c-9502-7f84fa58b239" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:ea93350b-4b21-479c-9502-7f84fa58b239" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12d4d602-80ec-4568-a393-efa45343b1a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10508" + ], + "x-ms-request-id": [ + "eeb5b7f9-5c95-4355-ae0d-5d5ca7a92431" + ], + "x-ms-correlation-request-id": [ + "eeb5b7f9-5c95-4355-ae0d-5d5ca7a92431" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:eeb5b7f9-5c95-4355-ae0d-5d5ca7a92431" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ddc4014-145a-4954-a56e-d28e603fa7eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10507" + ], + "x-ms-request-id": [ + "493cc814-b114-4fe6-84b1-69f54674e406" + ], + "x-ms-correlation-request-id": [ + "493cc814-b114-4fe6-84b1-69f54674e406" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:493cc814-b114-4fe6-84b1-69f54674e406" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9622f07b-6eb3-4524-a02f-49db693471dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10506" + ], + "x-ms-request-id": [ + "6615482d-fde9-4b6a-9962-83389d39b531" + ], + "x-ms-correlation-request-id": [ + "6615482d-fde9-4b6a-9962-83389d39b531" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:6615482d-fde9-4b6a-9962-83389d39b531" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c87e0ad-66ab-4ba6-b850-afbecba613fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10505" + ], + "x-ms-request-id": [ + "74c9ac7b-8ca0-4fe3-9b21-59bccf33237a" + ], + "x-ms-correlation-request-id": [ + "74c9ac7b-8ca0-4fe3-9b21-59bccf33237a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:74c9ac7b-8ca0-4fe3-9b21-59bccf33237a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0df36e8a-3665-424d-ae05-35c43032c36d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10504" + ], + "x-ms-request-id": [ + "24bed0f9-136a-438f-861b-42ce22a07050" + ], + "x-ms-correlation-request-id": [ + "24bed0f9-136a-438f-861b-42ce22a07050" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:24bed0f9-136a-438f-861b-42ce22a07050" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07d98746-c247-47df-a7bb-02cc9a02d3d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10503" + ], + "x-ms-request-id": [ + "ef34d296-7d39-4b10-b771-924274757654" + ], + "x-ms-correlation-request-id": [ + "ef34d296-7d39-4b10-b771-924274757654" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021056Z:ef34d296-7d39-4b10-b771-924274757654" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b201b03-49bf-431b-97ca-c8457dceea14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10502" + ], + "x-ms-request-id": [ + "42239456-3f18-417b-9c65-8c72d59c83ec" + ], + "x-ms-correlation-request-id": [ + "42239456-3f18-417b-9c65-8c72d59c83ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:42239456-3f18-417b-9c65-8c72d59c83ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2a95622-f7bd-448c-9d03-e2beff1227da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10501" + ], + "x-ms-request-id": [ + "1492886c-0766-44bc-adeb-27a7998c2753" + ], + "x-ms-correlation-request-id": [ + "1492886c-0766-44bc-adeb-27a7998c2753" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:1492886c-0766-44bc-adeb-27a7998c2753" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4915771-3cfc-44c1-9f89-9f1b8b91ba0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10500" + ], + "x-ms-request-id": [ + "b2e3aa3a-e6b5-40f7-a9d9-38670946cdb6" + ], + "x-ms-correlation-request-id": [ + "b2e3aa3a-e6b5-40f7-a9d9-38670946cdb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:b2e3aa3a-e6b5-40f7-a9d9-38670946cdb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e313887e-99b4-4cd7-993b-9bcd029be626" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10499" + ], + "x-ms-request-id": [ + "707c53c4-e670-47c4-af2d-e5a9c40c9169" + ], + "x-ms-correlation-request-id": [ + "707c53c4-e670-47c4-af2d-e5a9c40c9169" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:707c53c4-e670-47c4-af2d-e5a9c40c9169" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa142639-b00e-4693-9b10-9411e9c9436e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10498" + ], + "x-ms-request-id": [ + "ce070abe-8615-49f4-95eb-9210e083f4e5" + ], + "x-ms-correlation-request-id": [ + "ce070abe-8615-49f4-95eb-9210e083f4e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:ce070abe-8615-49f4-95eb-9210e083f4e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8be3c0b7-6e56-45e5-a05e-bd3aaa860e26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10497" + ], + "x-ms-request-id": [ + "e0e55cd7-b895-457c-a0d8-679f2ae6df0b" + ], + "x-ms-correlation-request-id": [ + "e0e55cd7-b895-457c-a0d8-679f2ae6df0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021057Z:e0e55cd7-b895-457c-a0d8-679f2ae6df0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f3293b3-0df5-4414-8cab-b719d198bb55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10496" + ], + "x-ms-request-id": [ + "10ca80fe-e2b0-4c16-85e8-2e89ca539ff0" + ], + "x-ms-correlation-request-id": [ + "10ca80fe-e2b0-4c16-85e8-2e89ca539ff0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:10ca80fe-e2b0-4c16-85e8-2e89ca539ff0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8df2a79e-131c-4ca8-89e8-64dbb240c93e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10495" + ], + "x-ms-request-id": [ + "2a2b22c5-c7b0-4255-8212-4041eb04e0db" + ], + "x-ms-correlation-request-id": [ + "2a2b22c5-c7b0-4255-8212-4041eb04e0db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:2a2b22c5-c7b0-4255-8212-4041eb04e0db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b2f8eb9-36f1-4a63-9023-c62e47384817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10494" + ], + "x-ms-request-id": [ + "d98113e6-fe52-4b87-8a25-00681798dae6" + ], + "x-ms-correlation-request-id": [ + "d98113e6-fe52-4b87-8a25-00681798dae6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:d98113e6-fe52-4b87-8a25-00681798dae6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "210e70ae-971a-4acf-9293-bd045cbe269b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10493" + ], + "x-ms-request-id": [ + "0b675124-6cc5-4f5d-984b-0fbd811931dd" + ], + "x-ms-correlation-request-id": [ + "0b675124-6cc5-4f5d-984b-0fbd811931dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:0b675124-6cc5-4f5d-984b-0fbd811931dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6c6dac3-87f3-419b-baa5-135f48fe132d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10492" + ], + "x-ms-request-id": [ + "615353f0-2fb3-4360-84dd-3db2595d7bfc" + ], + "x-ms-correlation-request-id": [ + "615353f0-2fb3-4360-84dd-3db2595d7bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:615353f0-2fb3-4360-84dd-3db2595d7bfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d29099cd-4793-4912-9d1b-c82a7d2669e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10491" + ], + "x-ms-request-id": [ + "cdbff6f8-222a-49a6-a53b-035f4f3e806c" + ], + "x-ms-correlation-request-id": [ + "cdbff6f8-222a-49a6-a53b-035f4f3e806c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021058Z:cdbff6f8-222a-49a6-a53b-035f4f3e806c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b267718f-4e0d-4af4-a6d0-5733c7ab6b6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10490" + ], + "x-ms-request-id": [ + "7d8efc16-930b-42d5-b991-13b357f613a1" + ], + "x-ms-correlation-request-id": [ + "7d8efc16-930b-42d5-b991-13b357f613a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:7d8efc16-930b-42d5-b991-13b357f613a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f1d37cd-68bb-4baf-be6e-29e90fd1c7d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10489" + ], + "x-ms-request-id": [ + "6b693ea7-4be0-4d13-8018-0e49da401502" + ], + "x-ms-correlation-request-id": [ + "6b693ea7-4be0-4d13-8018-0e49da401502" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:6b693ea7-4be0-4d13-8018-0e49da401502" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c38894ba-4a5d-4df6-a82e-777588f1a4fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10488" + ], + "x-ms-request-id": [ + "09f0ddc1-73de-4fe9-9d9b-9a3cb98ec6e6" + ], + "x-ms-correlation-request-id": [ + "09f0ddc1-73de-4fe9-9d9b-9a3cb98ec6e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:09f0ddc1-73de-4fe9-9d9b-9a3cb98ec6e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c39edd7-e42c-4c1d-a999-29c4b5f4b73e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10487" + ], + "x-ms-request-id": [ + "c9ac0cb4-acf8-4d95-9710-41d704607f20" + ], + "x-ms-correlation-request-id": [ + "c9ac0cb4-acf8-4d95-9710-41d704607f20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:c9ac0cb4-acf8-4d95-9710-41d704607f20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f08afa8-c64b-4de2-a651-8d11fb441533" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10486" + ], + "x-ms-request-id": [ + "11f87acd-14c4-4180-93b9-10883dd7ce98" + ], + "x-ms-correlation-request-id": [ + "11f87acd-14c4-4180-93b9-10883dd7ce98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:11f87acd-14c4-4180-93b9-10883dd7ce98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6e33ac4-2ad3-4878-88d0-909af61020c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10485" + ], + "x-ms-request-id": [ + "68c9b728-aa57-4584-8b18-e788364c2412" + ], + "x-ms-correlation-request-id": [ + "68c9b728-aa57-4584-8b18-e788364c2412" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021059Z:68c9b728-aa57-4584-8b18-e788364c2412" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b68f8a0-9222-4db2-b8f1-d400b06594d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10484" + ], + "x-ms-request-id": [ + "9e0ab4d5-a494-4d97-b481-36adbaaffeb3" + ], + "x-ms-correlation-request-id": [ + "9e0ab4d5-a494-4d97-b481-36adbaaffeb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:9e0ab4d5-a494-4d97-b481-36adbaaffeb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:10: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ed0d059-b09c-471a-ac51-186426d2acd4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10483" + ], + "x-ms-request-id": [ + "7d5b1c3b-827a-4681-ac95-6137b92d0eec" + ], + "x-ms-correlation-request-id": [ + "7d5b1c3b-827a-4681-ac95-6137b92d0eec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:7d5b1c3b-827a-4681-ac95-6137b92d0eec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ffe8a1a-e7e5-40b3-a311-63c7a8871dc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10482" + ], + "x-ms-request-id": [ + "266cbc9b-601f-4799-aaaa-de14c04fd5ad" + ], + "x-ms-correlation-request-id": [ + "266cbc9b-601f-4799-aaaa-de14c04fd5ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:266cbc9b-601f-4799-aaaa-de14c04fd5ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2085c7cf-7a31-401b-87d5-4b79fc63c12b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10481" + ], + "x-ms-request-id": [ + "85f1d550-fbcf-48ab-a9a6-4a6c65033b74" + ], + "x-ms-correlation-request-id": [ + "85f1d550-fbcf-48ab-a9a6-4a6c65033b74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:85f1d550-fbcf-48ab-a9a6-4a6c65033b74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "346e24fd-204b-4ed1-ab8a-ad80f8513ef1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10480" + ], + "x-ms-request-id": [ + "a7bbbae2-f167-45de-a25a-d4f181638f3a" + ], + "x-ms-correlation-request-id": [ + "a7bbbae2-f167-45de-a25a-d4f181638f3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:a7bbbae2-f167-45de-a25a-d4f181638f3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f387c61-5766-4c4a-acb4-074fee06d9ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10479" + ], + "x-ms-request-id": [ + "1479aff6-cd4c-49bf-8ee9-6e009198dab7" + ], + "x-ms-correlation-request-id": [ + "1479aff6-cd4c-49bf-8ee9-6e009198dab7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021100Z:1479aff6-cd4c-49bf-8ee9-6e009198dab7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1a84b6b-4ebf-47cb-9cc1-0a0d3dc0d2e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10478" + ], + "x-ms-request-id": [ + "3569e956-fd1d-44b4-9956-bb2f156a35e9" + ], + "x-ms-correlation-request-id": [ + "3569e956-fd1d-44b4-9956-bb2f156a35e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021101Z:3569e956-fd1d-44b4-9956-bb2f156a35e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec7047e-4c3b-47ce-ab69-b5fa978ef5df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10477" + ], + "x-ms-request-id": [ + "ea2e1dfe-d3d2-410b-8867-ce826999099f" + ], + "x-ms-correlation-request-id": [ + "ea2e1dfe-d3d2-410b-8867-ce826999099f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021101Z:ea2e1dfe-d3d2-410b-8867-ce826999099f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f50ab7d5-2f2d-495d-a359-688c9d3d6b0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10476" + ], + "x-ms-request-id": [ + "474100bf-0e59-4d5c-9230-8c6234f4c192" + ], + "x-ms-correlation-request-id": [ + "474100bf-0e59-4d5c-9230-8c6234f4c192" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021101Z:474100bf-0e59-4d5c-9230-8c6234f4c192" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef5ef656-d055-45d1-89f6-8f65e73c5176" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10475" + ], + "x-ms-request-id": [ + "81bbbc88-177a-43c6-beea-24449e47f9fa" + ], + "x-ms-correlation-request-id": [ + "81bbbc88-177a-43c6-beea-24449e47f9fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021101Z:81bbbc88-177a-43c6-beea-24449e47f9fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51649a4a-57ed-48a3-a650-1e96a86ea48f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10474" + ], + "x-ms-request-id": [ + "52e3aed9-e779-4374-8724-95f94c53d848" + ], + "x-ms-correlation-request-id": [ + "52e3aed9-e779-4374-8724-95f94c53d848" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021101Z:52e3aed9-e779-4374-8724-95f94c53d848" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42f365af-2e15-4694-9664-44438dfc9d47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10473" + ], + "x-ms-request-id": [ + "d32eb49f-8840-48b1-b4da-267f5e68ba40" + ], + "x-ms-correlation-request-id": [ + "d32eb49f-8840-48b1-b4da-267f5e68ba40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:d32eb49f-8840-48b1-b4da-267f5e68ba40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71174304-9c76-4fc9-a888-83d9e7b1fba7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10472" + ], + "x-ms-request-id": [ + "c22de209-d100-4cce-937d-7d56bf18a658" + ], + "x-ms-correlation-request-id": [ + "c22de209-d100-4cce-937d-7d56bf18a658" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:c22de209-d100-4cce-937d-7d56bf18a658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae7fdbca-9577-468e-961b-6a8b7a995958" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10471" + ], + "x-ms-request-id": [ + "58f3ed8b-7146-4883-8cc0-58e9ddb2318b" + ], + "x-ms-correlation-request-id": [ + "58f3ed8b-7146-4883-8cc0-58e9ddb2318b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:58f3ed8b-7146-4883-8cc0-58e9ddb2318b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0152c1a-29fc-4267-884a-81d3f3ecc492" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10470" + ], + "x-ms-request-id": [ + "e681b7fa-7c52-4804-93f2-3a512971596d" + ], + "x-ms-correlation-request-id": [ + "e681b7fa-7c52-4804-93f2-3a512971596d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:e681b7fa-7c52-4804-93f2-3a512971596d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb289d3b-7ef9-4eae-81d4-9f78a3f9daee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10469" + ], + "x-ms-request-id": [ + "ca29b978-c6b1-4478-825d-57d7f5dd2749" + ], + "x-ms-correlation-request-id": [ + "ca29b978-c6b1-4478-825d-57d7f5dd2749" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:ca29b978-c6b1-4478-825d-57d7f5dd2749" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8cc597f-f3f5-4e26-b9d2-94e25d90939d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10468" + ], + "x-ms-request-id": [ + "727a7dd6-8241-435e-ae04-ae1ffe91c59d" + ], + "x-ms-correlation-request-id": [ + "727a7dd6-8241-435e-ae04-ae1ffe91c59d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021102Z:727a7dd6-8241-435e-ae04-ae1ffe91c59d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3572af58-99db-45e0-bee1-3767bbc1b623" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10467" + ], + "x-ms-request-id": [ + "601d6769-0c3f-4b46-9235-1ff1fb67dbf2" + ], + "x-ms-correlation-request-id": [ + "601d6769-0c3f-4b46-9235-1ff1fb67dbf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:601d6769-0c3f-4b46-9235-1ff1fb67dbf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a739547b-3c69-4bd4-985f-048a9b8011b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10466" + ], + "x-ms-request-id": [ + "4a2578ff-594e-4c39-be4b-8c83f106730d" + ], + "x-ms-correlation-request-id": [ + "4a2578ff-594e-4c39-be4b-8c83f106730d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:4a2578ff-594e-4c39-be4b-8c83f106730d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "552759a0-d349-444f-a3d3-d8c754df6ecc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10465" + ], + "x-ms-request-id": [ + "1753ed59-bb62-4335-b2c3-1dc875b0c6a1" + ], + "x-ms-correlation-request-id": [ + "1753ed59-bb62-4335-b2c3-1dc875b0c6a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:1753ed59-bb62-4335-b2c3-1dc875b0c6a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "604d94d9-3665-44d8-ac77-0f3b57663d98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10464" + ], + "x-ms-request-id": [ + "30b7c848-2f47-40cd-ac1e-7dad108dfc76" + ], + "x-ms-correlation-request-id": [ + "30b7c848-2f47-40cd-ac1e-7dad108dfc76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:30b7c848-2f47-40cd-ac1e-7dad108dfc76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11882f5d-b0f5-48e4-84ac-b276a30b2a87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10463" + ], + "x-ms-request-id": [ + "f332b5d2-f6a6-40b9-b96f-510dc4485781" + ], + "x-ms-correlation-request-id": [ + "f332b5d2-f6a6-40b9-b96f-510dc4485781" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:f332b5d2-f6a6-40b9-b96f-510dc4485781" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a36bcc2d-54aa-4133-a930-205f580424b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10462" + ], + "x-ms-request-id": [ + "07927d41-601b-462f-a3f8-a55dc21bfbb8" + ], + "x-ms-correlation-request-id": [ + "07927d41-601b-462f-a3f8-a55dc21bfbb8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021103Z:07927d41-601b-462f-a3f8-a55dc21bfbb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60cad4fd-7708-4d7c-8a9c-ba4239a938fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10461" + ], + "x-ms-request-id": [ + "afe11337-49e1-4599-86e3-6489e31c008b" + ], + "x-ms-correlation-request-id": [ + "afe11337-49e1-4599-86e3-6489e31c008b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:afe11337-49e1-4599-86e3-6489e31c008b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2866a5d7-3a4f-4404-b462-78cdf95b8d0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10460" + ], + "x-ms-request-id": [ + "955cc345-10f1-475b-ac06-9d1179f2e680" + ], + "x-ms-correlation-request-id": [ + "955cc345-10f1-475b-ac06-9d1179f2e680" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:955cc345-10f1-475b-ac06-9d1179f2e680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b01e3831-b441-4c5c-a9f6-d0e1a7ce80fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10459" + ], + "x-ms-request-id": [ + "691ec464-e2d3-4b72-ac2f-ec20e4bf3250" + ], + "x-ms-correlation-request-id": [ + "691ec464-e2d3-4b72-ac2f-ec20e4bf3250" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:691ec464-e2d3-4b72-ac2f-ec20e4bf3250" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c619048b-8ef5-4491-9e04-42d964761dc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10458" + ], + "x-ms-request-id": [ + "c2df8e3b-df5c-4e71-bfe0-7bc8ceb26e94" + ], + "x-ms-correlation-request-id": [ + "c2df8e3b-df5c-4e71-bfe0-7bc8ceb26e94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:c2df8e3b-df5c-4e71-bfe0-7bc8ceb26e94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f15b3fb1-a133-4a09-a9e1-9badf5d1636c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10457" + ], + "x-ms-request-id": [ + "a7b23df3-3d4c-4847-9622-ab02d1aa05fe" + ], + "x-ms-correlation-request-id": [ + "a7b23df3-3d4c-4847-9622-ab02d1aa05fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:a7b23df3-3d4c-4847-9622-ab02d1aa05fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b635c96-4ef4-496a-871a-a812feb75961" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10456" + ], + "x-ms-request-id": [ + "f85c9045-bb53-4a7a-a489-e3ef8744e44e" + ], + "x-ms-correlation-request-id": [ + "f85c9045-bb53-4a7a-a489-e3ef8744e44e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021104Z:f85c9045-bb53-4a7a-a489-e3ef8744e44e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1136c38f-2c3e-4a6b-91cb-d6a5bb3420e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10455" + ], + "x-ms-request-id": [ + "79e7303e-f770-40c7-a6a3-48a3217953ad" + ], + "x-ms-correlation-request-id": [ + "79e7303e-f770-40c7-a6a3-48a3217953ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:79e7303e-f770-40c7-a6a3-48a3217953ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf6fb2e9-ed85-4777-9a5f-6f130ef4e2b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10454" + ], + "x-ms-request-id": [ + "1283fb1f-dbdc-4e3c-b4e9-a2fac4d59369" + ], + "x-ms-correlation-request-id": [ + "1283fb1f-dbdc-4e3c-b4e9-a2fac4d59369" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:1283fb1f-dbdc-4e3c-b4e9-a2fac4d59369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66846c68-051a-4127-968c-0ac03ba6decd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10453" + ], + "x-ms-request-id": [ + "13ed089a-4002-41ad-a944-89cbf7be967e" + ], + "x-ms-correlation-request-id": [ + "13ed089a-4002-41ad-a944-89cbf7be967e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:13ed089a-4002-41ad-a944-89cbf7be967e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94e4bdd0-d8e5-40e6-aa2b-91fcdb1ea4f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10452" + ], + "x-ms-request-id": [ + "95ff0729-648f-4cec-b5aa-f1155d3f5d94" + ], + "x-ms-correlation-request-id": [ + "95ff0729-648f-4cec-b5aa-f1155d3f5d94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:95ff0729-648f-4cec-b5aa-f1155d3f5d94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2374f5-750b-432a-985c-8a4e51865f85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10451" + ], + "x-ms-request-id": [ + "b7be5391-487b-4936-844c-6d1b99b533d3" + ], + "x-ms-correlation-request-id": [ + "b7be5391-487b-4936-844c-6d1b99b533d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:b7be5391-487b-4936-844c-6d1b99b533d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8968d55b-93b3-496f-8028-d715499d18a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10450" + ], + "x-ms-request-id": [ + "b81e64a8-7beb-4091-9f74-ca963d22cedc" + ], + "x-ms-correlation-request-id": [ + "b81e64a8-7beb-4091-9f74-ca963d22cedc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021105Z:b81e64a8-7beb-4091-9f74-ca963d22cedc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dfa192f-8b67-46a2-b573-ff4e09d1e0d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10449" + ], + "x-ms-request-id": [ + "e1da5d81-5996-4d68-9ad9-f80c934b7fcc" + ], + "x-ms-correlation-request-id": [ + "e1da5d81-5996-4d68-9ad9-f80c934b7fcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:e1da5d81-5996-4d68-9ad9-f80c934b7fcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76d5df55-2bfb-4477-bbd6-b14778bf3e7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10448" + ], + "x-ms-request-id": [ + "2e406607-6040-499e-9a91-ebf6bff5cbcc" + ], + "x-ms-correlation-request-id": [ + "2e406607-6040-499e-9a91-ebf6bff5cbcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:2e406607-6040-499e-9a91-ebf6bff5cbcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5de1d92b-91a8-4776-9f2c-7ec05330763c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10447" + ], + "x-ms-request-id": [ + "b5ca2850-93be-461d-9f51-0c11a65f4777" + ], + "x-ms-correlation-request-id": [ + "b5ca2850-93be-461d-9f51-0c11a65f4777" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:b5ca2850-93be-461d-9f51-0c11a65f4777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a21d8334-61f7-4fe3-bd59-397471e3833c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10446" + ], + "x-ms-request-id": [ + "462121bd-700f-4e7c-9e00-7ee894c0cc39" + ], + "x-ms-correlation-request-id": [ + "462121bd-700f-4e7c-9e00-7ee894c0cc39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:462121bd-700f-4e7c-9e00-7ee894c0cc39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2788fb4-73e7-4cab-8de5-f3bce55b006c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10445" + ], + "x-ms-request-id": [ + "cc14fcc5-efb9-4ee6-aaaf-0d6323d54c1a" + ], + "x-ms-correlation-request-id": [ + "cc14fcc5-efb9-4ee6-aaaf-0d6323d54c1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:cc14fcc5-efb9-4ee6-aaaf-0d6323d54c1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9043711d-e59c-42ee-9c3c-09801d6aecde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10444" + ], + "x-ms-request-id": [ + "703bb0ca-4901-43bd-8032-0a5f91314f02" + ], + "x-ms-correlation-request-id": [ + "703bb0ca-4901-43bd-8032-0a5f91314f02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:703bb0ca-4901-43bd-8032-0a5f91314f02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef13e030-3508-4886-a773-2b5532f002ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10443" + ], + "x-ms-request-id": [ + "4cd1cf13-3b08-4c30-a93e-2a0edd1bdbcc" + ], + "x-ms-correlation-request-id": [ + "4cd1cf13-3b08-4c30-a93e-2a0edd1bdbcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021106Z:4cd1cf13-3b08-4c30-a93e-2a0edd1bdbcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b45625a-e4d1-4c87-9205-06d1be91dde2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10442" + ], + "x-ms-request-id": [ + "cc5003f8-a5bc-4285-891a-da5e3fa3cef4" + ], + "x-ms-correlation-request-id": [ + "cc5003f8-a5bc-4285-891a-da5e3fa3cef4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:cc5003f8-a5bc-4285-891a-da5e3fa3cef4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b18a637-2b0a-4a4e-b023-b95627c2b956" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10441" + ], + "x-ms-request-id": [ + "9efa0611-bf3b-4c94-866b-9d3a3a3d3da7" + ], + "x-ms-correlation-request-id": [ + "9efa0611-bf3b-4c94-866b-9d3a3a3d3da7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:9efa0611-bf3b-4c94-866b-9d3a3a3d3da7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6a4331e-40a1-4075-b064-77e93499fe7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10440" + ], + "x-ms-request-id": [ + "4c2f8536-ea4b-4368-b722-2587757dfeaa" + ], + "x-ms-correlation-request-id": [ + "4c2f8536-ea4b-4368-b722-2587757dfeaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:4c2f8536-ea4b-4368-b722-2587757dfeaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6723b8b0-753c-4819-b566-f30b4184b56d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10439" + ], + "x-ms-request-id": [ + "39550455-9748-4e32-8b67-e0908aead01a" + ], + "x-ms-correlation-request-id": [ + "39550455-9748-4e32-8b67-e0908aead01a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:39550455-9748-4e32-8b67-e0908aead01a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cd51f34-9d13-4fef-88ab-ea7f14f31b78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10438" + ], + "x-ms-request-id": [ + "38c918f2-3719-4f16-ab47-d160133c415f" + ], + "x-ms-correlation-request-id": [ + "38c918f2-3719-4f16-ab47-d160133c415f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:38c918f2-3719-4f16-ab47-d160133c415f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dee0ceb-17d0-47ed-b1a7-43e3d719b730" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10437" + ], + "x-ms-request-id": [ + "c9d43290-b0ce-45b1-86c0-688590e0a325" + ], + "x-ms-correlation-request-id": [ + "c9d43290-b0ce-45b1-86c0-688590e0a325" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021107Z:c9d43290-b0ce-45b1-86c0-688590e0a325" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3ec6668-b98c-4a88-b53a-9a21cb691240" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10436" + ], + "x-ms-request-id": [ + "6833873a-dcc2-432e-a65c-5062e5e3795b" + ], + "x-ms-correlation-request-id": [ + "6833873a-dcc2-432e-a65c-5062e5e3795b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:6833873a-dcc2-432e-a65c-5062e5e3795b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "455dc063-eac4-4132-90ef-d018feff397f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10435" + ], + "x-ms-request-id": [ + "3b3e7347-5c51-4ffe-ae03-1b6892e420a5" + ], + "x-ms-correlation-request-id": [ + "3b3e7347-5c51-4ffe-ae03-1b6892e420a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:3b3e7347-5c51-4ffe-ae03-1b6892e420a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "007a8783-be82-41bd-8120-052231cc639a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10434" + ], + "x-ms-request-id": [ + "4afa6188-3f4f-408c-86d8-7e30eda1b8a4" + ], + "x-ms-correlation-request-id": [ + "4afa6188-3f4f-408c-86d8-7e30eda1b8a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:4afa6188-3f4f-408c-86d8-7e30eda1b8a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3a7725d-d3bf-4a3d-bd94-548fd182f4f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10433" + ], + "x-ms-request-id": [ + "d0d2fea6-015d-4bcb-a806-30325dd609c0" + ], + "x-ms-correlation-request-id": [ + "d0d2fea6-015d-4bcb-a806-30325dd609c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:d0d2fea6-015d-4bcb-a806-30325dd609c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45eae4d0-b23a-4bb7-9e65-d54b433c5ba2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10432" + ], + "x-ms-request-id": [ + "ead8f9da-fcea-4e02-8911-d4a84ee86c18" + ], + "x-ms-correlation-request-id": [ + "ead8f9da-fcea-4e02-8911-d4a84ee86c18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:ead8f9da-fcea-4e02-8911-d4a84ee86c18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2de510a7-b786-47cc-97cc-55f1107c3cb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10431" + ], + "x-ms-request-id": [ + "4f56e225-d81b-4af9-a090-8c083cf2dee5" + ], + "x-ms-correlation-request-id": [ + "4f56e225-d81b-4af9-a090-8c083cf2dee5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021108Z:4f56e225-d81b-4af9-a090-8c083cf2dee5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9c8d375-24a2-43f8-8fc1-2bd1518684c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10430" + ], + "x-ms-request-id": [ + "fc698051-e234-465b-8382-8345801e5051" + ], + "x-ms-correlation-request-id": [ + "fc698051-e234-465b-8382-8345801e5051" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:fc698051-e234-465b-8382-8345801e5051" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bb5b457-94cb-47c7-8348-4f738f56baf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10429" + ], + "x-ms-request-id": [ + "15a3ac32-1e5a-461c-bc98-c69a81ca16c5" + ], + "x-ms-correlation-request-id": [ + "15a3ac32-1e5a-461c-bc98-c69a81ca16c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:15a3ac32-1e5a-461c-bc98-c69a81ca16c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37a734d2-c80a-4f29-877d-c8aae03dd6b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10428" + ], + "x-ms-request-id": [ + "471897b5-2ab4-46de-8f11-350ff70fb813" + ], + "x-ms-correlation-request-id": [ + "471897b5-2ab4-46de-8f11-350ff70fb813" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:471897b5-2ab4-46de-8f11-350ff70fb813" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b566958-9ee9-4577-9d36-9aface17ffb1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10427" + ], + "x-ms-request-id": [ + "204a579c-4664-4c1b-b89e-045fc805f8b0" + ], + "x-ms-correlation-request-id": [ + "204a579c-4664-4c1b-b89e-045fc805f8b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:204a579c-4664-4c1b-b89e-045fc805f8b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "345ec452-3b45-44da-b3af-85840ae25430" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10426" + ], + "x-ms-request-id": [ + "de8e13e9-d85b-426c-9753-c613dca5b343" + ], + "x-ms-correlation-request-id": [ + "de8e13e9-d85b-426c-9753-c613dca5b343" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:de8e13e9-d85b-426c-9753-c613dca5b343" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69bbbcfc-5e79-4af7-a4ff-37a38860679e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10425" + ], + "x-ms-request-id": [ + "48e25608-2a6c-449a-92eb-2cb5b355cee1" + ], + "x-ms-correlation-request-id": [ + "48e25608-2a6c-449a-92eb-2cb5b355cee1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021109Z:48e25608-2a6c-449a-92eb-2cb5b355cee1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3e05d35-6d33-4c5a-b0e4-0a4525b37c52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10424" + ], + "x-ms-request-id": [ + "891d1820-14b7-4075-9a68-abf8ccb4d1c8" + ], + "x-ms-correlation-request-id": [ + "891d1820-14b7-4075-9a68-abf8ccb4d1c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:891d1820-14b7-4075-9a68-abf8ccb4d1c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "526c7fdc-0cb0-4b4c-9185-72e8f1c4632c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10423" + ], + "x-ms-request-id": [ + "673641b1-e8ec-44e1-8159-d82e246fcb1d" + ], + "x-ms-correlation-request-id": [ + "673641b1-e8ec-44e1-8159-d82e246fcb1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:673641b1-e8ec-44e1-8159-d82e246fcb1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e2b6647-1466-4186-b9d1-8650c32a802b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10422" + ], + "x-ms-request-id": [ + "7974790f-7ad0-4b39-affe-f987785e6ea2" + ], + "x-ms-correlation-request-id": [ + "7974790f-7ad0-4b39-affe-f987785e6ea2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:7974790f-7ad0-4b39-affe-f987785e6ea2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f077f3f7-e05c-47bb-897e-13f12c2fdd6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10421" + ], + "x-ms-request-id": [ + "4f851fbf-d4fc-43d3-ba9c-b7c821438619" + ], + "x-ms-correlation-request-id": [ + "4f851fbf-d4fc-43d3-ba9c-b7c821438619" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:4f851fbf-d4fc-43d3-ba9c-b7c821438619" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a245192-0c57-4061-8195-a9671a93a9a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10420" + ], + "x-ms-request-id": [ + "0c4e5237-bd8a-4cfc-89d6-852c7ba55c88" + ], + "x-ms-correlation-request-id": [ + "0c4e5237-bd8a-4cfc-89d6-852c7ba55c88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:0c4e5237-bd8a-4cfc-89d6-852c7ba55c88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "793bb4d7-1391-45a4-a627-7a1a2565cf8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10419" + ], + "x-ms-request-id": [ + "b7d82a2e-3f95-478d-8dbf-50754898de99" + ], + "x-ms-correlation-request-id": [ + "b7d82a2e-3f95-478d-8dbf-50754898de99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021110Z:b7d82a2e-3f95-478d-8dbf-50754898de99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfae96c8-9add-4d06-a2b1-d5e78c50048a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10418" + ], + "x-ms-request-id": [ + "c11e7a2b-224a-4569-af86-860884214677" + ], + "x-ms-correlation-request-id": [ + "c11e7a2b-224a-4569-af86-860884214677" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:c11e7a2b-224a-4569-af86-860884214677" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ee3b6fb-57a6-49af-8864-dc4c9ecc5972" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10417" + ], + "x-ms-request-id": [ + "0e75cc85-80fc-42d9-8aea-fc2a58e20472" + ], + "x-ms-correlation-request-id": [ + "0e75cc85-80fc-42d9-8aea-fc2a58e20472" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:0e75cc85-80fc-42d9-8aea-fc2a58e20472" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c223f4c0-8d10-4e50-b8d0-5b49ca96fc72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10416" + ], + "x-ms-request-id": [ + "8897aaaa-dab6-4cac-b316-fda8b5098227" + ], + "x-ms-correlation-request-id": [ + "8897aaaa-dab6-4cac-b316-fda8b5098227" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:8897aaaa-dab6-4cac-b316-fda8b5098227" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "413f763a-70d1-4994-893b-b8967959d505" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10415" + ], + "x-ms-request-id": [ + "3aa9ed19-9edf-4e68-b555-7b3e95561586" + ], + "x-ms-correlation-request-id": [ + "3aa9ed19-9edf-4e68-b555-7b3e95561586" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:3aa9ed19-9edf-4e68-b555-7b3e95561586" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae4e9d96-075a-4177-ab07-60743acf20f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10414" + ], + "x-ms-request-id": [ + "299537b6-d845-468c-96cb-147e0a30e3f0" + ], + "x-ms-correlation-request-id": [ + "299537b6-d845-468c-96cb-147e0a30e3f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:299537b6-d845-468c-96cb-147e0a30e3f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d17413e-fffb-4421-b76d-7cdaf212214d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10413" + ], + "x-ms-request-id": [ + "09d19fc9-6861-4896-b247-06ff82f82959" + ], + "x-ms-correlation-request-id": [ + "09d19fc9-6861-4896-b247-06ff82f82959" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021111Z:09d19fc9-6861-4896-b247-06ff82f82959" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ab47081-175d-427b-b018-743c82731e91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10412" + ], + "x-ms-request-id": [ + "befed094-e144-46b2-8bce-38ffe566384c" + ], + "x-ms-correlation-request-id": [ + "befed094-e144-46b2-8bce-38ffe566384c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:befed094-e144-46b2-8bce-38ffe566384c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01099a45-a63b-4a78-b82b-ec505e63819b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10411" + ], + "x-ms-request-id": [ + "6f08bd4b-a0b6-41ed-bc26-cd04b1303fae" + ], + "x-ms-correlation-request-id": [ + "6f08bd4b-a0b6-41ed-bc26-cd04b1303fae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:6f08bd4b-a0b6-41ed-bc26-cd04b1303fae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0b08459-0785-4012-8708-9f564c93eef5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10410" + ], + "x-ms-request-id": [ + "a1aae0f2-2280-41c6-bd4a-27b8c6fe6180" + ], + "x-ms-correlation-request-id": [ + "a1aae0f2-2280-41c6-bd4a-27b8c6fe6180" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:a1aae0f2-2280-41c6-bd4a-27b8c6fe6180" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d92094f6-8f94-4ad7-b3ae-0a06afc14619" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10409" + ], + "x-ms-request-id": [ + "07733eaf-0bf6-44e3-bdd4-09cbb1b69c07" + ], + "x-ms-correlation-request-id": [ + "07733eaf-0bf6-44e3-bdd4-09cbb1b69c07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:07733eaf-0bf6-44e3-bdd4-09cbb1b69c07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37acaf4f-0b82-4100-8924-6152780262af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10408" + ], + "x-ms-request-id": [ + "d5a53e7f-5ce4-46b1-b040-05d1648626e6" + ], + "x-ms-correlation-request-id": [ + "d5a53e7f-5ce4-46b1-b040-05d1648626e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:d5a53e7f-5ce4-46b1-b040-05d1648626e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0deea1f-03f5-40ec-b981-589d9153012b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10407" + ], + "x-ms-request-id": [ + "2ee6ca4b-7407-41de-9bb1-6b87d15613c9" + ], + "x-ms-correlation-request-id": [ + "2ee6ca4b-7407-41de-9bb1-6b87d15613c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021112Z:2ee6ca4b-7407-41de-9bb1-6b87d15613c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6901653-2a17-492a-aa91-43455f924f25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10406" + ], + "x-ms-request-id": [ + "80d44d45-f4a4-4afe-be7c-d6195fe97db0" + ], + "x-ms-correlation-request-id": [ + "80d44d45-f4a4-4afe-be7c-d6195fe97db0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:80d44d45-f4a4-4afe-be7c-d6195fe97db0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9909e486-44d1-46a6-97aa-fa7cb87294e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10405" + ], + "x-ms-request-id": [ + "ea11be29-9b73-486e-8d77-4c9d886e2ae6" + ], + "x-ms-correlation-request-id": [ + "ea11be29-9b73-486e-8d77-4c9d886e2ae6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:ea11be29-9b73-486e-8d77-4c9d886e2ae6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bef414d2-6430-479c-8338-0b90e76b3909" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10404" + ], + "x-ms-request-id": [ + "304448d5-26e1-4734-b406-2a095aa350c7" + ], + "x-ms-correlation-request-id": [ + "304448d5-26e1-4734-b406-2a095aa350c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:304448d5-26e1-4734-b406-2a095aa350c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e5a11fe-a107-416e-8717-b11913376583" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10403" + ], + "x-ms-request-id": [ + "23679c49-c0f5-4224-9399-4e2ca2a8f6b3" + ], + "x-ms-correlation-request-id": [ + "23679c49-c0f5-4224-9399-4e2ca2a8f6b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:23679c49-c0f5-4224-9399-4e2ca2a8f6b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb28542f-29b3-4a75-8aaa-90ecb3af118e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10402" + ], + "x-ms-request-id": [ + "ac97cb76-19e0-4ffc-a871-c80d23e10329" + ], + "x-ms-correlation-request-id": [ + "ac97cb76-19e0-4ffc-a871-c80d23e10329" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:ac97cb76-19e0-4ffc-a871-c80d23e10329" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6076f309-d490-4a1b-85fc-31ee9b2f1a97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10401" + ], + "x-ms-request-id": [ + "207f130a-e803-4b9a-abae-7dbe456d583c" + ], + "x-ms-correlation-request-id": [ + "207f130a-e803-4b9a-abae-7dbe456d583c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021113Z:207f130a-e803-4b9a-abae-7dbe456d583c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "448fa87e-7124-4db7-ac36-af87e20700bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10400" + ], + "x-ms-request-id": [ + "437c59eb-c98c-440c-8ecf-47c2b2c02a4f" + ], + "x-ms-correlation-request-id": [ + "437c59eb-c98c-440c-8ecf-47c2b2c02a4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:437c59eb-c98c-440c-8ecf-47c2b2c02a4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "674164b6-9a91-416b-b1a8-b5629540fab9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10399" + ], + "x-ms-request-id": [ + "28f2d9cd-f44a-4bdb-8b4b-97de2fa7518c" + ], + "x-ms-correlation-request-id": [ + "28f2d9cd-f44a-4bdb-8b4b-97de2fa7518c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:28f2d9cd-f44a-4bdb-8b4b-97de2fa7518c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e488c87c-77b0-4dff-928c-f8bd3d076c99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10398" + ], + "x-ms-request-id": [ + "b1448b6e-dcaf-488a-86d0-63f336f19711" + ], + "x-ms-correlation-request-id": [ + "b1448b6e-dcaf-488a-86d0-63f336f19711" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:b1448b6e-dcaf-488a-86d0-63f336f19711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31e6aa5f-a199-4541-8f57-51b6e4e9ee0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10397" + ], + "x-ms-request-id": [ + "a68aeb5a-2659-4091-b91e-03901aa5a108" + ], + "x-ms-correlation-request-id": [ + "a68aeb5a-2659-4091-b91e-03901aa5a108" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:a68aeb5a-2659-4091-b91e-03901aa5a108" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc1bbd0f-8b88-42e9-ba1b-57c78f24dac6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10396" + ], + "x-ms-request-id": [ + "d3de214b-dcba-4bb0-8557-7e9cbe8d6e64" + ], + "x-ms-correlation-request-id": [ + "d3de214b-dcba-4bb0-8557-7e9cbe8d6e64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:d3de214b-dcba-4bb0-8557-7e9cbe8d6e64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b856ed05-0f9a-470e-9d0e-2992bdf89701" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10395" + ], + "x-ms-request-id": [ + "b86a2e15-3bb9-4f63-8c47-4865534d953f" + ], + "x-ms-correlation-request-id": [ + "b86a2e15-3bb9-4f63-8c47-4865534d953f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:b86a2e15-3bb9-4f63-8c47-4865534d953f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64ca2f8e-522d-4f64-a16c-229019c3c9f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10394" + ], + "x-ms-request-id": [ + "fab1ee5f-51e1-404e-91f9-950c9307fb85" + ], + "x-ms-correlation-request-id": [ + "fab1ee5f-51e1-404e-91f9-950c9307fb85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021114Z:fab1ee5f-51e1-404e-91f9-950c9307fb85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3264c47-67ca-425b-a6a6-724bba045bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10393" + ], + "x-ms-request-id": [ + "46482db6-b1ff-4f5f-a56d-eb085a99e7e6" + ], + "x-ms-correlation-request-id": [ + "46482db6-b1ff-4f5f-a56d-eb085a99e7e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:46482db6-b1ff-4f5f-a56d-eb085a99e7e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dacde6c-a5fe-40e5-9429-764703bf631f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10392" + ], + "x-ms-request-id": [ + "4d61c999-2c71-4e08-befa-05f1561f058e" + ], + "x-ms-correlation-request-id": [ + "4d61c999-2c71-4e08-befa-05f1561f058e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:4d61c999-2c71-4e08-befa-05f1561f058e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51094e37-080a-40dc-bbb5-1dd911efb8a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10391" + ], + "x-ms-request-id": [ + "deae9c86-760f-4e61-b369-1a066e8906c4" + ], + "x-ms-correlation-request-id": [ + "deae9c86-760f-4e61-b369-1a066e8906c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:deae9c86-760f-4e61-b369-1a066e8906c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b41f16fe-2a4b-4cad-bc38-99e9d43eebe8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10390" + ], + "x-ms-request-id": [ + "e84ea214-6af7-4ed1-9d2e-e111106acb73" + ], + "x-ms-correlation-request-id": [ + "e84ea214-6af7-4ed1-9d2e-e111106acb73" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:e84ea214-6af7-4ed1-9d2e-e111106acb73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5140d3b9-2c4a-44bb-bbc0-165e0f15b54a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10389" + ], + "x-ms-request-id": [ + "72995464-6903-4eb2-a4c3-3decaab48600" + ], + "x-ms-correlation-request-id": [ + "72995464-6903-4eb2-a4c3-3decaab48600" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:72995464-6903-4eb2-a4c3-3decaab48600" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb7682f3-a831-4ae6-9cf5-dcc482e2968b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10388" + ], + "x-ms-request-id": [ + "bf87b095-507c-408c-a5db-ef54f0708f2f" + ], + "x-ms-correlation-request-id": [ + "bf87b095-507c-408c-a5db-ef54f0708f2f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021115Z:bf87b095-507c-408c-a5db-ef54f0708f2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4286ba4f-7646-461e-a381-5adfc3a3ece7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10387" + ], + "x-ms-request-id": [ + "da2900fe-1e47-464b-8b9f-78098127574d" + ], + "x-ms-correlation-request-id": [ + "da2900fe-1e47-464b-8b9f-78098127574d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:da2900fe-1e47-464b-8b9f-78098127574d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95589b11-5ec9-4d4b-aed9-229ce1102323" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10386" + ], + "x-ms-request-id": [ + "8d1aaab8-1f3d-4233-b790-67c502a2bb52" + ], + "x-ms-correlation-request-id": [ + "8d1aaab8-1f3d-4233-b790-67c502a2bb52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:8d1aaab8-1f3d-4233-b790-67c502a2bb52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7465c67f-461e-4a2a-868b-a775cf1f8d56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10385" + ], + "x-ms-request-id": [ + "f9021999-6252-4093-978a-556061ba6f0d" + ], + "x-ms-correlation-request-id": [ + "f9021999-6252-4093-978a-556061ba6f0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:f9021999-6252-4093-978a-556061ba6f0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cf2e288-5329-4fba-8c33-4b380947341b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10384" + ], + "x-ms-request-id": [ + "f3556947-15ba-4932-a6f9-fc905fb73f00" + ], + "x-ms-correlation-request-id": [ + "f3556947-15ba-4932-a6f9-fc905fb73f00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:f3556947-15ba-4932-a6f9-fc905fb73f00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e22418a3-453f-4c51-aa69-0318cce5d79f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10383" + ], + "x-ms-request-id": [ + "cdc0b48b-c2ee-4542-98b1-dd1b1d8f369e" + ], + "x-ms-correlation-request-id": [ + "cdc0b48b-c2ee-4542-98b1-dd1b1d8f369e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:cdc0b48b-c2ee-4542-98b1-dd1b1d8f369e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6be497e-e29c-4b86-94e3-071dc149150b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10382" + ], + "x-ms-request-id": [ + "10c91364-5b74-4b68-98f9-b3ae0938ddbb" + ], + "x-ms-correlation-request-id": [ + "10c91364-5b74-4b68-98f9-b3ae0938ddbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021116Z:10c91364-5b74-4b68-98f9-b3ae0938ddbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db500c69-b462-429c-a4c5-b2d9623d21a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10381" + ], + "x-ms-request-id": [ + "e949c885-32a9-4add-ab1a-5ccb83bef29e" + ], + "x-ms-correlation-request-id": [ + "e949c885-32a9-4add-ab1a-5ccb83bef29e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:e949c885-32a9-4add-ab1a-5ccb83bef29e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66948c56-b17d-411c-be3c-17b3bc443383" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10380" + ], + "x-ms-request-id": [ + "2695c859-61da-46d5-8793-0a9e6dd31ed3" + ], + "x-ms-correlation-request-id": [ + "2695c859-61da-46d5-8793-0a9e6dd31ed3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:2695c859-61da-46d5-8793-0a9e6dd31ed3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01b9499e-c475-49a2-8e7a-79d79683472d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10379" + ], + "x-ms-request-id": [ + "d75429c2-087b-4671-885c-b566a27cb0bb" + ], + "x-ms-correlation-request-id": [ + "d75429c2-087b-4671-885c-b566a27cb0bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:d75429c2-087b-4671-885c-b566a27cb0bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a680b28-5588-4253-997f-c184a235aaff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10378" + ], + "x-ms-request-id": [ + "58e69895-87b5-4dc1-a5e0-0298c79f9e30" + ], + "x-ms-correlation-request-id": [ + "58e69895-87b5-4dc1-a5e0-0298c79f9e30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:58e69895-87b5-4dc1-a5e0-0298c79f9e30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bda2102c-c63e-4d26-925b-f9138c4b6102" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10377" + ], + "x-ms-request-id": [ + "ac6b12f8-b74a-4a5b-a716-9a246ccda75d" + ], + "x-ms-correlation-request-id": [ + "ac6b12f8-b74a-4a5b-a716-9a246ccda75d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:ac6b12f8-b74a-4a5b-a716-9a246ccda75d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c54147ba-194e-43f0-bc4d-2f96a2ddf9bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10376" + ], + "x-ms-request-id": [ + "deb9cdfc-20a2-4db8-8411-03938dbf840e" + ], + "x-ms-correlation-request-id": [ + "deb9cdfc-20a2-4db8-8411-03938dbf840e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021117Z:deb9cdfc-20a2-4db8-8411-03938dbf840e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9ec842b-8a18-4d52-9e9b-df992c5476a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10375" + ], + "x-ms-request-id": [ + "e519965f-44ef-4480-ac9a-39f4d6ae3266" + ], + "x-ms-correlation-request-id": [ + "e519965f-44ef-4480-ac9a-39f4d6ae3266" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021118Z:e519965f-44ef-4480-ac9a-39f4d6ae3266" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09ed1fd1-8a14-4e58-80ca-7d89b2903e60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10374" + ], + "x-ms-request-id": [ + "5e3ab8f6-7038-445f-96ba-3d8a644ebd63" + ], + "x-ms-correlation-request-id": [ + "5e3ab8f6-7038-445f-96ba-3d8a644ebd63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021118Z:5e3ab8f6-7038-445f-96ba-3d8a644ebd63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "353ff365-d0ff-4f2c-b39b-7f196d99c6f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10373" + ], + "x-ms-request-id": [ + "ed09069d-e7d0-47e2-975d-d029eefc8828" + ], + "x-ms-correlation-request-id": [ + "ed09069d-e7d0-47e2-975d-d029eefc8828" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021118Z:ed09069d-e7d0-47e2-975d-d029eefc8828" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19473191-ad4e-4454-a40c-c564b7d1bb7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10372" + ], + "x-ms-request-id": [ + "a6615854-8c58-4012-b32c-43dd1eb03072" + ], + "x-ms-correlation-request-id": [ + "a6615854-8c58-4012-b32c-43dd1eb03072" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021118Z:a6615854-8c58-4012-b32c-43dd1eb03072" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b253eb32-4036-4b26-8ba8-1837947ed7b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10371" + ], + "x-ms-request-id": [ + "3de6d264-94f0-40b3-85d9-26acc41aefbc" + ], + "x-ms-correlation-request-id": [ + "3de6d264-94f0-40b3-85d9-26acc41aefbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021118Z:3de6d264-94f0-40b3-85d9-26acc41aefbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "933c0455-5104-411f-83b5-d36d596fb06b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10370" + ], + "x-ms-request-id": [ + "a3b982d8-bf8d-4848-a408-fbafcc3f43d0" + ], + "x-ms-correlation-request-id": [ + "a3b982d8-bf8d-4848-a408-fbafcc3f43d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:a3b982d8-bf8d-4848-a408-fbafcc3f43d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5b91378-ac1d-463b-a914-74cf7e55ebae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10369" + ], + "x-ms-request-id": [ + "06cdd69e-06c0-4e81-a569-11bd48f5ae37" + ], + "x-ms-correlation-request-id": [ + "06cdd69e-06c0-4e81-a569-11bd48f5ae37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:06cdd69e-06c0-4e81-a569-11bd48f5ae37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aef295f-9f2e-404b-ac99-241cadf53d5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10368" + ], + "x-ms-request-id": [ + "398bb23b-6e71-4d3b-862d-1df609c9a37f" + ], + "x-ms-correlation-request-id": [ + "398bb23b-6e71-4d3b-862d-1df609c9a37f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:398bb23b-6e71-4d3b-862d-1df609c9a37f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2643638-f09a-48f0-93a5-0b15d6aa1d16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10367" + ], + "x-ms-request-id": [ + "a780daef-1625-4fa5-af64-7cb77b981a55" + ], + "x-ms-correlation-request-id": [ + "a780daef-1625-4fa5-af64-7cb77b981a55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:a780daef-1625-4fa5-af64-7cb77b981a55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f60330ed-2822-4b60-b8eb-21431fcf1fda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10366" + ], + "x-ms-request-id": [ + "2cf147ce-9906-4b80-86c6-b17dec5bc74c" + ], + "x-ms-correlation-request-id": [ + "2cf147ce-9906-4b80-86c6-b17dec5bc74c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:2cf147ce-9906-4b80-86c6-b17dec5bc74c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba605d8d-4975-4645-80cb-813ea8e219f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10365" + ], + "x-ms-request-id": [ + "155e7531-101d-464c-a40b-7703e538039f" + ], + "x-ms-correlation-request-id": [ + "155e7531-101d-464c-a40b-7703e538039f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021119Z:155e7531-101d-464c-a40b-7703e538039f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "265288db-d74e-424d-a08d-8539b500198b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10364" + ], + "x-ms-request-id": [ + "09a16fa2-60c7-476f-8e2e-837ea5792c92" + ], + "x-ms-correlation-request-id": [ + "09a16fa2-60c7-476f-8e2e-837ea5792c92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:09a16fa2-60c7-476f-8e2e-837ea5792c92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f9d32ee-1190-4ddd-ac2d-5dfdf272c9bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10363" + ], + "x-ms-request-id": [ + "d344264f-d3f3-444b-8e27-9f1eb2bacb52" + ], + "x-ms-correlation-request-id": [ + "d344264f-d3f3-444b-8e27-9f1eb2bacb52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:d344264f-d3f3-444b-8e27-9f1eb2bacb52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3385fce-cf2d-445d-bc5b-2b52e4e0646f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10362" + ], + "x-ms-request-id": [ + "a1d95bbc-ba54-4cd2-8591-1e878178e4f1" + ], + "x-ms-correlation-request-id": [ + "a1d95bbc-ba54-4cd2-8591-1e878178e4f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:a1d95bbc-ba54-4cd2-8591-1e878178e4f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "355b4bd9-31e4-4c9c-91c9-35fb0f3b436c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10361" + ], + "x-ms-request-id": [ + "d9271ad3-94fc-4f20-b651-e5548f16ec5e" + ], + "x-ms-correlation-request-id": [ + "d9271ad3-94fc-4f20-b651-e5548f16ec5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:d9271ad3-94fc-4f20-b651-e5548f16ec5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a6a32ee-cac6-4221-a2d0-4f9bbb666eae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10360" + ], + "x-ms-request-id": [ + "bc9952a2-52b5-41d7-ac0f-51cd9aff7365" + ], + "x-ms-correlation-request-id": [ + "bc9952a2-52b5-41d7-ac0f-51cd9aff7365" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:bc9952a2-52b5-41d7-ac0f-51cd9aff7365" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5c28d33-cadd-4056-92d2-821fa43681d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10359" + ], + "x-ms-request-id": [ + "5f74feb9-2e75-4480-a58e-c80212c7fac3" + ], + "x-ms-correlation-request-id": [ + "5f74feb9-2e75-4480-a58e-c80212c7fac3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021120Z:5f74feb9-2e75-4480-a58e-c80212c7fac3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "957190d4-e6ed-4249-a5b7-d9c692eb5b83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10358" + ], + "x-ms-request-id": [ + "62a00251-43bd-435f-8e4e-32407efc5493" + ], + "x-ms-correlation-request-id": [ + "62a00251-43bd-435f-8e4e-32407efc5493" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:62a00251-43bd-435f-8e4e-32407efc5493" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cba98d6-2243-451b-9b5c-f4ff4cbfe4a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10357" + ], + "x-ms-request-id": [ + "3fd4f8cf-3c1e-4b59-b18d-6482deaa1fb0" + ], + "x-ms-correlation-request-id": [ + "3fd4f8cf-3c1e-4b59-b18d-6482deaa1fb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:3fd4f8cf-3c1e-4b59-b18d-6482deaa1fb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f5d2cac-bcae-4e44-88df-2fefe7028ba6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10356" + ], + "x-ms-request-id": [ + "2fb88ffd-7aa1-4d47-beb2-1d654d3b7abd" + ], + "x-ms-correlation-request-id": [ + "2fb88ffd-7aa1-4d47-beb2-1d654d3b7abd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:2fb88ffd-7aa1-4d47-beb2-1d654d3b7abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e2f6f1f-d892-4023-9338-a1e5c89b667b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10355" + ], + "x-ms-request-id": [ + "ee33357f-4af7-4790-8165-553b4195381f" + ], + "x-ms-correlation-request-id": [ + "ee33357f-4af7-4790-8165-553b4195381f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:ee33357f-4af7-4790-8165-553b4195381f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39d752da-f193-4bb8-b0a9-37a54a3c6ef0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10354" + ], + "x-ms-request-id": [ + "c91e685e-e0f4-4c4c-be38-f1a586ae10ca" + ], + "x-ms-correlation-request-id": [ + "c91e685e-e0f4-4c4c-be38-f1a586ae10ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:c91e685e-e0f4-4c4c-be38-f1a586ae10ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cfb0e1c-12d0-4705-8571-34768b89622b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10353" + ], + "x-ms-request-id": [ + "7b961615-e897-4be6-9adb-207553db8bd2" + ], + "x-ms-correlation-request-id": [ + "7b961615-e897-4be6-9adb-207553db8bd2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021121Z:7b961615-e897-4be6-9adb-207553db8bd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9028395-262d-4be2-b5c1-6694daaea420" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10352" + ], + "x-ms-request-id": [ + "49a4ed88-5b5e-43e2-910b-b93a3cd06275" + ], + "x-ms-correlation-request-id": [ + "49a4ed88-5b5e-43e2-910b-b93a3cd06275" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:49a4ed88-5b5e-43e2-910b-b93a3cd06275" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7bf4380-35f8-4fbd-9986-9bef2666445a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10351" + ], + "x-ms-request-id": [ + "d2d6be53-d691-4cd5-ba8b-3bf8f6e97954" + ], + "x-ms-correlation-request-id": [ + "d2d6be53-d691-4cd5-ba8b-3bf8f6e97954" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:d2d6be53-d691-4cd5-ba8b-3bf8f6e97954" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53f08ddf-d74c-4db4-be12-e6e4f53b7653" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10350" + ], + "x-ms-request-id": [ + "54714163-4387-43dc-90ba-80981da48e0e" + ], + "x-ms-correlation-request-id": [ + "54714163-4387-43dc-90ba-80981da48e0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:54714163-4387-43dc-90ba-80981da48e0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8937edf-8eda-4155-aa5b-5f7b9c4e2399" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10349" + ], + "x-ms-request-id": [ + "f5a7b0ce-d9a8-446b-82b5-373e3fa6d975" + ], + "x-ms-correlation-request-id": [ + "f5a7b0ce-d9a8-446b-82b5-373e3fa6d975" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:f5a7b0ce-d9a8-446b-82b5-373e3fa6d975" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34b6e370-3f36-44f3-a044-9364bdbeff60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10348" + ], + "x-ms-request-id": [ + "fa0df87f-a923-4d7a-9458-51681511217e" + ], + "x-ms-correlation-request-id": [ + "fa0df87f-a923-4d7a-9458-51681511217e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:fa0df87f-a923-4d7a-9458-51681511217e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cda9f17-b69f-4b6a-8887-06a4451db6e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10347" + ], + "x-ms-request-id": [ + "d8582711-6836-42af-a646-061cbc456b70" + ], + "x-ms-correlation-request-id": [ + "d8582711-6836-42af-a646-061cbc456b70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021122Z:d8582711-6836-42af-a646-061cbc456b70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e43c6aeb-0478-435d-9794-ad5fefdf9af9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10346" + ], + "x-ms-request-id": [ + "de1fe86d-04e3-4e23-8de1-686720b4024c" + ], + "x-ms-correlation-request-id": [ + "de1fe86d-04e3-4e23-8de1-686720b4024c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:de1fe86d-04e3-4e23-8de1-686720b4024c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e57bd933-ec3e-4f7b-b34b-49ee97652843" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10345" + ], + "x-ms-request-id": [ + "6a899490-19e1-4412-b81c-d9c37d53041e" + ], + "x-ms-correlation-request-id": [ + "6a899490-19e1-4412-b81c-d9c37d53041e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:6a899490-19e1-4412-b81c-d9c37d53041e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c2f404f-19c9-42d1-ab15-7966e3a0f498" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10344" + ], + "x-ms-request-id": [ + "cc510858-ee2d-4bec-ae28-9e37bc9c0d8b" + ], + "x-ms-correlation-request-id": [ + "cc510858-ee2d-4bec-ae28-9e37bc9c0d8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:cc510858-ee2d-4bec-ae28-9e37bc9c0d8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98471f41-c4c9-44f3-9ac0-f4764ac8d24e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10343" + ], + "x-ms-request-id": [ + "67f42e33-85d6-4ea9-8c8a-28aa53b6a79a" + ], + "x-ms-correlation-request-id": [ + "67f42e33-85d6-4ea9-8c8a-28aa53b6a79a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:67f42e33-85d6-4ea9-8c8a-28aa53b6a79a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b894178-4943-470f-b004-db2a0000ae29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10342" + ], + "x-ms-request-id": [ + "92f46081-71d0-4772-a7ad-20a80c39322c" + ], + "x-ms-correlation-request-id": [ + "92f46081-71d0-4772-a7ad-20a80c39322c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:92f46081-71d0-4772-a7ad-20a80c39322c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd2127fc-7a34-4afa-906a-64a4723fa6f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10341" + ], + "x-ms-request-id": [ + "6a31a252-8a6a-4c7e-8f51-a9663134bd64" + ], + "x-ms-correlation-request-id": [ + "6a31a252-8a6a-4c7e-8f51-a9663134bd64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021123Z:6a31a252-8a6a-4c7e-8f51-a9663134bd64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7948e71f-97ec-4ddb-8700-7e88a865240f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10340" + ], + "x-ms-request-id": [ + "eb6dcc01-adba-4670-a1cd-d4e22a2db61d" + ], + "x-ms-correlation-request-id": [ + "eb6dcc01-adba-4670-a1cd-d4e22a2db61d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:eb6dcc01-adba-4670-a1cd-d4e22a2db61d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98c94715-ff72-4ded-8c05-4aa374600353" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10339" + ], + "x-ms-request-id": [ + "df954d52-ab56-41e7-82d5-46713f90c52d" + ], + "x-ms-correlation-request-id": [ + "df954d52-ab56-41e7-82d5-46713f90c52d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:df954d52-ab56-41e7-82d5-46713f90c52d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e2653fd-66be-47b9-be27-78ec97cf425e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10338" + ], + "x-ms-request-id": [ + "f258a91a-53e1-45cd-93a5-6bb5a7b1f43e" + ], + "x-ms-correlation-request-id": [ + "f258a91a-53e1-45cd-93a5-6bb5a7b1f43e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:f258a91a-53e1-45cd-93a5-6bb5a7b1f43e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3cd8cb0-9487-475c-afb3-588247ed5546" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10337" + ], + "x-ms-request-id": [ + "a9466f14-4779-40bf-96af-84b83657dd54" + ], + "x-ms-correlation-request-id": [ + "a9466f14-4779-40bf-96af-84b83657dd54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:a9466f14-4779-40bf-96af-84b83657dd54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ecf52f0-4a1b-41fd-809c-7d2a4ddec128" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10336" + ], + "x-ms-request-id": [ + "1630ff20-e644-424c-95be-4de07bcd7602" + ], + "x-ms-correlation-request-id": [ + "1630ff20-e644-424c-95be-4de07bcd7602" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:1630ff20-e644-424c-95be-4de07bcd7602" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35df8866-bf9b-490d-a7ca-9a53440277c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10335" + ], + "x-ms-request-id": [ + "ca3eee4a-d8f3-42bd-a4a2-9deff8de11aa" + ], + "x-ms-correlation-request-id": [ + "ca3eee4a-d8f3-42bd-a4a2-9deff8de11aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021124Z:ca3eee4a-d8f3-42bd-a4a2-9deff8de11aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a5a2a15-8cf1-4071-ad13-08e7d09f248d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10334" + ], + "x-ms-request-id": [ + "a4207be1-cbd8-4255-a51a-39a67ab75d01" + ], + "x-ms-correlation-request-id": [ + "a4207be1-cbd8-4255-a51a-39a67ab75d01" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:a4207be1-cbd8-4255-a51a-39a67ab75d01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c42ddf3e-c98a-4a96-a559-ecd697f8a2f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10333" + ], + "x-ms-request-id": [ + "ab915f88-bf50-4bbb-80cf-fa1e05fe19e4" + ], + "x-ms-correlation-request-id": [ + "ab915f88-bf50-4bbb-80cf-fa1e05fe19e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:ab915f88-bf50-4bbb-80cf-fa1e05fe19e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78014bf1-3526-4718-ac0e-0d4dc5f40519" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10332" + ], + "x-ms-request-id": [ + "5426b376-5b60-44f8-b7fd-4ded62ac5b59" + ], + "x-ms-correlation-request-id": [ + "5426b376-5b60-44f8-b7fd-4ded62ac5b59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:5426b376-5b60-44f8-b7fd-4ded62ac5b59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3663e049-e814-4c69-b37d-d8a61ea8381b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10331" + ], + "x-ms-request-id": [ + "fe98a902-8d20-493d-be7c-a2dc42d74e55" + ], + "x-ms-correlation-request-id": [ + "fe98a902-8d20-493d-be7c-a2dc42d74e55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:fe98a902-8d20-493d-be7c-a2dc42d74e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3816841-b16a-44fc-ab41-b557d294df46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10330" + ], + "x-ms-request-id": [ + "ca96fdbb-81c0-400a-9f3f-97a4d83dc991" + ], + "x-ms-correlation-request-id": [ + "ca96fdbb-81c0-400a-9f3f-97a4d83dc991" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:ca96fdbb-81c0-400a-9f3f-97a4d83dc991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2929eb3-e4e4-4148-9dea-d68200f22d0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10329" + ], + "x-ms-request-id": [ + "f7a805aa-5f9a-43a2-bd7d-c0e3ebb61e7d" + ], + "x-ms-correlation-request-id": [ + "f7a805aa-5f9a-43a2-bd7d-c0e3ebb61e7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021125Z:f7a805aa-5f9a-43a2-bd7d-c0e3ebb61e7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e816fcb1-f53d-438d-b0fb-2fe5b6bb4420" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10328" + ], + "x-ms-request-id": [ + "25966ee4-8a58-4f2c-a918-3c10797314ec" + ], + "x-ms-correlation-request-id": [ + "25966ee4-8a58-4f2c-a918-3c10797314ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:25966ee4-8a58-4f2c-a918-3c10797314ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b521119d-7864-4c36-8e98-03e559dc90fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10327" + ], + "x-ms-request-id": [ + "8dae875a-b488-41c9-93e2-447abb627841" + ], + "x-ms-correlation-request-id": [ + "8dae875a-b488-41c9-93e2-447abb627841" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:8dae875a-b488-41c9-93e2-447abb627841" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7626bed3-ba0b-4dde-ac87-01b7199017ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10326" + ], + "x-ms-request-id": [ + "eadc731b-e63f-4ed2-a0f3-91880695793e" + ], + "x-ms-correlation-request-id": [ + "eadc731b-e63f-4ed2-a0f3-91880695793e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:eadc731b-e63f-4ed2-a0f3-91880695793e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a77af7a-8c0f-4a5a-bb7d-11e73e4ee41b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10325" + ], + "x-ms-request-id": [ + "b0fcbf84-db92-4b20-83c9-836b1e489233" + ], + "x-ms-correlation-request-id": [ + "b0fcbf84-db92-4b20-83c9-836b1e489233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:b0fcbf84-db92-4b20-83c9-836b1e489233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad969d10-bd65-4776-9621-469716e06158" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10324" + ], + "x-ms-request-id": [ + "975c10cb-6ea2-4c64-bfd6-30716b82d64a" + ], + "x-ms-correlation-request-id": [ + "975c10cb-6ea2-4c64-bfd6-30716b82d64a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:975c10cb-6ea2-4c64-bfd6-30716b82d64a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21f8992a-4441-4f30-99a8-dccbf842d342" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10323" + ], + "x-ms-request-id": [ + "8c8ce8b6-be11-431a-ad7d-2b8e2be79236" + ], + "x-ms-correlation-request-id": [ + "8c8ce8b6-be11-431a-ad7d-2b8e2be79236" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021126Z:8c8ce8b6-be11-431a-ad7d-2b8e2be79236" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "361216e5-d6e2-4c88-b1ac-7d7f92417df6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10322" + ], + "x-ms-request-id": [ + "8236ea62-4b43-4f40-ac8d-99e9837f896b" + ], + "x-ms-correlation-request-id": [ + "8236ea62-4b43-4f40-ac8d-99e9837f896b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:8236ea62-4b43-4f40-ac8d-99e9837f896b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1507d700-c038-483d-9dce-beb6ac089a0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10321" + ], + "x-ms-request-id": [ + "07724e3b-e347-4da8-b8f7-27d816533f70" + ], + "x-ms-correlation-request-id": [ + "07724e3b-e347-4da8-b8f7-27d816533f70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:07724e3b-e347-4da8-b8f7-27d816533f70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b51d209d-769f-4b1b-9761-48404d464dbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10320" + ], + "x-ms-request-id": [ + "43060491-bebe-4a1e-b1ef-cfa2963757cc" + ], + "x-ms-correlation-request-id": [ + "43060491-bebe-4a1e-b1ef-cfa2963757cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:43060491-bebe-4a1e-b1ef-cfa2963757cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c802932e-558d-4d33-b452-91f150d1a170" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10319" + ], + "x-ms-request-id": [ + "510250ef-aa91-4455-9fa0-4b2260523e39" + ], + "x-ms-correlation-request-id": [ + "510250ef-aa91-4455-9fa0-4b2260523e39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:510250ef-aa91-4455-9fa0-4b2260523e39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c4e7c6b-1064-4aee-94de-07605dea093f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10318" + ], + "x-ms-request-id": [ + "57d8893b-5cd2-4d91-989e-a23c7a5bf22e" + ], + "x-ms-correlation-request-id": [ + "57d8893b-5cd2-4d91-989e-a23c7a5bf22e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:57d8893b-5cd2-4d91-989e-a23c7a5bf22e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "958110b5-0e89-430d-82db-3a05591277a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10317" + ], + "x-ms-request-id": [ + "b98a00cb-7dd4-4a4a-bda9-7c4345f1cb70" + ], + "x-ms-correlation-request-id": [ + "b98a00cb-7dd4-4a4a-bda9-7c4345f1cb70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021127Z:b98a00cb-7dd4-4a4a-bda9-7c4345f1cb70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "908a0881-1345-4feb-bae2-2ae4acb3efc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10316" + ], + "x-ms-request-id": [ + "a7e779e2-b8f6-429e-b558-6155591f1f4b" + ], + "x-ms-correlation-request-id": [ + "a7e779e2-b8f6-429e-b558-6155591f1f4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:a7e779e2-b8f6-429e-b558-6155591f1f4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd66d36d-d126-46ff-9aac-c7e5c20013f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10315" + ], + "x-ms-request-id": [ + "f6200eec-21ec-480a-95e9-acea680dc932" + ], + "x-ms-correlation-request-id": [ + "f6200eec-21ec-480a-95e9-acea680dc932" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:f6200eec-21ec-480a-95e9-acea680dc932" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69d996ff-da11-498e-982d-40ea13741d31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10314" + ], + "x-ms-request-id": [ + "001995b3-9f01-4c27-bd4e-eea7257e2459" + ], + "x-ms-correlation-request-id": [ + "001995b3-9f01-4c27-bd4e-eea7257e2459" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:001995b3-9f01-4c27-bd4e-eea7257e2459" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "903c938f-9163-4102-b8a0-7a9127538463" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10313" + ], + "x-ms-request-id": [ + "f19feb56-4206-4410-befe-7578db0f3c0c" + ], + "x-ms-correlation-request-id": [ + "f19feb56-4206-4410-befe-7578db0f3c0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:f19feb56-4206-4410-befe-7578db0f3c0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d00d2d1-f080-4f71-ae25-bc72f7a06c7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10312" + ], + "x-ms-request-id": [ + "1e394ccf-e32c-4702-bdba-a9c27c9f19fd" + ], + "x-ms-correlation-request-id": [ + "1e394ccf-e32c-4702-bdba-a9c27c9f19fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:1e394ccf-e32c-4702-bdba-a9c27c9f19fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d220a3e-d71a-44f8-b049-fbb214988b39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10311" + ], + "x-ms-request-id": [ + "fe1a540a-b02b-4900-b5a3-329ebc907696" + ], + "x-ms-correlation-request-id": [ + "fe1a540a-b02b-4900-b5a3-329ebc907696" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021128Z:fe1a540a-b02b-4900-b5a3-329ebc907696" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d72990b-26fd-4ccc-8a42-eb1859a7ab11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10310" + ], + "x-ms-request-id": [ + "7f4dbb35-5cbd-420d-858d-b78287b24113" + ], + "x-ms-correlation-request-id": [ + "7f4dbb35-5cbd-420d-858d-b78287b24113" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:7f4dbb35-5cbd-420d-858d-b78287b24113" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c255c305-0703-4666-9db9-191b4d96e3c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10309" + ], + "x-ms-request-id": [ + "616366f3-4ec2-485a-9258-9b40afc8ae0e" + ], + "x-ms-correlation-request-id": [ + "616366f3-4ec2-485a-9258-9b40afc8ae0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:616366f3-4ec2-485a-9258-9b40afc8ae0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67f11393-29a2-42c1-881e-2e822719caad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10308" + ], + "x-ms-request-id": [ + "44694fd5-43d7-48d0-b574-905c564510e7" + ], + "x-ms-correlation-request-id": [ + "44694fd5-43d7-48d0-b574-905c564510e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:44694fd5-43d7-48d0-b574-905c564510e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a40f599-4a30-49aa-bcc8-d15b59136366" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10307" + ], + "x-ms-request-id": [ + "5d7f2ed2-6323-4f63-93c7-d21d38763210" + ], + "x-ms-correlation-request-id": [ + "5d7f2ed2-6323-4f63-93c7-d21d38763210" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:5d7f2ed2-6323-4f63-93c7-d21d38763210" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29ffd284-ee10-4984-9f03-9914de0849ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10306" + ], + "x-ms-request-id": [ + "09617834-1c70-4237-a7e6-9fcea863a77c" + ], + "x-ms-correlation-request-id": [ + "09617834-1c70-4237-a7e6-9fcea863a77c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:09617834-1c70-4237-a7e6-9fcea863a77c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4056835-1f42-4746-ba6b-a1ed7eaf1369" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10305" + ], + "x-ms-request-id": [ + "b8ecddcb-edf2-4093-a4c7-8abf6c054d51" + ], + "x-ms-correlation-request-id": [ + "b8ecddcb-edf2-4093-a4c7-8abf6c054d51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:b8ecddcb-edf2-4093-a4c7-8abf6c054d51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c734a976-2563-45cf-9089-1dbdd6394ebc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10304" + ], + "x-ms-request-id": [ + "9a32b1a6-d7cc-41d4-9d56-5d90b8348550" + ], + "x-ms-correlation-request-id": [ + "9a32b1a6-d7cc-41d4-9d56-5d90b8348550" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021129Z:9a32b1a6-d7cc-41d4-9d56-5d90b8348550" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb134513-8b4c-480e-8a9a-d4860eb04aec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10303" + ], + "x-ms-request-id": [ + "5165b83b-236d-403d-b07b-90f697a13a18" + ], + "x-ms-correlation-request-id": [ + "5165b83b-236d-403d-b07b-90f697a13a18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:5165b83b-236d-403d-b07b-90f697a13a18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53d8c1bf-4c80-4907-8c63-72c4f870adf1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10302" + ], + "x-ms-request-id": [ + "c0c5989c-620a-4c99-b826-d23ac10bc97a" + ], + "x-ms-correlation-request-id": [ + "c0c5989c-620a-4c99-b826-d23ac10bc97a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:c0c5989c-620a-4c99-b826-d23ac10bc97a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c4951af-e529-492e-ac05-f12f6d0e7131" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10301" + ], + "x-ms-request-id": [ + "681a0501-9fce-4109-8b8f-d6883a4cc6e3" + ], + "x-ms-correlation-request-id": [ + "681a0501-9fce-4109-8b8f-d6883a4cc6e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:681a0501-9fce-4109-8b8f-d6883a4cc6e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daa1eaad-1a5f-4044-a1ab-1529eaee8b43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10300" + ], + "x-ms-request-id": [ + "1c570c34-d0cb-4da3-b0b7-90cb2d2d4307" + ], + "x-ms-correlation-request-id": [ + "1c570c34-d0cb-4da3-b0b7-90cb2d2d4307" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:1c570c34-d0cb-4da3-b0b7-90cb2d2d4307" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6554287d-3e0e-4a7e-8276-1b833d906b33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10299" + ], + "x-ms-request-id": [ + "3ac077ce-cd19-4f8c-9281-0f597e0a9e7a" + ], + "x-ms-correlation-request-id": [ + "3ac077ce-cd19-4f8c-9281-0f597e0a9e7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:3ac077ce-cd19-4f8c-9281-0f597e0a9e7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46c59a69-57da-4bcc-87ef-5d2bc5d30d92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10298" + ], + "x-ms-request-id": [ + "0fe4519e-c6dd-437d-b2e2-7559bb73359e" + ], + "x-ms-correlation-request-id": [ + "0fe4519e-c6dd-437d-b2e2-7559bb73359e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021130Z:0fe4519e-c6dd-437d-b2e2-7559bb73359e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75ca1af9-6e91-4c8f-b9e2-0d09f471b04f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10297" + ], + "x-ms-request-id": [ + "0f11789d-5368-48b1-8117-1fcd556de599" + ], + "x-ms-correlation-request-id": [ + "0f11789d-5368-48b1-8117-1fcd556de599" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:0f11789d-5368-48b1-8117-1fcd556de599" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d369f00-eeb8-44a9-bb0f-424426d91139" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10296" + ], + "x-ms-request-id": [ + "86d18072-ed29-44ae-b445-6eaeb57ee6c5" + ], + "x-ms-correlation-request-id": [ + "86d18072-ed29-44ae-b445-6eaeb57ee6c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:86d18072-ed29-44ae-b445-6eaeb57ee6c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a672384a-6b20-4e06-8660-1ccafd3267e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10295" + ], + "x-ms-request-id": [ + "59f07a57-7f18-4627-a5d6-d8e3f1cf1987" + ], + "x-ms-correlation-request-id": [ + "59f07a57-7f18-4627-a5d6-d8e3f1cf1987" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:59f07a57-7f18-4627-a5d6-d8e3f1cf1987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df830937-3e45-4326-ae21-4f0f8d1bb8c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10294" + ], + "x-ms-request-id": [ + "05fd871f-c7b0-42a8-b899-cb6a09e52b00" + ], + "x-ms-correlation-request-id": [ + "05fd871f-c7b0-42a8-b899-cb6a09e52b00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:05fd871f-c7b0-42a8-b899-cb6a09e52b00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79e57c37-1274-4e5c-9883-7eef27a3b63e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10293" + ], + "x-ms-request-id": [ + "a5c137f7-84aa-4dd6-8cde-7acfeac5e40d" + ], + "x-ms-correlation-request-id": [ + "a5c137f7-84aa-4dd6-8cde-7acfeac5e40d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:a5c137f7-84aa-4dd6-8cde-7acfeac5e40d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5865274-4c62-4a38-b2eb-b628c5fcadc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10292" + ], + "x-ms-request-id": [ + "1de3c3cc-6cf0-4705-93dd-cacc1c0fb285" + ], + "x-ms-correlation-request-id": [ + "1de3c3cc-6cf0-4705-93dd-cacc1c0fb285" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021131Z:1de3c3cc-6cf0-4705-93dd-cacc1c0fb285" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "958c5ab6-47d8-4669-91eb-e2ab1839d40b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10291" + ], + "x-ms-request-id": [ + "c5e704c0-d0de-486f-8409-8433897f420a" + ], + "x-ms-correlation-request-id": [ + "c5e704c0-d0de-486f-8409-8433897f420a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:c5e704c0-d0de-486f-8409-8433897f420a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59de4d8a-986b-4a15-b8c7-67fdf83d57ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10290" + ], + "x-ms-request-id": [ + "be354472-f82a-4f7d-933c-93b8ed859b1c" + ], + "x-ms-correlation-request-id": [ + "be354472-f82a-4f7d-933c-93b8ed859b1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:be354472-f82a-4f7d-933c-93b8ed859b1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b570024-f3ac-4ac0-8c46-7e873600e21e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10289" + ], + "x-ms-request-id": [ + "55ba6b0e-ff55-499c-a584-0b85abad9084" + ], + "x-ms-correlation-request-id": [ + "55ba6b0e-ff55-499c-a584-0b85abad9084" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:55ba6b0e-ff55-499c-a584-0b85abad9084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8e12678-b07b-4c5a-8cdc-c857e84259d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10288" + ], + "x-ms-request-id": [ + "976287b2-1bf7-41f6-897a-7a153d91b33d" + ], + "x-ms-correlation-request-id": [ + "976287b2-1bf7-41f6-897a-7a153d91b33d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:976287b2-1bf7-41f6-897a-7a153d91b33d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0511d14-12d1-4a9d-bc97-2dce0acb2f91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10287" + ], + "x-ms-request-id": [ + "5be9fdb3-c878-4eca-aea1-9e1bb2a45c7d" + ], + "x-ms-correlation-request-id": [ + "5be9fdb3-c878-4eca-aea1-9e1bb2a45c7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:5be9fdb3-c878-4eca-aea1-9e1bb2a45c7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8413171-c763-4760-8fd5-423eacb3cbae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10286" + ], + "x-ms-request-id": [ + "795ac602-10e9-4e47-8f32-549d4271940e" + ], + "x-ms-correlation-request-id": [ + "795ac602-10e9-4e47-8f32-549d4271940e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021132Z:795ac602-10e9-4e47-8f32-549d4271940e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23d49a6f-d7d3-4aca-bb04-b7ab05e4c4e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10285" + ], + "x-ms-request-id": [ + "770cabee-91b7-443d-99d5-d953fae90b25" + ], + "x-ms-correlation-request-id": [ + "770cabee-91b7-443d-99d5-d953fae90b25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:770cabee-91b7-443d-99d5-d953fae90b25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6dd8f23-9b4b-474b-84c4-e3cc1b8b67e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10284" + ], + "x-ms-request-id": [ + "d2faf625-f68a-484c-9136-8b9dd0d6ac57" + ], + "x-ms-correlation-request-id": [ + "d2faf625-f68a-484c-9136-8b9dd0d6ac57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:d2faf625-f68a-484c-9136-8b9dd0d6ac57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ded6388-7a56-41d1-9d4b-a474f0284b8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10283" + ], + "x-ms-request-id": [ + "c0348968-474f-4b0c-8d80-44be1b47ddb4" + ], + "x-ms-correlation-request-id": [ + "c0348968-474f-4b0c-8d80-44be1b47ddb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:c0348968-474f-4b0c-8d80-44be1b47ddb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a42d2f9d-fee3-4fdb-820f-3c5185fad5a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10282" + ], + "x-ms-request-id": [ + "9f26061c-2ce9-438e-9739-b9dac3232b6e" + ], + "x-ms-correlation-request-id": [ + "9f26061c-2ce9-438e-9739-b9dac3232b6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:9f26061c-2ce9-438e-9739-b9dac3232b6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b85004c-a2fc-45a5-b4fc-f4cf29cdb031" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10281" + ], + "x-ms-request-id": [ + "2fff8c81-6021-4ffe-b1b2-0042caa63edc" + ], + "x-ms-correlation-request-id": [ + "2fff8c81-6021-4ffe-b1b2-0042caa63edc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:2fff8c81-6021-4ffe-b1b2-0042caa63edc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef703ce2-457d-4bd6-8a84-a8cb9cf7992c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10280" + ], + "x-ms-request-id": [ + "78735364-fc09-4202-8fab-f594ca75c548" + ], + "x-ms-correlation-request-id": [ + "78735364-fc09-4202-8fab-f594ca75c548" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021133Z:78735364-fc09-4202-8fab-f594ca75c548" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8579de8d-c455-43cb-817e-f95aea05a458" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10279" + ], + "x-ms-request-id": [ + "0435bf26-6ef1-4d78-98da-a77dd418222f" + ], + "x-ms-correlation-request-id": [ + "0435bf26-6ef1-4d78-98da-a77dd418222f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:0435bf26-6ef1-4d78-98da-a77dd418222f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ff4dd4-04c9-4966-b231-f23a1d94bc30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10278" + ], + "x-ms-request-id": [ + "bc94df80-a41c-4db5-9768-cf1e0b8c9e96" + ], + "x-ms-correlation-request-id": [ + "bc94df80-a41c-4db5-9768-cf1e0b8c9e96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:bc94df80-a41c-4db5-9768-cf1e0b8c9e96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf10d712-da5d-4591-824d-e011733ee60f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10277" + ], + "x-ms-request-id": [ + "c49dba83-a8dd-4cd0-8164-d6564afe6872" + ], + "x-ms-correlation-request-id": [ + "c49dba83-a8dd-4cd0-8164-d6564afe6872" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:c49dba83-a8dd-4cd0-8164-d6564afe6872" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "484739ae-a5c0-4c9e-8fee-c440c0482a76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10276" + ], + "x-ms-request-id": [ + "95f87905-8cbe-4a71-b4ec-9766619ce180" + ], + "x-ms-correlation-request-id": [ + "95f87905-8cbe-4a71-b4ec-9766619ce180" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:95f87905-8cbe-4a71-b4ec-9766619ce180" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c92b97a7-9f1a-48e9-b904-e643132862ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10275" + ], + "x-ms-request-id": [ + "f958ad11-65e3-42b1-9445-5e90a6fdc344" + ], + "x-ms-correlation-request-id": [ + "f958ad11-65e3-42b1-9445-5e90a6fdc344" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:f958ad11-65e3-42b1-9445-5e90a6fdc344" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bb47a51-6602-4047-ad2c-751d7c22f579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10274" + ], + "x-ms-request-id": [ + "6502ed14-e0e2-4f5f-9927-27c599722c41" + ], + "x-ms-correlation-request-id": [ + "6502ed14-e0e2-4f5f-9927-27c599722c41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021134Z:6502ed14-e0e2-4f5f-9927-27c599722c41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17fce7ee-cfa9-40ac-9aba-506231dc71b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10273" + ], + "x-ms-request-id": [ + "b145a0b1-3434-44aa-9dfd-fa746e8382b5" + ], + "x-ms-correlation-request-id": [ + "b145a0b1-3434-44aa-9dfd-fa746e8382b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:b145a0b1-3434-44aa-9dfd-fa746e8382b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b4e613a-590c-486b-8682-afa5895f04fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10272" + ], + "x-ms-request-id": [ + "37cfee1a-703b-41ae-b798-9104a2605ce3" + ], + "x-ms-correlation-request-id": [ + "37cfee1a-703b-41ae-b798-9104a2605ce3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:37cfee1a-703b-41ae-b798-9104a2605ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cdae97f-5abd-422b-b082-9c8b76c6bae4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10271" + ], + "x-ms-request-id": [ + "118e270e-22e7-4c64-a942-ac82fad209a0" + ], + "x-ms-correlation-request-id": [ + "118e270e-22e7-4c64-a942-ac82fad209a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:118e270e-22e7-4c64-a942-ac82fad209a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a20bcb67-2bb0-4f31-bc0d-88abb2fa428a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10270" + ], + "x-ms-request-id": [ + "5a4c3244-db70-445e-9317-d0eb8670f403" + ], + "x-ms-correlation-request-id": [ + "5a4c3244-db70-445e-9317-d0eb8670f403" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:5a4c3244-db70-445e-9317-d0eb8670f403" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b062c4e1-ca90-442c-b190-69c155f9147d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10269" + ], + "x-ms-request-id": [ + "b7975a06-030c-49f8-b2ee-bb6411c5f1f2" + ], + "x-ms-correlation-request-id": [ + "b7975a06-030c-49f8-b2ee-bb6411c5f1f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:b7975a06-030c-49f8-b2ee-bb6411c5f1f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b39adc7-40b1-432b-9793-ac1a14edd85d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10268" + ], + "x-ms-request-id": [ + "25df18e6-6417-48e6-980d-d15033ef58e6" + ], + "x-ms-correlation-request-id": [ + "25df18e6-6417-48e6-980d-d15033ef58e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021135Z:25df18e6-6417-48e6-980d-d15033ef58e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efad82c8-1181-4471-98bd-54a0ddabaf4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10267" + ], + "x-ms-request-id": [ + "b01e78b0-bb29-44e0-a3ea-430ca426c4c4" + ], + "x-ms-correlation-request-id": [ + "b01e78b0-bb29-44e0-a3ea-430ca426c4c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:b01e78b0-bb29-44e0-a3ea-430ca426c4c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca6e0c26-6cab-4502-83bc-167d79f224da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10266" + ], + "x-ms-request-id": [ + "095644a7-2cd3-482c-abfe-a84c6cd01f6b" + ], + "x-ms-correlation-request-id": [ + "095644a7-2cd3-482c-abfe-a84c6cd01f6b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:095644a7-2cd3-482c-abfe-a84c6cd01f6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d10b8e5-7bf0-42e9-bce4-d325a4b87bd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10265" + ], + "x-ms-request-id": [ + "39f6691a-41be-4384-b2b4-8896ae993393" + ], + "x-ms-correlation-request-id": [ + "39f6691a-41be-4384-b2b4-8896ae993393" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:39f6691a-41be-4384-b2b4-8896ae993393" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98b51b0e-b5c5-43ce-9ab8-91ce57641ba1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10264" + ], + "x-ms-request-id": [ + "ad0a6b08-602c-4986-b22f-f596bbaa00a9" + ], + "x-ms-correlation-request-id": [ + "ad0a6b08-602c-4986-b22f-f596bbaa00a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:ad0a6b08-602c-4986-b22f-f596bbaa00a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e84e0823-69f7-49e2-a8c5-5f6e76e6ea8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10263" + ], + "x-ms-request-id": [ + "7cb81ccd-b6f0-49cb-8d57-713f94ebac1b" + ], + "x-ms-correlation-request-id": [ + "7cb81ccd-b6f0-49cb-8d57-713f94ebac1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:7cb81ccd-b6f0-49cb-8d57-713f94ebac1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb7af71f-f388-4821-8de4-1625fc7ce2c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10262" + ], + "x-ms-request-id": [ + "d8cf0258-5448-49ae-bec3-d52b4a549a9a" + ], + "x-ms-correlation-request-id": [ + "d8cf0258-5448-49ae-bec3-d52b4a549a9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021136Z:d8cf0258-5448-49ae-bec3-d52b4a549a9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94730cb5-eb16-4353-aa03-0a600edcd940" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10261" + ], + "x-ms-request-id": [ + "148fc390-11d3-40b7-bf1f-2e1ce34e0cd3" + ], + "x-ms-correlation-request-id": [ + "148fc390-11d3-40b7-bf1f-2e1ce34e0cd3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:148fc390-11d3-40b7-bf1f-2e1ce34e0cd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9474d6e6-5b1e-4fc5-a8a8-b33ead65f814" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10260" + ], + "x-ms-request-id": [ + "1c0cd937-81ea-4ad0-b85b-470b7791a048" + ], + "x-ms-correlation-request-id": [ + "1c0cd937-81ea-4ad0-b85b-470b7791a048" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:1c0cd937-81ea-4ad0-b85b-470b7791a048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a34833c-27c5-4b9e-a708-42f0fa7a821b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10259" + ], + "x-ms-request-id": [ + "d2d1b695-2cb4-4613-ad12-6720383e1f5b" + ], + "x-ms-correlation-request-id": [ + "d2d1b695-2cb4-4613-ad12-6720383e1f5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:d2d1b695-2cb4-4613-ad12-6720383e1f5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1f02e4e-1732-45bd-b3f2-b3ffbd1494e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10258" + ], + "x-ms-request-id": [ + "ec8264c9-190d-4262-9f2e-18fbe220716e" + ], + "x-ms-correlation-request-id": [ + "ec8264c9-190d-4262-9f2e-18fbe220716e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:ec8264c9-190d-4262-9f2e-18fbe220716e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62f9a95f-0dac-4b65-8eaa-3e496a00e570" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10257" + ], + "x-ms-request-id": [ + "d336e085-c3a8-49bd-b34e-e61f663c751e" + ], + "x-ms-correlation-request-id": [ + "d336e085-c3a8-49bd-b34e-e61f663c751e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:d336e085-c3a8-49bd-b34e-e61f663c751e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2e69209-6e80-4b52-a79b-b8b6ba7cee1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10256" + ], + "x-ms-request-id": [ + "5ea7e315-897a-4c8d-8be4-2eb5e12f2b5f" + ], + "x-ms-correlation-request-id": [ + "5ea7e315-897a-4c8d-8be4-2eb5e12f2b5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021137Z:5ea7e315-897a-4c8d-8be4-2eb5e12f2b5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9be97563-00db-4a31-a373-c285b05abc38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10255" + ], + "x-ms-request-id": [ + "8d2de012-103d-450d-8cdc-c89fabfed9a8" + ], + "x-ms-correlation-request-id": [ + "8d2de012-103d-450d-8cdc-c89fabfed9a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:8d2de012-103d-450d-8cdc-c89fabfed9a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52bd72f5-606d-4343-8375-ffd9966405f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10254" + ], + "x-ms-request-id": [ + "6b6f0801-bf5a-45ba-abba-e1be85517ef7" + ], + "x-ms-correlation-request-id": [ + "6b6f0801-bf5a-45ba-abba-e1be85517ef7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:6b6f0801-bf5a-45ba-abba-e1be85517ef7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9783be7b-64bc-445b-af9c-735bd550d7cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10253" + ], + "x-ms-request-id": [ + "0644f6da-9515-44bb-bea9-fbe26da05d9e" + ], + "x-ms-correlation-request-id": [ + "0644f6da-9515-44bb-bea9-fbe26da05d9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:0644f6da-9515-44bb-bea9-fbe26da05d9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d2f7c32-7008-4e72-8ad8-ebb1115045f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10252" + ], + "x-ms-request-id": [ + "6b1ef7ee-3dbd-4c2d-8037-48e6b4022c29" + ], + "x-ms-correlation-request-id": [ + "6b1ef7ee-3dbd-4c2d-8037-48e6b4022c29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:6b1ef7ee-3dbd-4c2d-8037-48e6b4022c29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63d0c1fe-509c-456a-98ba-3d5f48038978" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10251" + ], + "x-ms-request-id": [ + "10dfefcf-a705-4121-b54f-bf269e80fdef" + ], + "x-ms-correlation-request-id": [ + "10dfefcf-a705-4121-b54f-bf269e80fdef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:10dfefcf-a705-4121-b54f-bf269e80fdef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c8538c6-b839-4f0f-8a4f-d99d43c99537" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10250" + ], + "x-ms-request-id": [ + "7a89ed2f-4861-4acb-a451-7a9638ded42a" + ], + "x-ms-correlation-request-id": [ + "7a89ed2f-4861-4acb-a451-7a9638ded42a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021138Z:7a89ed2f-4861-4acb-a451-7a9638ded42a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e69910e0-99e7-468e-91b7-463ff7ff2b53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10249" + ], + "x-ms-request-id": [ + "3c43604b-1b51-4968-bf12-423bf7d40be7" + ], + "x-ms-correlation-request-id": [ + "3c43604b-1b51-4968-bf12-423bf7d40be7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:3c43604b-1b51-4968-bf12-423bf7d40be7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aea4f514-9ead-41d4-8bcb-506d15f1a5b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10248" + ], + "x-ms-request-id": [ + "c5b48738-a1af-46c9-8deb-038598cc9060" + ], + "x-ms-correlation-request-id": [ + "c5b48738-a1af-46c9-8deb-038598cc9060" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:c5b48738-a1af-46c9-8deb-038598cc9060" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1883b642-e95f-4ab7-b437-15787fe5fb57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10247" + ], + "x-ms-request-id": [ + "26a2229a-ff14-45eb-9ccc-e593b6316dc9" + ], + "x-ms-correlation-request-id": [ + "26a2229a-ff14-45eb-9ccc-e593b6316dc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:26a2229a-ff14-45eb-9ccc-e593b6316dc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "192fbb99-b1e3-4738-9e2b-c2fa0aea97de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10246" + ], + "x-ms-request-id": [ + "37239e5c-a219-4f25-9011-a4e8e65b6f78" + ], + "x-ms-correlation-request-id": [ + "37239e5c-a219-4f25-9011-a4e8e65b6f78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:37239e5c-a219-4f25-9011-a4e8e65b6f78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72bcb1a0-0e85-4db3-9ca4-28c3096b5711" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10245" + ], + "x-ms-request-id": [ + "236f22dc-879b-4b92-8c8b-66f70ea77f77" + ], + "x-ms-correlation-request-id": [ + "236f22dc-879b-4b92-8c8b-66f70ea77f77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:236f22dc-879b-4b92-8c8b-66f70ea77f77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13c79bf1-082c-4705-9431-473efbbac86c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10244" + ], + "x-ms-request-id": [ + "6e8d6a5e-6337-4e99-9b7b-93494bd69b8d" + ], + "x-ms-correlation-request-id": [ + "6e8d6a5e-6337-4e99-9b7b-93494bd69b8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021139Z:6e8d6a5e-6337-4e99-9b7b-93494bd69b8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "050eb1b4-5b42-46bd-9479-d77b922f2379" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10243" + ], + "x-ms-request-id": [ + "8064160c-cea1-44bd-a3c0-fa4c21988f9a" + ], + "x-ms-correlation-request-id": [ + "8064160c-cea1-44bd-a3c0-fa4c21988f9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:8064160c-cea1-44bd-a3c0-fa4c21988f9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7003c68-c0bf-43d2-afe8-eca584f58059" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10242" + ], + "x-ms-request-id": [ + "e24634e0-07eb-4a3e-873a-5e37c777389e" + ], + "x-ms-correlation-request-id": [ + "e24634e0-07eb-4a3e-873a-5e37c777389e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:e24634e0-07eb-4a3e-873a-5e37c777389e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bd50176-5efe-4835-9f05-5a1568883297" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10241" + ], + "x-ms-request-id": [ + "ed0c39a5-4f3d-4ef2-9304-46abe800cde3" + ], + "x-ms-correlation-request-id": [ + "ed0c39a5-4f3d-4ef2-9304-46abe800cde3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:ed0c39a5-4f3d-4ef2-9304-46abe800cde3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d948bd98-903d-4bfd-83bb-db66f245cd7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10240" + ], + "x-ms-request-id": [ + "9604dc44-fc0d-4ed7-ad3f-82d723de4c2e" + ], + "x-ms-correlation-request-id": [ + "9604dc44-fc0d-4ed7-ad3f-82d723de4c2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:9604dc44-fc0d-4ed7-ad3f-82d723de4c2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd6e79bb-a0a5-4b88-800d-3c5dd977d081" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10239" + ], + "x-ms-request-id": [ + "277f3f02-53d1-4906-b611-699ba64d22d4" + ], + "x-ms-correlation-request-id": [ + "277f3f02-53d1-4906-b611-699ba64d22d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:277f3f02-53d1-4906-b611-699ba64d22d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1b37a26-ce25-4335-abbe-1f63530b5e12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10238" + ], + "x-ms-request-id": [ + "6a7d2236-d7f7-4155-846c-50c45bd230b7" + ], + "x-ms-correlation-request-id": [ + "6a7d2236-d7f7-4155-846c-50c45bd230b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:6a7d2236-d7f7-4155-846c-50c45bd230b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a1aecfe-b70a-4e4e-acd8-f780da463240" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10237" + ], + "x-ms-request-id": [ + "11eaf6f2-9e50-48f7-b63e-751c9f3abeed" + ], + "x-ms-correlation-request-id": [ + "11eaf6f2-9e50-48f7-b63e-751c9f3abeed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021140Z:11eaf6f2-9e50-48f7-b63e-751c9f3abeed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad4f35fa-4343-4afd-842e-64ce270f29ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10236" + ], + "x-ms-request-id": [ + "df803eb4-e91c-4807-9445-95beecce7bb5" + ], + "x-ms-correlation-request-id": [ + "df803eb4-e91c-4807-9445-95beecce7bb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:df803eb4-e91c-4807-9445-95beecce7bb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57783a76-b18b-4f69-8bc9-af73741c45fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10235" + ], + "x-ms-request-id": [ + "bb268fb7-36aa-4f16-8cc5-fc7ae68919e5" + ], + "x-ms-correlation-request-id": [ + "bb268fb7-36aa-4f16-8cc5-fc7ae68919e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:bb268fb7-36aa-4f16-8cc5-fc7ae68919e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f70a3e7-56ef-494b-a2b9-3502c0d2597e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10234" + ], + "x-ms-request-id": [ + "4e723769-c6cd-4f6a-91ad-540b5d30375e" + ], + "x-ms-correlation-request-id": [ + "4e723769-c6cd-4f6a-91ad-540b5d30375e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:4e723769-c6cd-4f6a-91ad-540b5d30375e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4a00292-96fe-488a-981a-9b978e8bd889" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10233" + ], + "x-ms-request-id": [ + "8e0ec75b-df88-4a10-8c35-5ff69957fda9" + ], + "x-ms-correlation-request-id": [ + "8e0ec75b-df88-4a10-8c35-5ff69957fda9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:8e0ec75b-df88-4a10-8c35-5ff69957fda9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6179aca-16db-49c9-8276-bd193a44c51b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10232" + ], + "x-ms-request-id": [ + "c58e0d1d-44e1-4cb4-8d5e-2ee755570227" + ], + "x-ms-correlation-request-id": [ + "c58e0d1d-44e1-4cb4-8d5e-2ee755570227" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:c58e0d1d-44e1-4cb4-8d5e-2ee755570227" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "847a82ed-5fa4-4e52-a64e-25b379548922" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10231" + ], + "x-ms-request-id": [ + "f9a637bb-add4-440d-b6fd-6723468c8274" + ], + "x-ms-correlation-request-id": [ + "f9a637bb-add4-440d-b6fd-6723468c8274" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021141Z:f9a637bb-add4-440d-b6fd-6723468c8274" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29581b0f-2407-4730-a99f-7d00b29865b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10230" + ], + "x-ms-request-id": [ + "9a260b4f-fca7-4fd2-986f-0b65abda9c7a" + ], + "x-ms-correlation-request-id": [ + "9a260b4f-fca7-4fd2-986f-0b65abda9c7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:9a260b4f-fca7-4fd2-986f-0b65abda9c7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6169cee9-d2f1-43e0-aacf-27b0c0829293" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10229" + ], + "x-ms-request-id": [ + "97154020-ec23-4c9f-8c1e-0d18b5c9ec5a" + ], + "x-ms-correlation-request-id": [ + "97154020-ec23-4c9f-8c1e-0d18b5c9ec5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:97154020-ec23-4c9f-8c1e-0d18b5c9ec5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d803eacf-48c2-4c1f-b502-b51f404714c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10228" + ], + "x-ms-request-id": [ + "2d857e91-a0a5-4ff4-8c01-e3843ffc781a" + ], + "x-ms-correlation-request-id": [ + "2d857e91-a0a5-4ff4-8c01-e3843ffc781a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:2d857e91-a0a5-4ff4-8c01-e3843ffc781a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fea1e117-fc0e-4d27-8309-9d0f2250e852" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10227" + ], + "x-ms-request-id": [ + "bb1fafa7-19c5-4d66-b95f-1e020d2b2a5d" + ], + "x-ms-correlation-request-id": [ + "bb1fafa7-19c5-4d66-b95f-1e020d2b2a5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:bb1fafa7-19c5-4d66-b95f-1e020d2b2a5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "782e547f-9eb5-46ac-a3f4-eb3abdb1701f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10226" + ], + "x-ms-request-id": [ + "1928f1eb-4997-48a1-bfd5-2f6a88db6152" + ], + "x-ms-correlation-request-id": [ + "1928f1eb-4997-48a1-bfd5-2f6a88db6152" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:1928f1eb-4997-48a1-bfd5-2f6a88db6152" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ad8a3c7-acee-482b-a617-68f0df3263fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10225" + ], + "x-ms-request-id": [ + "6d5bbec8-5448-4c27-93f2-b3ad1b6aa55a" + ], + "x-ms-correlation-request-id": [ + "6d5bbec8-5448-4c27-93f2-b3ad1b6aa55a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021142Z:6d5bbec8-5448-4c27-93f2-b3ad1b6aa55a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39b9c63e-40f2-4b60-b943-dd66e413b7f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10224" + ], + "x-ms-request-id": [ + "f810d272-cbae-4209-b329-e2056b6f84d1" + ], + "x-ms-correlation-request-id": [ + "f810d272-cbae-4209-b329-e2056b6f84d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:f810d272-cbae-4209-b329-e2056b6f84d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7868eb4-7fa9-4bb4-b0ca-5274873b3799" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10223" + ], + "x-ms-request-id": [ + "a954fda1-9506-448b-ab57-5c8212948661" + ], + "x-ms-correlation-request-id": [ + "a954fda1-9506-448b-ab57-5c8212948661" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:a954fda1-9506-448b-ab57-5c8212948661" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d239f35-29b3-4eb1-a040-a3f268c811d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10222" + ], + "x-ms-request-id": [ + "b5295d8b-7f49-4ca0-92cb-e4e2c9215e03" + ], + "x-ms-correlation-request-id": [ + "b5295d8b-7f49-4ca0-92cb-e4e2c9215e03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:b5295d8b-7f49-4ca0-92cb-e4e2c9215e03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c0751e7-9870-4140-a5d9-c54a6213c67d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10221" + ], + "x-ms-request-id": [ + "7b05c175-15c8-490b-8179-5fec2480d244" + ], + "x-ms-correlation-request-id": [ + "7b05c175-15c8-490b-8179-5fec2480d244" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:7b05c175-15c8-490b-8179-5fec2480d244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f43b342-a8fa-4492-8c85-e28878c59d96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10220" + ], + "x-ms-request-id": [ + "dd2c376a-7db4-4d9f-8648-651fbab6c0b7" + ], + "x-ms-correlation-request-id": [ + "dd2c376a-7db4-4d9f-8648-651fbab6c0b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:dd2c376a-7db4-4d9f-8648-651fbab6c0b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62b36225-289c-4605-842d-1bb14df3322c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10219" + ], + "x-ms-request-id": [ + "69a0e4d6-62d0-45eb-bf0b-b3824395f2d3" + ], + "x-ms-correlation-request-id": [ + "69a0e4d6-62d0-45eb-bf0b-b3824395f2d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021143Z:69a0e4d6-62d0-45eb-bf0b-b3824395f2d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fef50c23-f6c3-47da-81b4-54610ad87f2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10218" + ], + "x-ms-request-id": [ + "8cd33845-3c51-4cd8-a893-2fd67806f706" + ], + "x-ms-correlation-request-id": [ + "8cd33845-3c51-4cd8-a893-2fd67806f706" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:8cd33845-3c51-4cd8-a893-2fd67806f706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a0c2c82-4e24-44d0-aa70-c960d71b4f91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10217" + ], + "x-ms-request-id": [ + "8c37d659-c1a7-42b2-93c0-b91877c3ac79" + ], + "x-ms-correlation-request-id": [ + "8c37d659-c1a7-42b2-93c0-b91877c3ac79" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:8c37d659-c1a7-42b2-93c0-b91877c3ac79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f8a7023-0142-45d9-8e63-1401292ff645" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10216" + ], + "x-ms-request-id": [ + "4bfbe17b-f716-4a01-9a76-57151a079a44" + ], + "x-ms-correlation-request-id": [ + "4bfbe17b-f716-4a01-9a76-57151a079a44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:4bfbe17b-f716-4a01-9a76-57151a079a44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85421d50-41f6-4f94-859f-79f2f12d423a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10215" + ], + "x-ms-request-id": [ + "6c04406a-1007-4a5f-91a1-e9214809a65c" + ], + "x-ms-correlation-request-id": [ + "6c04406a-1007-4a5f-91a1-e9214809a65c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:6c04406a-1007-4a5f-91a1-e9214809a65c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f62e7a79-ddbc-4db7-84c1-aa48e77a444b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10214" + ], + "x-ms-request-id": [ + "5fb3d238-1b7c-41c1-b157-230fbe9bf325" + ], + "x-ms-correlation-request-id": [ + "5fb3d238-1b7c-41c1-b157-230fbe9bf325" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:5fb3d238-1b7c-41c1-b157-230fbe9bf325" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c17231f-03d9-4ca4-a071-a8dafad34bde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10213" + ], + "x-ms-request-id": [ + "1f3a65e8-1b6e-4aea-acce-4b683cfe7a85" + ], + "x-ms-correlation-request-id": [ + "1f3a65e8-1b6e-4aea-acce-4b683cfe7a85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021144Z:1f3a65e8-1b6e-4aea-acce-4b683cfe7a85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6c3c308-4545-43b1-a9b1-58c7a9685964" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10212" + ], + "x-ms-request-id": [ + "f39ff3dc-9abb-4670-bdf0-b0b3c7d43427" + ], + "x-ms-correlation-request-id": [ + "f39ff3dc-9abb-4670-bdf0-b0b3c7d43427" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:f39ff3dc-9abb-4670-bdf0-b0b3c7d43427" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63e12345-8521-4fe0-ac62-6b23fd0185e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10211" + ], + "x-ms-request-id": [ + "5a3c885c-9d06-4070-890e-f2cfec93ec14" + ], + "x-ms-correlation-request-id": [ + "5a3c885c-9d06-4070-890e-f2cfec93ec14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:5a3c885c-9d06-4070-890e-f2cfec93ec14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3410e6b-3603-4ed3-964c-8989a25ac543" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10210" + ], + "x-ms-request-id": [ + "71d2c87c-d676-493c-93f8-c2135318d417" + ], + "x-ms-correlation-request-id": [ + "71d2c87c-d676-493c-93f8-c2135318d417" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:71d2c87c-d676-493c-93f8-c2135318d417" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23d43b3b-504a-4556-826d-4008ae089408" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10209" + ], + "x-ms-request-id": [ + "264dcf6f-f8e3-4397-ba2f-4b7276b1304e" + ], + "x-ms-correlation-request-id": [ + "264dcf6f-f8e3-4397-ba2f-4b7276b1304e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:264dcf6f-f8e3-4397-ba2f-4b7276b1304e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79505d8b-7401-474c-ae53-1115c53e1e41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10208" + ], + "x-ms-request-id": [ + "597bc064-c499-4e63-a7d2-f5bc44410988" + ], + "x-ms-correlation-request-id": [ + "597bc064-c499-4e63-a7d2-f5bc44410988" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:597bc064-c499-4e63-a7d2-f5bc44410988" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c3d6137-5df7-4598-9b34-7ba3e3d18ac6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10207" + ], + "x-ms-request-id": [ + "f8fd794d-c933-4f6d-89a5-dbf1e93c8c52" + ], + "x-ms-correlation-request-id": [ + "f8fd794d-c933-4f6d-89a5-dbf1e93c8c52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021145Z:f8fd794d-c933-4f6d-89a5-dbf1e93c8c52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0b3f799-f99d-4bee-88b3-326d3923d0c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10206" + ], + "x-ms-request-id": [ + "34f78681-ed37-4629-8cef-40c7eb4e62bf" + ], + "x-ms-correlation-request-id": [ + "34f78681-ed37-4629-8cef-40c7eb4e62bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:34f78681-ed37-4629-8cef-40c7eb4e62bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc05ae7b-769e-47e6-bc6c-f0064a8ae22b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10205" + ], + "x-ms-request-id": [ + "208b3014-d9be-4d32-bfb1-74097eb88625" + ], + "x-ms-correlation-request-id": [ + "208b3014-d9be-4d32-bfb1-74097eb88625" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:208b3014-d9be-4d32-bfb1-74097eb88625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e831627c-4285-4f79-bbf9-907ad1b42f9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10204" + ], + "x-ms-request-id": [ + "803e99ef-f49b-4418-815a-166c5742278a" + ], + "x-ms-correlation-request-id": [ + "803e99ef-f49b-4418-815a-166c5742278a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:803e99ef-f49b-4418-815a-166c5742278a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b105d83-03ad-4139-9ce7-e847961625a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10203" + ], + "x-ms-request-id": [ + "10b93456-9f88-457b-ac6e-e2e64a219014" + ], + "x-ms-correlation-request-id": [ + "10b93456-9f88-457b-ac6e-e2e64a219014" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:10b93456-9f88-457b-ac6e-e2e64a219014" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7484a387-9106-4eeb-962c-9f25fe791809" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10202" + ], + "x-ms-request-id": [ + "a9b4a1a9-4b05-4fe4-8847-0b05fa1f8916" + ], + "x-ms-correlation-request-id": [ + "a9b4a1a9-4b05-4fe4-8847-0b05fa1f8916" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:a9b4a1a9-4b05-4fe4-8847-0b05fa1f8916" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "945164da-58c9-46e9-aa95-a2a324e7359c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10201" + ], + "x-ms-request-id": [ + "7d2cae5b-d2a0-46f3-b0eb-66cc6371eed4" + ], + "x-ms-correlation-request-id": [ + "7d2cae5b-d2a0-46f3-b0eb-66cc6371eed4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:7d2cae5b-d2a0-46f3-b0eb-66cc6371eed4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a43c486-f1ea-4299-b879-6591140eaad6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10200" + ], + "x-ms-request-id": [ + "8d18b91c-03fc-4f93-a10f-611569abe1b6" + ], + "x-ms-correlation-request-id": [ + "8d18b91c-03fc-4f93-a10f-611569abe1b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021146Z:8d18b91c-03fc-4f93-a10f-611569abe1b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36ad870c-55fb-406a-adff-7bcf1f673ae8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10199" + ], + "x-ms-request-id": [ + "1da6d38f-c518-4502-8725-b95020afb3f0" + ], + "x-ms-correlation-request-id": [ + "1da6d38f-c518-4502-8725-b95020afb3f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021147Z:1da6d38f-c518-4502-8725-b95020afb3f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a39555-7173-4f8f-be28-d38a390cac83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10198" + ], + "x-ms-request-id": [ + "158f365f-ca7a-4118-8f2f-f952a0a8005b" + ], + "x-ms-correlation-request-id": [ + "158f365f-ca7a-4118-8f2f-f952a0a8005b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021147Z:158f365f-ca7a-4118-8f2f-f952a0a8005b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "138cf921-d8c1-4c49-89fa-8c704b3932fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10197" + ], + "x-ms-request-id": [ + "2f3bd3e2-6bc7-4155-84e2-5ddcb2979926" + ], + "x-ms-correlation-request-id": [ + "2f3bd3e2-6bc7-4155-84e2-5ddcb2979926" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021147Z:2f3bd3e2-6bc7-4155-84e2-5ddcb2979926" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00843b33-4d62-4bbe-9a5d-78e99134c647" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10196" + ], + "x-ms-request-id": [ + "c4f27225-03e6-4c05-ab50-351b2780dbe6" + ], + "x-ms-correlation-request-id": [ + "c4f27225-03e6-4c05-ab50-351b2780dbe6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021147Z:c4f27225-03e6-4c05-ab50-351b2780dbe6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcb7d7c4-5049-4385-9b2e-41fdc7f47935" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10195" + ], + "x-ms-request-id": [ + "d59df47e-c195-465d-b50c-cfe921f716c8" + ], + "x-ms-correlation-request-id": [ + "d59df47e-c195-465d-b50c-cfe921f716c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021147Z:d59df47e-c195-465d-b50c-cfe921f716c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64e27cd9-846f-4e78-a277-4d445b7df20e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10194" + ], + "x-ms-request-id": [ + "7f36ff73-8638-41c3-b414-ddb44929fdc5" + ], + "x-ms-correlation-request-id": [ + "7f36ff73-8638-41c3-b414-ddb44929fdc5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:7f36ff73-8638-41c3-b414-ddb44929fdc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e531ead-63ce-4552-a2ba-2d8ad3b5290a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10193" + ], + "x-ms-request-id": [ + "fcd69294-52bc-4ef9-9779-5f92815811ab" + ], + "x-ms-correlation-request-id": [ + "fcd69294-52bc-4ef9-9779-5f92815811ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:fcd69294-52bc-4ef9-9779-5f92815811ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b185770c-d037-4c29-8fa1-49813c376afd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10192" + ], + "x-ms-request-id": [ + "6175eee6-480f-4779-8d23-89daf5ffbe64" + ], + "x-ms-correlation-request-id": [ + "6175eee6-480f-4779-8d23-89daf5ffbe64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:6175eee6-480f-4779-8d23-89daf5ffbe64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d67d31ab-d4bd-4446-b753-f8fa2342b3f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10191" + ], + "x-ms-request-id": [ + "8e8b8443-1101-4387-a81c-c582023a53e5" + ], + "x-ms-correlation-request-id": [ + "8e8b8443-1101-4387-a81c-c582023a53e5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:8e8b8443-1101-4387-a81c-c582023a53e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41e9fbce-3de3-4760-a3eb-709cc4c7adf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10190" + ], + "x-ms-request-id": [ + "dfb278f0-6415-4b63-a278-494f561de852" + ], + "x-ms-correlation-request-id": [ + "dfb278f0-6415-4b63-a278-494f561de852" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:dfb278f0-6415-4b63-a278-494f561de852" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b24a9ea-ba6e-4203-8043-f3c9eb3e02cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10189" + ], + "x-ms-request-id": [ + "c95dff6c-df3c-4a58-8ade-723dbd5450d0" + ], + "x-ms-correlation-request-id": [ + "c95dff6c-df3c-4a58-8ade-723dbd5450d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021148Z:c95dff6c-df3c-4a58-8ade-723dbd5450d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf33bb64-80a5-4b30-a21c-bbdbf72f533a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10188" + ], + "x-ms-request-id": [ + "00b8fa4d-62b2-4a76-898b-b43e2e2b3ac3" + ], + "x-ms-correlation-request-id": [ + "00b8fa4d-62b2-4a76-898b-b43e2e2b3ac3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:00b8fa4d-62b2-4a76-898b-b43e2e2b3ac3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cba05f6-0ee6-42cd-9473-c6ded4c3056c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10187" + ], + "x-ms-request-id": [ + "5b8fcf3c-2add-4422-b075-267d8719ae12" + ], + "x-ms-correlation-request-id": [ + "5b8fcf3c-2add-4422-b075-267d8719ae12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:5b8fcf3c-2add-4422-b075-267d8719ae12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c01995f-76b2-43d8-8979-8a077ef54ea5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10186" + ], + "x-ms-request-id": [ + "e266ea6e-8b5f-4b05-8ab9-3d5bc6b1b74e" + ], + "x-ms-correlation-request-id": [ + "e266ea6e-8b5f-4b05-8ab9-3d5bc6b1b74e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:e266ea6e-8b5f-4b05-8ab9-3d5bc6b1b74e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "972e9840-d1a8-4444-96c5-3feedc4d81c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10185" + ], + "x-ms-request-id": [ + "f990b84d-378d-4ea8-9f27-30d53a3f8362" + ], + "x-ms-correlation-request-id": [ + "f990b84d-378d-4ea8-9f27-30d53a3f8362" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:f990b84d-378d-4ea8-9f27-30d53a3f8362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07647f5f-3ea3-48fa-87f3-b66bf236496f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10184" + ], + "x-ms-request-id": [ + "bf34cac9-3b6e-45dd-a087-5965ba59521e" + ], + "x-ms-correlation-request-id": [ + "bf34cac9-3b6e-45dd-a087-5965ba59521e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:bf34cac9-3b6e-45dd-a087-5965ba59521e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "485e09f8-3ed9-42ea-b683-72768fc42fe8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10183" + ], + "x-ms-request-id": [ + "e8b247ed-e19c-49fd-8008-4c96fcf95337" + ], + "x-ms-correlation-request-id": [ + "e8b247ed-e19c-49fd-8008-4c96fcf95337" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021149Z:e8b247ed-e19c-49fd-8008-4c96fcf95337" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cb81c64-4cbe-42b3-b12e-9507b743c755" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10182" + ], + "x-ms-request-id": [ + "30b4be81-0a3a-4d61-a7fc-250f72510d62" + ], + "x-ms-correlation-request-id": [ + "30b4be81-0a3a-4d61-a7fc-250f72510d62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:30b4be81-0a3a-4d61-a7fc-250f72510d62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfff97fd-326b-4a1f-ad7d-85f501716e87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10181" + ], + "x-ms-request-id": [ + "019992ef-bcdd-4973-a735-c9c4f0d90765" + ], + "x-ms-correlation-request-id": [ + "019992ef-bcdd-4973-a735-c9c4f0d90765" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:019992ef-bcdd-4973-a735-c9c4f0d90765" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10227358-0998-4397-9dff-7b37e64267e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10180" + ], + "x-ms-request-id": [ + "4d98912b-b862-4665-9b4a-e6eb4ce920e2" + ], + "x-ms-correlation-request-id": [ + "4d98912b-b862-4665-9b4a-e6eb4ce920e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:4d98912b-b862-4665-9b4a-e6eb4ce920e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc30b60-16f1-460e-a68d-263e4606a3ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10179" + ], + "x-ms-request-id": [ + "c7113cff-2d0f-4c9e-b5a0-ab1c50b99ff5" + ], + "x-ms-correlation-request-id": [ + "c7113cff-2d0f-4c9e-b5a0-ab1c50b99ff5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:c7113cff-2d0f-4c9e-b5a0-ab1c50b99ff5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dbfd970-8d53-4473-a398-6671bb7ae8de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10178" + ], + "x-ms-request-id": [ + "26986f16-b855-4e79-9806-711b6a1f2adf" + ], + "x-ms-correlation-request-id": [ + "26986f16-b855-4e79-9806-711b6a1f2adf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:26986f16-b855-4e79-9806-711b6a1f2adf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dc944e8-ea23-42ea-b37e-d062016d4a14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10177" + ], + "x-ms-request-id": [ + "fb5cab38-3082-4927-abf0-35ab7d37a571" + ], + "x-ms-correlation-request-id": [ + "fb5cab38-3082-4927-abf0-35ab7d37a571" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021150Z:fb5cab38-3082-4927-abf0-35ab7d37a571" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11be2a51-d3b2-4504-971e-6fb4a2e95ab3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10176" + ], + "x-ms-request-id": [ + "93ef735f-1096-4282-87fc-ad12f9a9ce57" + ], + "x-ms-correlation-request-id": [ + "93ef735f-1096-4282-87fc-ad12f9a9ce57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:93ef735f-1096-4282-87fc-ad12f9a9ce57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67be44f6-aced-4cb3-8665-b6a1a4eac6be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10175" + ], + "x-ms-request-id": [ + "d2682517-2e17-46cb-9623-005b7a16a820" + ], + "x-ms-correlation-request-id": [ + "d2682517-2e17-46cb-9623-005b7a16a820" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:d2682517-2e17-46cb-9623-005b7a16a820" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5900306-7247-49b1-83d4-50061ae91252" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10174" + ], + "x-ms-request-id": [ + "0cf071b5-1538-483d-9b19-d783e3a63a9f" + ], + "x-ms-correlation-request-id": [ + "0cf071b5-1538-483d-9b19-d783e3a63a9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:0cf071b5-1538-483d-9b19-d783e3a63a9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0d5c2a7-e02c-4ea3-b125-dae21a743ac9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10173" + ], + "x-ms-request-id": [ + "9b5d7ebf-4206-4716-b98c-9a388274540f" + ], + "x-ms-correlation-request-id": [ + "9b5d7ebf-4206-4716-b98c-9a388274540f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:9b5d7ebf-4206-4716-b98c-9a388274540f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "161e0137-a5c4-43e5-b996-91e46c53f396" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10172" + ], + "x-ms-request-id": [ + "6a9a1dbf-0401-43d2-b3c2-94565dfd80db" + ], + "x-ms-correlation-request-id": [ + "6a9a1dbf-0401-43d2-b3c2-94565dfd80db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:6a9a1dbf-0401-43d2-b3c2-94565dfd80db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97e5a3b8-12cd-41a6-a23d-7380ab387a78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10171" + ], + "x-ms-request-id": [ + "e7d06e3f-2ec0-4dc0-a14b-8515e3bc4622" + ], + "x-ms-correlation-request-id": [ + "e7d06e3f-2ec0-4dc0-a14b-8515e3bc4622" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021151Z:e7d06e3f-2ec0-4dc0-a14b-8515e3bc4622" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec8dd438-e679-4fd0-beba-290a160794b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10170" + ], + "x-ms-request-id": [ + "4a369eeb-b235-4340-bac1-53946e3413f9" + ], + "x-ms-correlation-request-id": [ + "4a369eeb-b235-4340-bac1-53946e3413f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:4a369eeb-b235-4340-bac1-53946e3413f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8794568d-ee9c-4094-bc25-94db743a8a91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10169" + ], + "x-ms-request-id": [ + "aeaade47-aa97-4ad7-b03a-0efba1a42cec" + ], + "x-ms-correlation-request-id": [ + "aeaade47-aa97-4ad7-b03a-0efba1a42cec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:aeaade47-aa97-4ad7-b03a-0efba1a42cec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48c68193-bcb5-4b00-bd43-21705707196e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10168" + ], + "x-ms-request-id": [ + "04373949-a6fe-465a-87e4-bdb5baedba32" + ], + "x-ms-correlation-request-id": [ + "04373949-a6fe-465a-87e4-bdb5baedba32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:04373949-a6fe-465a-87e4-bdb5baedba32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e636796-54e3-49c1-a3c4-f31e62e5f413" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10167" + ], + "x-ms-request-id": [ + "ea77067d-a74c-4676-a9b1-1b5760d273ac" + ], + "x-ms-correlation-request-id": [ + "ea77067d-a74c-4676-a9b1-1b5760d273ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:ea77067d-a74c-4676-a9b1-1b5760d273ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a977824-1080-4615-b8d7-f1f252ec29fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10166" + ], + "x-ms-request-id": [ + "855f79a8-6b0f-4698-95c8-287a4afd5ca0" + ], + "x-ms-correlation-request-id": [ + "855f79a8-6b0f-4698-95c8-287a4afd5ca0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:855f79a8-6b0f-4698-95c8-287a4afd5ca0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "608754f6-f000-4775-a2b1-95131e9c18ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10165" + ], + "x-ms-request-id": [ + "a79cc47a-f699-4496-a996-489811d418df" + ], + "x-ms-correlation-request-id": [ + "a79cc47a-f699-4496-a996-489811d418df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021152Z:a79cc47a-f699-4496-a996-489811d418df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "540ca724-7aae-48d6-a7e7-707bede3bae2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10164" + ], + "x-ms-request-id": [ + "16d8a4ee-9bb6-4c50-a91f-f2f36bf5ffe0" + ], + "x-ms-correlation-request-id": [ + "16d8a4ee-9bb6-4c50-a91f-f2f36bf5ffe0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:16d8a4ee-9bb6-4c50-a91f-f2f36bf5ffe0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dd81e5b-3cfe-4aba-bf7b-2e743639d0f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10163" + ], + "x-ms-request-id": [ + "3723b8bd-aa44-49c8-a8b1-a75e23adc4b8" + ], + "x-ms-correlation-request-id": [ + "3723b8bd-aa44-49c8-a8b1-a75e23adc4b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:3723b8bd-aa44-49c8-a8b1-a75e23adc4b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b5f4ede-be01-4074-be28-c5cf934631fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10162" + ], + "x-ms-request-id": [ + "b376aba3-56b9-436a-b63b-48d3aed4cbd1" + ], + "x-ms-correlation-request-id": [ + "b376aba3-56b9-436a-b63b-48d3aed4cbd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:b376aba3-56b9-436a-b63b-48d3aed4cbd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fe863c4-829b-401f-85fc-cc7d397d65ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10161" + ], + "x-ms-request-id": [ + "cee9a4c9-0b2a-4021-a380-5ece6c29869f" + ], + "x-ms-correlation-request-id": [ + "cee9a4c9-0b2a-4021-a380-5ece6c29869f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:cee9a4c9-0b2a-4021-a380-5ece6c29869f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "effac5d3-5940-4e95-afe7-f00d411ec950" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10160" + ], + "x-ms-request-id": [ + "040c09f7-6195-4b31-a977-835d48c96199" + ], + "x-ms-correlation-request-id": [ + "040c09f7-6195-4b31-a977-835d48c96199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:040c09f7-6195-4b31-a977-835d48c96199" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bc81185-92da-4d2b-8600-485d00079080" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10159" + ], + "x-ms-request-id": [ + "6e7aac36-e5b7-4b5c-9fe1-23bab7dcd890" + ], + "x-ms-correlation-request-id": [ + "6e7aac36-e5b7-4b5c-9fe1-23bab7dcd890" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021153Z:6e7aac36-e5b7-4b5c-9fe1-23bab7dcd890" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87282ab7-a360-47ed-8850-3bef8926b37f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10158" + ], + "x-ms-request-id": [ + "350f914c-509e-46f3-8bb7-d9b1467a6c71" + ], + "x-ms-correlation-request-id": [ + "350f914c-509e-46f3-8bb7-d9b1467a6c71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:350f914c-509e-46f3-8bb7-d9b1467a6c71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5158b03b-f551-46a1-aa32-ca299c79b36e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10157" + ], + "x-ms-request-id": [ + "83ade803-e075-4c42-bdc3-5d2d0e557d27" + ], + "x-ms-correlation-request-id": [ + "83ade803-e075-4c42-bdc3-5d2d0e557d27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:83ade803-e075-4c42-bdc3-5d2d0e557d27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d363554-8561-4df5-9067-2e8f8e6ce68d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10156" + ], + "x-ms-request-id": [ + "0d0ed2f4-bea9-4655-b886-95ad512d3e5f" + ], + "x-ms-correlation-request-id": [ + "0d0ed2f4-bea9-4655-b886-95ad512d3e5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:0d0ed2f4-bea9-4655-b886-95ad512d3e5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72f8fa85-83c6-4e00-ae44-d4ea2549941c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10155" + ], + "x-ms-request-id": [ + "f6901e76-d240-4811-8345-9f3006e418aa" + ], + "x-ms-correlation-request-id": [ + "f6901e76-d240-4811-8345-9f3006e418aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:f6901e76-d240-4811-8345-9f3006e418aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "094ae0b9-ddb1-4d45-908f-c5f02768b61e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10154" + ], + "x-ms-request-id": [ + "7a23bc85-6e05-4c61-9c53-fa4ae8a47706" + ], + "x-ms-correlation-request-id": [ + "7a23bc85-6e05-4c61-9c53-fa4ae8a47706" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:7a23bc85-6e05-4c61-9c53-fa4ae8a47706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7b42d5-7514-404b-a669-c727fd912312" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10153" + ], + "x-ms-request-id": [ + "025583de-a25a-4853-bb38-b9155abdcb19" + ], + "x-ms-correlation-request-id": [ + "025583de-a25a-4853-bb38-b9155abdcb19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021154Z:025583de-a25a-4853-bb38-b9155abdcb19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ce404ed-5d19-43bf-ae23-7ea69fa73291" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10152" + ], + "x-ms-request-id": [ + "37cb77fb-8b9d-43e6-9679-79e68873572f" + ], + "x-ms-correlation-request-id": [ + "37cb77fb-8b9d-43e6-9679-79e68873572f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:37cb77fb-8b9d-43e6-9679-79e68873572f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbde82a6-1362-445e-83c0-7bc59c68a978" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10151" + ], + "x-ms-request-id": [ + "3c651224-69bd-4bea-af89-2c0a1e31e94f" + ], + "x-ms-correlation-request-id": [ + "3c651224-69bd-4bea-af89-2c0a1e31e94f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:3c651224-69bd-4bea-af89-2c0a1e31e94f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81400a62-d903-4256-aa66-b1e64494c538" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10150" + ], + "x-ms-request-id": [ + "3b98c26f-6839-4ef1-98a8-d0154ba31dfc" + ], + "x-ms-correlation-request-id": [ + "3b98c26f-6839-4ef1-98a8-d0154ba31dfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:3b98c26f-6839-4ef1-98a8-d0154ba31dfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5aa711f7-7914-4877-9b07-0aa24006838c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10149" + ], + "x-ms-request-id": [ + "b93db62c-5778-4415-8f9e-634258d3d3c4" + ], + "x-ms-correlation-request-id": [ + "b93db62c-5778-4415-8f9e-634258d3d3c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:b93db62c-5778-4415-8f9e-634258d3d3c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33202225-6204-4a5d-8ba9-2bfa0ca876a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10148" + ], + "x-ms-request-id": [ + "5ba3b52c-6d6a-41c0-9f5e-907ce783ab3c" + ], + "x-ms-correlation-request-id": [ + "5ba3b52c-6d6a-41c0-9f5e-907ce783ab3c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:5ba3b52c-6d6a-41c0-9f5e-907ce783ab3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "561643b2-49aa-4717-8670-2adfac313be5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10147" + ], + "x-ms-request-id": [ + "4e1d8c19-33ee-4d72-a05b-4ef72b903ef8" + ], + "x-ms-correlation-request-id": [ + "4e1d8c19-33ee-4d72-a05b-4ef72b903ef8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021155Z:4e1d8c19-33ee-4d72-a05b-4ef72b903ef8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "672b93f1-bdf3-4f68-9037-995c144343fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10146" + ], + "x-ms-request-id": [ + "b65982ea-5889-4770-8f18-01284a562a7d" + ], + "x-ms-correlation-request-id": [ + "b65982ea-5889-4770-8f18-01284a562a7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:b65982ea-5889-4770-8f18-01284a562a7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc6288e2-93d1-469c-b02d-92828e3b3bd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10145" + ], + "x-ms-request-id": [ + "a31c14d8-9b7f-43fc-b3bc-56470b6ac351" + ], + "x-ms-correlation-request-id": [ + "a31c14d8-9b7f-43fc-b3bc-56470b6ac351" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:a31c14d8-9b7f-43fc-b3bc-56470b6ac351" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4eac206-0b94-44be-ba81-11ff2862da4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10144" + ], + "x-ms-request-id": [ + "362049b8-aa2f-427b-8d9e-6878d2af97f7" + ], + "x-ms-correlation-request-id": [ + "362049b8-aa2f-427b-8d9e-6878d2af97f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:362049b8-aa2f-427b-8d9e-6878d2af97f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd35e1ab-7fbc-410c-9179-8f4d52b40c2f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10143" + ], + "x-ms-request-id": [ + "69132e23-b105-457e-8b5f-2e06d80f5f0f" + ], + "x-ms-correlation-request-id": [ + "69132e23-b105-457e-8b5f-2e06d80f5f0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:69132e23-b105-457e-8b5f-2e06d80f5f0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0af9c68-8a4d-4b2c-95d9-5016eefbb5a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10142" + ], + "x-ms-request-id": [ + "eb75d31b-c49a-45a8-a3e2-6e9889ccc7b3" + ], + "x-ms-correlation-request-id": [ + "eb75d31b-c49a-45a8-a3e2-6e9889ccc7b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:eb75d31b-c49a-45a8-a3e2-6e9889ccc7b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29fc8d6e-9d09-47df-960d-e100fb61ffff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10141" + ], + "x-ms-request-id": [ + "43573d12-6d8c-467a-8c51-6b2445707291" + ], + "x-ms-correlation-request-id": [ + "43573d12-6d8c-467a-8c51-6b2445707291" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021156Z:43573d12-6d8c-467a-8c51-6b2445707291" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d89545d8-3b32-4848-89f1-8fbf9bb77fd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10140" + ], + "x-ms-request-id": [ + "9ed057dc-4ecf-41cf-b144-024bec071c2e" + ], + "x-ms-correlation-request-id": [ + "9ed057dc-4ecf-41cf-b144-024bec071c2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:9ed057dc-4ecf-41cf-b144-024bec071c2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81acd35b-5ab2-4499-9918-6260ba1be23f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10139" + ], + "x-ms-request-id": [ + "23451b13-549d-4b76-afdd-bf4666b2db7f" + ], + "x-ms-correlation-request-id": [ + "23451b13-549d-4b76-afdd-bf4666b2db7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:23451b13-549d-4b76-afdd-bf4666b2db7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef50a505-8bf4-45fb-873e-4092d58e1e23" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10138" + ], + "x-ms-request-id": [ + "afc23d90-7347-43fe-89dc-8a1b04cf94b3" + ], + "x-ms-correlation-request-id": [ + "afc23d90-7347-43fe-89dc-8a1b04cf94b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:afc23d90-7347-43fe-89dc-8a1b04cf94b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e0f5150-9e47-453f-a2fc-58720ecda449" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10137" + ], + "x-ms-request-id": [ + "8579de7d-1690-49fd-a36b-3c874aed38c1" + ], + "x-ms-correlation-request-id": [ + "8579de7d-1690-49fd-a36b-3c874aed38c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:8579de7d-1690-49fd-a36b-3c874aed38c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "230ef896-6fae-4a8b-8856-3ee43270604a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10136" + ], + "x-ms-request-id": [ + "c6fd4f9c-291a-4e5f-b125-5adcab0bd078" + ], + "x-ms-correlation-request-id": [ + "c6fd4f9c-291a-4e5f-b125-5adcab0bd078" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:c6fd4f9c-291a-4e5f-b125-5adcab0bd078" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1f68b4a-afe6-4686-8c11-0d43080992b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10135" + ], + "x-ms-request-id": [ + "41930eed-1be1-4fd2-aa11-6577ee39848a" + ], + "x-ms-correlation-request-id": [ + "41930eed-1be1-4fd2-aa11-6577ee39848a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021157Z:41930eed-1be1-4fd2-aa11-6577ee39848a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2adb0ea-200a-4a3c-9065-2fa08bad1245" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10134" + ], + "x-ms-request-id": [ + "70fb591e-ab3f-4582-8ba6-1c55b0e2cf70" + ], + "x-ms-correlation-request-id": [ + "70fb591e-ab3f-4582-8ba6-1c55b0e2cf70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:70fb591e-ab3f-4582-8ba6-1c55b0e2cf70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad5d4eb9-ba14-4404-9a4c-2c2a348d6281" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10133" + ], + "x-ms-request-id": [ + "7af81751-579e-4722-92cc-8b49f8b1e484" + ], + "x-ms-correlation-request-id": [ + "7af81751-579e-4722-92cc-8b49f8b1e484" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:7af81751-579e-4722-92cc-8b49f8b1e484" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b93787e-9470-44b1-bcb9-da19135ff9aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10132" + ], + "x-ms-request-id": [ + "f9f12e41-06b4-48d7-8839-026ddfb63599" + ], + "x-ms-correlation-request-id": [ + "f9f12e41-06b4-48d7-8839-026ddfb63599" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:f9f12e41-06b4-48d7-8839-026ddfb63599" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b1c73a8-70ec-4656-aa8b-83d27bc143e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10131" + ], + "x-ms-request-id": [ + "6fcf4f25-f1d0-4dac-bdd8-baf07105b7a2" + ], + "x-ms-correlation-request-id": [ + "6fcf4f25-f1d0-4dac-bdd8-baf07105b7a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:6fcf4f25-f1d0-4dac-bdd8-baf07105b7a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "354e7d3e-d32d-499c-82db-40108abb9325" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10130" + ], + "x-ms-request-id": [ + "3de48079-f1cc-45d8-b1e5-d62542252e76" + ], + "x-ms-correlation-request-id": [ + "3de48079-f1cc-45d8-b1e5-d62542252e76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:3de48079-f1cc-45d8-b1e5-d62542252e76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fde57913-f79e-459a-bc5a-eb1a5416ad02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10129" + ], + "x-ms-request-id": [ + "d4ef9f6e-2f46-4bc2-817d-e49ac9862719" + ], + "x-ms-correlation-request-id": [ + "d4ef9f6e-2f46-4bc2-817d-e49ac9862719" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:d4ef9f6e-2f46-4bc2-817d-e49ac9862719" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "639f0867-6263-482e-867f-785bf2c59d7b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10128" + ], + "x-ms-request-id": [ + "b4dc0817-1b38-4fea-b92c-1ea9128994df" + ], + "x-ms-correlation-request-id": [ + "b4dc0817-1b38-4fea-b92c-1ea9128994df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021158Z:b4dc0817-1b38-4fea-b92c-1ea9128994df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a67a64d4-0329-4910-81c8-e6df5b478d32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10127" + ], + "x-ms-request-id": [ + "aad71246-c1b7-42ec-aad5-367659629c43" + ], + "x-ms-correlation-request-id": [ + "aad71246-c1b7-42ec-aad5-367659629c43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:aad71246-c1b7-42ec-aad5-367659629c43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97e3c871-de58-471a-8a2e-6ee62f2706f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10126" + ], + "x-ms-request-id": [ + "8b022e4b-9ccf-426e-a33c-eb5738bc2439" + ], + "x-ms-correlation-request-id": [ + "8b022e4b-9ccf-426e-a33c-eb5738bc2439" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:8b022e4b-9ccf-426e-a33c-eb5738bc2439" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0209975b-93f2-4ea9-b284-d71ba0d8f2cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10125" + ], + "x-ms-request-id": [ + "e641c6a4-6668-4434-bb69-800d2bc380fc" + ], + "x-ms-correlation-request-id": [ + "e641c6a4-6668-4434-bb69-800d2bc380fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:e641c6a4-6668-4434-bb69-800d2bc380fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab59c5d7-774c-47d8-b5cb-d9ac609ee92a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10124" + ], + "x-ms-request-id": [ + "c541c397-eb8b-485d-8ad9-4c2eb7a20313" + ], + "x-ms-correlation-request-id": [ + "c541c397-eb8b-485d-8ad9-4c2eb7a20313" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:c541c397-eb8b-485d-8ad9-4c2eb7a20313" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13759c37-f6c0-4041-9640-b65437f92be6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10123" + ], + "x-ms-request-id": [ + "e0ba4a8a-23fa-4166-8bb3-0fa7dfbea24e" + ], + "x-ms-correlation-request-id": [ + "e0ba4a8a-23fa-4166-8bb3-0fa7dfbea24e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:e0ba4a8a-23fa-4166-8bb3-0fa7dfbea24e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e963883-f0ed-47d9-9952-d1152c66e608" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10122" + ], + "x-ms-request-id": [ + "5a02a933-2cbb-4250-b523-4fa026dce34f" + ], + "x-ms-correlation-request-id": [ + "5a02a933-2cbb-4250-b523-4fa026dce34f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021159Z:5a02a933-2cbb-4250-b523-4fa026dce34f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b92e46d4-a905-4973-b516-e942fced9629" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10121" + ], + "x-ms-request-id": [ + "fbe4c911-da69-43cd-8735-f8725055926a" + ], + "x-ms-correlation-request-id": [ + "fbe4c911-da69-43cd-8735-f8725055926a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:fbe4c911-da69-43cd-8735-f8725055926a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:11: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de590239-a8f2-4b3b-abd4-e75b3e5004c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10120" + ], + "x-ms-request-id": [ + "eef45b62-a2eb-4df0-bcc4-996831217bc3" + ], + "x-ms-correlation-request-id": [ + "eef45b62-a2eb-4df0-bcc4-996831217bc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:eef45b62-a2eb-4df0-bcc4-996831217bc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1753d921-9158-4d10-930b-e72c61904b27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10119" + ], + "x-ms-request-id": [ + "c3f84d9f-2c18-4391-ac61-f9fddd693690" + ], + "x-ms-correlation-request-id": [ + "c3f84d9f-2c18-4391-ac61-f9fddd693690" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:c3f84d9f-2c18-4391-ac61-f9fddd693690" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f873756a-7839-4b30-9b93-e2909d01c603" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10118" + ], + "x-ms-request-id": [ + "b7825268-05eb-4835-973d-da5c3a2bd550" + ], + "x-ms-correlation-request-id": [ + "b7825268-05eb-4835-973d-da5c3a2bd550" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:b7825268-05eb-4835-973d-da5c3a2bd550" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1396ae9-b3c4-49ad-8c8e-f5bd80ebd769" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10117" + ], + "x-ms-request-id": [ + "1426519a-7984-4f1a-85d1-1ed2dcd3a8e8" + ], + "x-ms-correlation-request-id": [ + "1426519a-7984-4f1a-85d1-1ed2dcd3a8e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:1426519a-7984-4f1a-85d1-1ed2dcd3a8e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a358e8c-b83c-4086-8758-6a829afe5fce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10116" + ], + "x-ms-request-id": [ + "393c9019-db9b-448e-a016-44e673fc2d88" + ], + "x-ms-correlation-request-id": [ + "393c9019-db9b-448e-a016-44e673fc2d88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021200Z:393c9019-db9b-448e-a016-44e673fc2d88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd5111f4-5e50-423f-b491-3ab844561632" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10115" + ], + "x-ms-request-id": [ + "0ab71998-af21-421d-9379-424f765af2de" + ], + "x-ms-correlation-request-id": [ + "0ab71998-af21-421d-9379-424f765af2de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021201Z:0ab71998-af21-421d-9379-424f765af2de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "334bc376-cbba-4344-bb50-822f0c9dcfe1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10114" + ], + "x-ms-request-id": [ + "8d8bb31f-2800-4685-90c9-877362bd7949" + ], + "x-ms-correlation-request-id": [ + "8d8bb31f-2800-4685-90c9-877362bd7949" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021201Z:8d8bb31f-2800-4685-90c9-877362bd7949" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a7991d9-4d0a-461a-94f8-76e53aa196cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10113" + ], + "x-ms-request-id": [ + "2b11aeab-7508-463c-b13b-160c7bc07343" + ], + "x-ms-correlation-request-id": [ + "2b11aeab-7508-463c-b13b-160c7bc07343" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021201Z:2b11aeab-7508-463c-b13b-160c7bc07343" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba991cfa-1bcd-45e6-95c4-7b323b82fa9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10112" + ], + "x-ms-request-id": [ + "c48b4f88-2f8a-4ed0-b643-82355726c048" + ], + "x-ms-correlation-request-id": [ + "c48b4f88-2f8a-4ed0-b643-82355726c048" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021201Z:c48b4f88-2f8a-4ed0-b643-82355726c048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e74376ab-f4d1-44f8-8205-0d7d7ae2cad6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10111" + ], + "x-ms-request-id": [ + "0b903208-1ba4-4289-b10e-9dada1000842" + ], + "x-ms-correlation-request-id": [ + "0b903208-1ba4-4289-b10e-9dada1000842" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021201Z:0b903208-1ba4-4289-b10e-9dada1000842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d4f4250-a86e-44eb-94bf-a5f910c9ba4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10110" + ], + "x-ms-request-id": [ + "2441027e-d72e-4262-97f9-e851a448c95d" + ], + "x-ms-correlation-request-id": [ + "2441027e-d72e-4262-97f9-e851a448c95d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:2441027e-d72e-4262-97f9-e851a448c95d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83926a13-6e81-4b27-a244-057039149411" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10109" + ], + "x-ms-request-id": [ + "2847584d-2674-4f07-a8fe-14e6d60bda02" + ], + "x-ms-correlation-request-id": [ + "2847584d-2674-4f07-a8fe-14e6d60bda02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:2847584d-2674-4f07-a8fe-14e6d60bda02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f98431e-8b41-4246-971a-00bfb5724d22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10108" + ], + "x-ms-request-id": [ + "8060a34c-9747-4430-9edf-962559cdb90f" + ], + "x-ms-correlation-request-id": [ + "8060a34c-9747-4430-9edf-962559cdb90f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:8060a34c-9747-4430-9edf-962559cdb90f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1faaa60e-76c0-4e7b-b0f3-cf1cb5ee91ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10107" + ], + "x-ms-request-id": [ + "55c060fd-86e6-4ee1-a8bf-0266d10aef15" + ], + "x-ms-correlation-request-id": [ + "55c060fd-86e6-4ee1-a8bf-0266d10aef15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:55c060fd-86e6-4ee1-a8bf-0266d10aef15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa1410ce-9e9f-4eb4-9037-28b2ebb89cab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10106" + ], + "x-ms-request-id": [ + "af9eb2c5-bc78-498f-bcb1-c72d59de8811" + ], + "x-ms-correlation-request-id": [ + "af9eb2c5-bc78-498f-bcb1-c72d59de8811" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:af9eb2c5-bc78-498f-bcb1-c72d59de8811" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d1658c8-c82d-4dcd-a290-f268dc3bb89e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10105" + ], + "x-ms-request-id": [ + "9c8b4646-4c24-4778-93a6-d9ddc21cd5b9" + ], + "x-ms-correlation-request-id": [ + "9c8b4646-4c24-4778-93a6-d9ddc21cd5b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021202Z:9c8b4646-4c24-4778-93a6-d9ddc21cd5b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b18deae-a692-4803-884f-f623d78044ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10104" + ], + "x-ms-request-id": [ + "d4ceed82-366c-4daf-8acd-31e3563db915" + ], + "x-ms-correlation-request-id": [ + "d4ceed82-366c-4daf-8acd-31e3563db915" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:d4ceed82-366c-4daf-8acd-31e3563db915" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d7c38da-ffe6-4d53-9101-bbf436c86c9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10103" + ], + "x-ms-request-id": [ + "3d5fa8fb-c24e-44fc-a4e1-5b940a02ae26" + ], + "x-ms-correlation-request-id": [ + "3d5fa8fb-c24e-44fc-a4e1-5b940a02ae26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:3d5fa8fb-c24e-44fc-a4e1-5b940a02ae26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b0e6be9-1c03-492b-b8e9-6b67a43a03f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10102" + ], + "x-ms-request-id": [ + "c6b74d7e-3466-440e-81df-65e3cf9b86ff" + ], + "x-ms-correlation-request-id": [ + "c6b74d7e-3466-440e-81df-65e3cf9b86ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:c6b74d7e-3466-440e-81df-65e3cf9b86ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57aae91f-ba6e-4019-8b52-647bfc4cf8b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10101" + ], + "x-ms-request-id": [ + "32f3e919-642a-4365-8159-743f6e29ff5b" + ], + "x-ms-correlation-request-id": [ + "32f3e919-642a-4365-8159-743f6e29ff5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:32f3e919-642a-4365-8159-743f6e29ff5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f394175-61dd-450f-9b9d-144cddf4ac7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10100" + ], + "x-ms-request-id": [ + "3ac43ec5-c447-45df-a1d3-8094ace72f3e" + ], + "x-ms-correlation-request-id": [ + "3ac43ec5-c447-45df-a1d3-8094ace72f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:3ac43ec5-c447-45df-a1d3-8094ace72f3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd348fd-ae7e-4bf4-97e4-d27c30545d9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10099" + ], + "x-ms-request-id": [ + "e87a640c-dad6-490b-a47c-f40760c368cb" + ], + "x-ms-correlation-request-id": [ + "e87a640c-dad6-490b-a47c-f40760c368cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021203Z:e87a640c-dad6-490b-a47c-f40760c368cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a283870b-c060-4c7b-b2a0-c2d11919f31a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10098" + ], + "x-ms-request-id": [ + "5b04f55a-4086-498d-b10a-cef8ba7a8e2a" + ], + "x-ms-correlation-request-id": [ + "5b04f55a-4086-498d-b10a-cef8ba7a8e2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:5b04f55a-4086-498d-b10a-cef8ba7a8e2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1bac0840-f127-46f8-870a-c2fa36433c75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10097" + ], + "x-ms-request-id": [ + "8fa59f12-57d9-48c9-92b5-5dc6b45eb3e6" + ], + "x-ms-correlation-request-id": [ + "8fa59f12-57d9-48c9-92b5-5dc6b45eb3e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:8fa59f12-57d9-48c9-92b5-5dc6b45eb3e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7975b49c-7f34-47ff-8acc-ff1fb50aed1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10096" + ], + "x-ms-request-id": [ + "5280c127-ee2e-4cc7-a76d-abf7559ad1f1" + ], + "x-ms-correlation-request-id": [ + "5280c127-ee2e-4cc7-a76d-abf7559ad1f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:5280c127-ee2e-4cc7-a76d-abf7559ad1f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f08759f2-1030-4d89-bef2-f70650baf06e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10095" + ], + "x-ms-request-id": [ + "021b22e4-9023-4c52-aa9a-0c310b5b91df" + ], + "x-ms-correlation-request-id": [ + "021b22e4-9023-4c52-aa9a-0c310b5b91df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:021b22e4-9023-4c52-aa9a-0c310b5b91df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e430a5fc-3a76-44cb-bdb3-ea03c86e7c63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10094" + ], + "x-ms-request-id": [ + "77df0549-95e7-4647-9c45-53e86d8973f7" + ], + "x-ms-correlation-request-id": [ + "77df0549-95e7-4647-9c45-53e86d8973f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:77df0549-95e7-4647-9c45-53e86d8973f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c4d8f4a-c856-4fd0-8e54-95fa8a0d571e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10093" + ], + "x-ms-request-id": [ + "bd4d6cf5-e1d2-4d93-a3b8-942ce8b7c5bd" + ], + "x-ms-correlation-request-id": [ + "bd4d6cf5-e1d2-4d93-a3b8-942ce8b7c5bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021204Z:bd4d6cf5-e1d2-4d93-a3b8-942ce8b7c5bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "729bcdea-318c-4883-8f77-ec3513c07661" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10092" + ], + "x-ms-request-id": [ + "51afb1b3-77a5-4152-a3f8-e144a76ba9ae" + ], + "x-ms-correlation-request-id": [ + "51afb1b3-77a5-4152-a3f8-e144a76ba9ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:51afb1b3-77a5-4152-a3f8-e144a76ba9ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01423e0e-a2a0-4c4d-ab1f-ad45cd76a3ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10091" + ], + "x-ms-request-id": [ + "9d50ea5f-ebf3-4580-95fc-cb33473ca2ba" + ], + "x-ms-correlation-request-id": [ + "9d50ea5f-ebf3-4580-95fc-cb33473ca2ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:9d50ea5f-ebf3-4580-95fc-cb33473ca2ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "672b21a8-67d7-434f-a39e-1bae4417e133" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10090" + ], + "x-ms-request-id": [ + "ac7ab553-7625-4764-96f9-4e87b9ad0d4d" + ], + "x-ms-correlation-request-id": [ + "ac7ab553-7625-4764-96f9-4e87b9ad0d4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:ac7ab553-7625-4764-96f9-4e87b9ad0d4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36e30e51-e8fb-4b2b-aa1c-5758b7a8bd18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10089" + ], + "x-ms-request-id": [ + "4b19c81e-6f7e-4af0-819a-deb3dc9fd669" + ], + "x-ms-correlation-request-id": [ + "4b19c81e-6f7e-4af0-819a-deb3dc9fd669" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:4b19c81e-6f7e-4af0-819a-deb3dc9fd669" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb93440c-b36c-41a4-93e5-d9e4ae32a2df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10088" + ], + "x-ms-request-id": [ + "318e08fa-f5a6-43a1-9d8a-788cf2110f21" + ], + "x-ms-correlation-request-id": [ + "318e08fa-f5a6-43a1-9d8a-788cf2110f21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:318e08fa-f5a6-43a1-9d8a-788cf2110f21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "651224d6-605b-4417-b55b-915e6db363ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10087" + ], + "x-ms-request-id": [ + "c9ee3d55-ca82-4b08-9b4d-fba308bdfb6a" + ], + "x-ms-correlation-request-id": [ + "c9ee3d55-ca82-4b08-9b4d-fba308bdfb6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021205Z:c9ee3d55-ca82-4b08-9b4d-fba308bdfb6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11d404cc-f3c1-41a0-a4a0-3bf90fba09bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10086" + ], + "x-ms-request-id": [ + "e145c843-538a-4319-8d46-f7b1c6c6ec7f" + ], + "x-ms-correlation-request-id": [ + "e145c843-538a-4319-8d46-f7b1c6c6ec7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:e145c843-538a-4319-8d46-f7b1c6c6ec7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2bec7084-0643-46b3-9451-35d2b081aa70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10085" + ], + "x-ms-request-id": [ + "2532d3b0-e573-44c3-aac8-14a4375c3d1a" + ], + "x-ms-correlation-request-id": [ + "2532d3b0-e573-44c3-aac8-14a4375c3d1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:2532d3b0-e573-44c3-aac8-14a4375c3d1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5867ef4d-3dff-4526-a758-6b21bfaac1f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10084" + ], + "x-ms-request-id": [ + "550c567e-19aa-4d61-9b63-4c8e26065e43" + ], + "x-ms-correlation-request-id": [ + "550c567e-19aa-4d61-9b63-4c8e26065e43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:550c567e-19aa-4d61-9b63-4c8e26065e43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a34e26b1-d7e7-43c5-be01-4f02eda59130" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10083" + ], + "x-ms-request-id": [ + "8ef686db-69f4-4e72-b689-8d22b1de561f" + ], + "x-ms-correlation-request-id": [ + "8ef686db-69f4-4e72-b689-8d22b1de561f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:8ef686db-69f4-4e72-b689-8d22b1de561f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "342a81e8-4426-4277-84f0-59359ced09ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10082" + ], + "x-ms-request-id": [ + "3c5e7384-831b-48c4-93f5-1e38a34af385" + ], + "x-ms-correlation-request-id": [ + "3c5e7384-831b-48c4-93f5-1e38a34af385" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:3c5e7384-831b-48c4-93f5-1e38a34af385" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "587e4556-4f49-46d4-a930-da872cbe7605" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10081" + ], + "x-ms-request-id": [ + "028c4ac0-e6b0-4a96-8f64-790698dc1bec" + ], + "x-ms-correlation-request-id": [ + "028c4ac0-e6b0-4a96-8f64-790698dc1bec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021206Z:028c4ac0-e6b0-4a96-8f64-790698dc1bec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db59c10d-f270-4700-a606-57bdbcfc8d3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10080" + ], + "x-ms-request-id": [ + "a2682969-8cdd-435a-afa6-ac8b7f340a09" + ], + "x-ms-correlation-request-id": [ + "a2682969-8cdd-435a-afa6-ac8b7f340a09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:a2682969-8cdd-435a-afa6-ac8b7f340a09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8db6ee9-6c70-46fc-bb67-4431b8b2ff17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10079" + ], + "x-ms-request-id": [ + "3511ada3-6f60-4594-9cca-e8bd4b9b8f30" + ], + "x-ms-correlation-request-id": [ + "3511ada3-6f60-4594-9cca-e8bd4b9b8f30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:3511ada3-6f60-4594-9cca-e8bd4b9b8f30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b999503-57f0-4c9d-80de-923bb6215fd1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10078" + ], + "x-ms-request-id": [ + "18a1bfb5-4e9b-462d-9b03-dc2ce4a22fbb" + ], + "x-ms-correlation-request-id": [ + "18a1bfb5-4e9b-462d-9b03-dc2ce4a22fbb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:18a1bfb5-4e9b-462d-9b03-dc2ce4a22fbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8be61880-52c4-4690-a96f-01a0577b7eb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10077" + ], + "x-ms-request-id": [ + "72d3bf08-47aa-4094-9fa7-115f15cea55b" + ], + "x-ms-correlation-request-id": [ + "72d3bf08-47aa-4094-9fa7-115f15cea55b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:72d3bf08-47aa-4094-9fa7-115f15cea55b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c255f65f-7980-4245-83fa-6608423f86eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10076" + ], + "x-ms-request-id": [ + "2bbe50e1-5437-44ef-97d1-62e3bd876d87" + ], + "x-ms-correlation-request-id": [ + "2bbe50e1-5437-44ef-97d1-62e3bd876d87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:2bbe50e1-5437-44ef-97d1-62e3bd876d87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "508c7172-9450-484e-b660-7be36a9d957a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10075" + ], + "x-ms-request-id": [ + "be3f7529-9402-4cab-845b-907a42aa320d" + ], + "x-ms-correlation-request-id": [ + "be3f7529-9402-4cab-845b-907a42aa320d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021207Z:be3f7529-9402-4cab-845b-907a42aa320d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d240e7c6-32ac-4e1a-ace4-5a565994c3ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10074" + ], + "x-ms-request-id": [ + "258edaed-d3b0-411b-9adb-e282d67f9d08" + ], + "x-ms-correlation-request-id": [ + "258edaed-d3b0-411b-9adb-e282d67f9d08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:258edaed-d3b0-411b-9adb-e282d67f9d08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b70388bd-1d33-4478-863b-0efb464060a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10073" + ], + "x-ms-request-id": [ + "51f20023-a288-4bdd-abf4-23598f92d835" + ], + "x-ms-correlation-request-id": [ + "51f20023-a288-4bdd-abf4-23598f92d835" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:51f20023-a288-4bdd-abf4-23598f92d835" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7e6aaab-5adc-452e-a731-7d756f1e2ee2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10072" + ], + "x-ms-request-id": [ + "4a5683fb-113c-498b-9779-219da7c4f391" + ], + "x-ms-correlation-request-id": [ + "4a5683fb-113c-498b-9779-219da7c4f391" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:4a5683fb-113c-498b-9779-219da7c4f391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a3ef659-caa1-4cce-9555-22f45be06312" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10071" + ], + "x-ms-request-id": [ + "6652456e-8ec1-479f-a6d4-69c6fb6de883" + ], + "x-ms-correlation-request-id": [ + "6652456e-8ec1-479f-a6d4-69c6fb6de883" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:6652456e-8ec1-479f-a6d4-69c6fb6de883" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00b7d8c2-a4a4-4557-bd30-59bf86dad5b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10070" + ], + "x-ms-request-id": [ + "1c1652b6-4855-4900-8b3b-dbf34ceaacf1" + ], + "x-ms-correlation-request-id": [ + "1c1652b6-4855-4900-8b3b-dbf34ceaacf1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:1c1652b6-4855-4900-8b3b-dbf34ceaacf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e7b2d70-9192-443d-b60b-5423d5d60321" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10069" + ], + "x-ms-request-id": [ + "4bd42689-09ee-4bee-9ed1-ccaebcf791ed" + ], + "x-ms-correlation-request-id": [ + "4bd42689-09ee-4bee-9ed1-ccaebcf791ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021208Z:4bd42689-09ee-4bee-9ed1-ccaebcf791ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "473b6c50-933a-4ba9-9fe4-714e7014d762" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10068" + ], + "x-ms-request-id": [ + "6616c72d-d193-453e-b952-c6c05e7b503e" + ], + "x-ms-correlation-request-id": [ + "6616c72d-d193-453e-b952-c6c05e7b503e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:6616c72d-d193-453e-b952-c6c05e7b503e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afb67435-a733-4c07-b3de-a8b871ca9b24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10067" + ], + "x-ms-request-id": [ + "68e1fa9c-3a42-4034-aa42-280f5d4d5989" + ], + "x-ms-correlation-request-id": [ + "68e1fa9c-3a42-4034-aa42-280f5d4d5989" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:68e1fa9c-3a42-4034-aa42-280f5d4d5989" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "348b6359-a97f-4fc5-908e-379704943b48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10066" + ], + "x-ms-request-id": [ + "e9be26f4-fe8a-4979-a1b7-57bd430288ca" + ], + "x-ms-correlation-request-id": [ + "e9be26f4-fe8a-4979-a1b7-57bd430288ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:e9be26f4-fe8a-4979-a1b7-57bd430288ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fb36e64-10ef-4a4a-92fe-fa2b69052886" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10065" + ], + "x-ms-request-id": [ + "ac916b11-9429-489d-94b2-cbef986e7891" + ], + "x-ms-correlation-request-id": [ + "ac916b11-9429-489d-94b2-cbef986e7891" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:ac916b11-9429-489d-94b2-cbef986e7891" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f4f605-37b8-499f-9ca8-4694f53f7227" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10064" + ], + "x-ms-request-id": [ + "0878a1d0-ac0d-40a9-a558-d972c2dfa90a" + ], + "x-ms-correlation-request-id": [ + "0878a1d0-ac0d-40a9-a558-d972c2dfa90a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:0878a1d0-ac0d-40a9-a558-d972c2dfa90a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5449717b-180e-4278-8c72-fdc2a61c6aec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10063" + ], + "x-ms-request-id": [ + "e30223f1-a36f-4cdd-b407-8a266225b888" + ], + "x-ms-correlation-request-id": [ + "e30223f1-a36f-4cdd-b407-8a266225b888" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021209Z:e30223f1-a36f-4cdd-b407-8a266225b888" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79b84595-2810-4be1-861b-f6b033644192" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10062" + ], + "x-ms-request-id": [ + "666336a3-9781-4a58-9be3-e71510eb771a" + ], + "x-ms-correlation-request-id": [ + "666336a3-9781-4a58-9be3-e71510eb771a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:666336a3-9781-4a58-9be3-e71510eb771a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ed844a3-a259-4edc-8e09-746444ea0f30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10061" + ], + "x-ms-request-id": [ + "a0656b50-2f36-41a7-ae99-872277c9de3d" + ], + "x-ms-correlation-request-id": [ + "a0656b50-2f36-41a7-ae99-872277c9de3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:a0656b50-2f36-41a7-ae99-872277c9de3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d365c4ce-0c1f-447b-8325-06b1c9d6ee6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10060" + ], + "x-ms-request-id": [ + "d6b86feb-60d7-498e-8a83-bb24856050ab" + ], + "x-ms-correlation-request-id": [ + "d6b86feb-60d7-498e-8a83-bb24856050ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:d6b86feb-60d7-498e-8a83-bb24856050ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53b52fd7-9a19-4f0e-890c-7619b756efb6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10059" + ], + "x-ms-request-id": [ + "370a4cfe-eec5-4398-9aef-d9dbb32b6cb0" + ], + "x-ms-correlation-request-id": [ + "370a4cfe-eec5-4398-9aef-d9dbb32b6cb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:370a4cfe-eec5-4398-9aef-d9dbb32b6cb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fff9e9a-b510-4c04-b8cb-f822c2b86425" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10058" + ], + "x-ms-request-id": [ + "97c61445-38f6-4cee-99ce-dec62f17ff78" + ], + "x-ms-correlation-request-id": [ + "97c61445-38f6-4cee-99ce-dec62f17ff78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:97c61445-38f6-4cee-99ce-dec62f17ff78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "426dc860-9b5f-4e84-ad04-d9958dd62af5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10057" + ], + "x-ms-request-id": [ + "bea4ce8e-ddcd-46af-9bc7-ef13a123f2b0" + ], + "x-ms-correlation-request-id": [ + "bea4ce8e-ddcd-46af-9bc7-ef13a123f2b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021210Z:bea4ce8e-ddcd-46af-9bc7-ef13a123f2b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7ce89f7-1a16-43ac-b8c8-638f3ff1c50f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10056" + ], + "x-ms-request-id": [ + "a5ee1a1d-64f7-4c6d-ba83-23f68791903c" + ], + "x-ms-correlation-request-id": [ + "a5ee1a1d-64f7-4c6d-ba83-23f68791903c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:a5ee1a1d-64f7-4c6d-ba83-23f68791903c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2279ee8b-4adb-4c58-88ae-bcd3f28e2d3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10055" + ], + "x-ms-request-id": [ + "1eba8ebc-fa19-4c93-98eb-2c6c0b060000" + ], + "x-ms-correlation-request-id": [ + "1eba8ebc-fa19-4c93-98eb-2c6c0b060000" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:1eba8ebc-fa19-4c93-98eb-2c6c0b060000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f63bf15b-fe12-44b5-8d12-7f75e74230b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10054" + ], + "x-ms-request-id": [ + "cd3bafe9-9dd0-4ebb-b5af-aa7d30e48ac0" + ], + "x-ms-correlation-request-id": [ + "cd3bafe9-9dd0-4ebb-b5af-aa7d30e48ac0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:cd3bafe9-9dd0-4ebb-b5af-aa7d30e48ac0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c69dab27-414e-4a70-a0af-1af6c194a7de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10053" + ], + "x-ms-request-id": [ + "e06ba381-3f2d-4e1d-88c4-2f5efb718479" + ], + "x-ms-correlation-request-id": [ + "e06ba381-3f2d-4e1d-88c4-2f5efb718479" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:e06ba381-3f2d-4e1d-88c4-2f5efb718479" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6238d428-d5e3-4f1f-8d03-a6a7f0fc459e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10052" + ], + "x-ms-request-id": [ + "24888dd9-5f47-47c1-bbb3-9429a59e912a" + ], + "x-ms-correlation-request-id": [ + "24888dd9-5f47-47c1-bbb3-9429a59e912a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:24888dd9-5f47-47c1-bbb3-9429a59e912a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63b8619f-1701-45ae-afdf-dab0d2b41025" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10051" + ], + "x-ms-request-id": [ + "bca73b6e-3029-408a-b64b-96236babdc5c" + ], + "x-ms-correlation-request-id": [ + "bca73b6e-3029-408a-b64b-96236babdc5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021211Z:bca73b6e-3029-408a-b64b-96236babdc5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8ad284d-04bc-4b00-8524-46ac335bb22a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10050" + ], + "x-ms-request-id": [ + "0ad7eeed-27a7-4576-b2d0-3b1b340d4ebe" + ], + "x-ms-correlation-request-id": [ + "0ad7eeed-27a7-4576-b2d0-3b1b340d4ebe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:0ad7eeed-27a7-4576-b2d0-3b1b340d4ebe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0e32e43-317a-4f0e-bf95-31df606d2ca5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10049" + ], + "x-ms-request-id": [ + "b8ec2de4-e3ac-4289-85d3-504bbf7bc844" + ], + "x-ms-correlation-request-id": [ + "b8ec2de4-e3ac-4289-85d3-504bbf7bc844" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:b8ec2de4-e3ac-4289-85d3-504bbf7bc844" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2ee65ae-812c-4402-b29a-e9414d98b315" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10048" + ], + "x-ms-request-id": [ + "e8a03e39-36d0-4844-9bb2-18b5a0326441" + ], + "x-ms-correlation-request-id": [ + "e8a03e39-36d0-4844-9bb2-18b5a0326441" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:e8a03e39-36d0-4844-9bb2-18b5a0326441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5428df0-457d-497b-a0cc-c4d81415fc95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10047" + ], + "x-ms-request-id": [ + "e75d8614-a0b0-40c1-bde4-b773624e1e5a" + ], + "x-ms-correlation-request-id": [ + "e75d8614-a0b0-40c1-bde4-b773624e1e5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:e75d8614-a0b0-40c1-bde4-b773624e1e5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39f7e1c0-e425-41da-b751-b191e07fbdc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10046" + ], + "x-ms-request-id": [ + "e95c5b4e-0889-4cb0-ac39-d1f18c641792" + ], + "x-ms-correlation-request-id": [ + "e95c5b4e-0889-4cb0-ac39-d1f18c641792" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:e95c5b4e-0889-4cb0-ac39-d1f18c641792" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b36e20ea-5587-4348-b7eb-c2bd2be5385a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10045" + ], + "x-ms-request-id": [ + "8694c982-a6d4-424b-92cf-79b8ca8b6e19" + ], + "x-ms-correlation-request-id": [ + "8694c982-a6d4-424b-92cf-79b8ca8b6e19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021212Z:8694c982-a6d4-424b-92cf-79b8ca8b6e19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1804904c-d65f-4fa4-bcdf-2d21978afcea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10044" + ], + "x-ms-request-id": [ + "10d34d40-e007-42a2-9cf5-00718f6a4008" + ], + "x-ms-correlation-request-id": [ + "10d34d40-e007-42a2-9cf5-00718f6a4008" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:10d34d40-e007-42a2-9cf5-00718f6a4008" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87096e10-7074-4225-ad10-c9d4b3001fca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10043" + ], + "x-ms-request-id": [ + "9335b787-3b7e-4f57-988d-2ea852cf0233" + ], + "x-ms-correlation-request-id": [ + "9335b787-3b7e-4f57-988d-2ea852cf0233" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:9335b787-3b7e-4f57-988d-2ea852cf0233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c95149a8-a4dc-421c-92f5-fa7fc3501fc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10042" + ], + "x-ms-request-id": [ + "a5254c7f-313f-4996-a6d8-7d6f539e7f41" + ], + "x-ms-correlation-request-id": [ + "a5254c7f-313f-4996-a6d8-7d6f539e7f41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:a5254c7f-313f-4996-a6d8-7d6f539e7f41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b1592b3-5bc4-4e23-99b2-505c791a31d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10041" + ], + "x-ms-request-id": [ + "9189b981-f27f-44df-935b-5bd641d0f463" + ], + "x-ms-correlation-request-id": [ + "9189b981-f27f-44df-935b-5bd641d0f463" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:9189b981-f27f-44df-935b-5bd641d0f463" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "407b88bb-1d57-43dd-a633-f25d51d89e72" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10040" + ], + "x-ms-request-id": [ + "a1cf9ac5-9466-4b5b-880a-fd5d4e26a408" + ], + "x-ms-correlation-request-id": [ + "a1cf9ac5-9466-4b5b-880a-fd5d4e26a408" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:a1cf9ac5-9466-4b5b-880a-fd5d4e26a408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2eb40b21-6bed-4cda-bcbd-f806d861b497" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10039" + ], + "x-ms-request-id": [ + "9516c2aa-08b7-44a8-9000-b7082adaa328" + ], + "x-ms-correlation-request-id": [ + "9516c2aa-08b7-44a8-9000-b7082adaa328" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021213Z:9516c2aa-08b7-44a8-9000-b7082adaa328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7f2a6b1-014b-445a-9aa5-066688777885" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10038" + ], + "x-ms-request-id": [ + "1043615b-7817-4e68-b825-8c2db2f25f64" + ], + "x-ms-correlation-request-id": [ + "1043615b-7817-4e68-b825-8c2db2f25f64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:1043615b-7817-4e68-b825-8c2db2f25f64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07df192b-25df-4f8c-981a-cf2d02b1051a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10037" + ], + "x-ms-request-id": [ + "5ffdf980-e6bb-4033-b127-7eccf66d7e7a" + ], + "x-ms-correlation-request-id": [ + "5ffdf980-e6bb-4033-b127-7eccf66d7e7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:5ffdf980-e6bb-4033-b127-7eccf66d7e7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42e5b28d-0e35-4792-a99d-6e99b9a81101" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10036" + ], + "x-ms-request-id": [ + "fe93bf11-d3e0-480c-8208-1c5dcc02b7d3" + ], + "x-ms-correlation-request-id": [ + "fe93bf11-d3e0-480c-8208-1c5dcc02b7d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:fe93bf11-d3e0-480c-8208-1c5dcc02b7d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46ee0c42-8367-4c85-b428-310c58dac167" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10035" + ], + "x-ms-request-id": [ + "d9e5fd60-6386-4510-ab75-604619d31410" + ], + "x-ms-correlation-request-id": [ + "d9e5fd60-6386-4510-ab75-604619d31410" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:d9e5fd60-6386-4510-ab75-604619d31410" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd53de71-69cc-483d-ade2-3b4056f19099" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10034" + ], + "x-ms-request-id": [ + "9b493f91-64ea-4cb6-8f35-c166d377ef90" + ], + "x-ms-correlation-request-id": [ + "9b493f91-64ea-4cb6-8f35-c166d377ef90" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:9b493f91-64ea-4cb6-8f35-c166d377ef90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28167c22-8c60-4237-a883-cfce65c27166" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10033" + ], + "x-ms-request-id": [ + "9169d866-02db-4d9d-894d-30e28886b1cc" + ], + "x-ms-correlation-request-id": [ + "9169d866-02db-4d9d-894d-30e28886b1cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021214Z:9169d866-02db-4d9d-894d-30e28886b1cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "745d45a4-4bdd-485b-841c-f00de090accd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10032" + ], + "x-ms-request-id": [ + "a924f42c-8835-4c44-be4e-d54322e70a7a" + ], + "x-ms-correlation-request-id": [ + "a924f42c-8835-4c44-be4e-d54322e70a7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021215Z:a924f42c-8835-4c44-be4e-d54322e70a7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed6bb260-a295-4e68-a180-2691aeb0c06d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10031" + ], + "x-ms-request-id": [ + "e2e14d21-a36f-4468-9390-2ee8a32ea40b" + ], + "x-ms-correlation-request-id": [ + "e2e14d21-a36f-4468-9390-2ee8a32ea40b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021215Z:e2e14d21-a36f-4468-9390-2ee8a32ea40b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59cf8844-3c3f-4c4a-81bc-a0dbcde60095" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10030" + ], + "x-ms-request-id": [ + "6bcddd45-ca45-4347-a408-6974e0eb6765" + ], + "x-ms-correlation-request-id": [ + "6bcddd45-ca45-4347-a408-6974e0eb6765" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021215Z:6bcddd45-ca45-4347-a408-6974e0eb6765" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1fad36e-7c04-4c3f-b6b2-16cc2ff02b4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10029" + ], + "x-ms-request-id": [ + "be381818-9125-4013-aeda-d283a55eb4fe" + ], + "x-ms-correlation-request-id": [ + "be381818-9125-4013-aeda-d283a55eb4fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021215Z:be381818-9125-4013-aeda-d283a55eb4fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "047ff9a2-538c-4a18-be1d-79257b8acaa6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10028" + ], + "x-ms-request-id": [ + "75f39cb4-2a0f-416c-a2bb-aaabc3ff563d" + ], + "x-ms-correlation-request-id": [ + "75f39cb4-2a0f-416c-a2bb-aaabc3ff563d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021215Z:75f39cb4-2a0f-416c-a2bb-aaabc3ff563d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00b6ec9f-96c2-4f4b-bc5a-8a64c49a6c24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10027" + ], + "x-ms-request-id": [ + "e58c14a8-048d-4b04-8e2d-59dd7c652f06" + ], + "x-ms-correlation-request-id": [ + "e58c14a8-048d-4b04-8e2d-59dd7c652f06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:e58c14a8-048d-4b04-8e2d-59dd7c652f06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103e2918-af51-463d-9d3f-bc3b427767bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10026" + ], + "x-ms-request-id": [ + "68466699-eb0d-445b-af17-46c9f3fee5ac" + ], + "x-ms-correlation-request-id": [ + "68466699-eb0d-445b-af17-46c9f3fee5ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:68466699-eb0d-445b-af17-46c9f3fee5ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecfdcddc-18ac-4a89-8107-d008408cccca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10025" + ], + "x-ms-request-id": [ + "8203ff6a-bcaa-4607-8a22-9cdb293f5c39" + ], + "x-ms-correlation-request-id": [ + "8203ff6a-bcaa-4607-8a22-9cdb293f5c39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:8203ff6a-bcaa-4607-8a22-9cdb293f5c39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae6d290e-d4b2-477d-a17d-46e951b9aa85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10024" + ], + "x-ms-request-id": [ + "fe0b518d-983f-43be-af78-db0422bdf7c1" + ], + "x-ms-correlation-request-id": [ + "fe0b518d-983f-43be-af78-db0422bdf7c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:fe0b518d-983f-43be-af78-db0422bdf7c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfaa3b28-366d-4a8a-86a8-5a33961be447" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10023" + ], + "x-ms-request-id": [ + "ead7358d-4170-489c-9baf-e775c744a58c" + ], + "x-ms-correlation-request-id": [ + "ead7358d-4170-489c-9baf-e775c744a58c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:ead7358d-4170-489c-9baf-e775c744a58c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1569da68-ffdc-44b3-8a58-6210479aa62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10022" + ], + "x-ms-request-id": [ + "82913b8c-461c-4728-afa5-3f832a7896f5" + ], + "x-ms-correlation-request-id": [ + "82913b8c-461c-4728-afa5-3f832a7896f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021216Z:82913b8c-461c-4728-afa5-3f832a7896f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bdcf2c70-32ac-4352-b76e-2db2d70e16c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10021" + ], + "x-ms-request-id": [ + "06d89e29-fd6c-4ff4-83b1-94888d3f966c" + ], + "x-ms-correlation-request-id": [ + "06d89e29-fd6c-4ff4-83b1-94888d3f966c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:06d89e29-fd6c-4ff4-83b1-94888d3f966c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "debb3310-f088-48a3-aff1-1904d4af3340" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10020" + ], + "x-ms-request-id": [ + "b7fdd1ca-11a5-4fda-af7f-678e0d70d9e1" + ], + "x-ms-correlation-request-id": [ + "b7fdd1ca-11a5-4fda-af7f-678e0d70d9e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:b7fdd1ca-11a5-4fda-af7f-678e0d70d9e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b97793e1-9a09-43d3-a652-36fd88fdfa8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10019" + ], + "x-ms-request-id": [ + "983dbf05-48dc-4a47-a6dd-5d4f2f4d16d5" + ], + "x-ms-correlation-request-id": [ + "983dbf05-48dc-4a47-a6dd-5d4f2f4d16d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:983dbf05-48dc-4a47-a6dd-5d4f2f4d16d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76f2e19e-bf4d-4e41-8bf7-0cada2cb8c07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10018" + ], + "x-ms-request-id": [ + "5bdc6c98-f438-4b2a-ad14-e0d830e6365b" + ], + "x-ms-correlation-request-id": [ + "5bdc6c98-f438-4b2a-ad14-e0d830e6365b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:5bdc6c98-f438-4b2a-ad14-e0d830e6365b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9f259ac-2b63-4617-a12b-d6381540fb32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10017" + ], + "x-ms-request-id": [ + "3418c918-7d9b-47d8-87db-85d7ad1d026b" + ], + "x-ms-correlation-request-id": [ + "3418c918-7d9b-47d8-87db-85d7ad1d026b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:3418c918-7d9b-47d8-87db-85d7ad1d026b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98f06358-0f10-4d79-9813-1937878551c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10016" + ], + "x-ms-request-id": [ + "8a21aaf7-db61-44e3-b2b9-4a2f6b7b8818" + ], + "x-ms-correlation-request-id": [ + "8a21aaf7-db61-44e3-b2b9-4a2f6b7b8818" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021217Z:8a21aaf7-db61-44e3-b2b9-4a2f6b7b8818" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61cee084-d228-4b4f-9f83-25360ca0e789" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10015" + ], + "x-ms-request-id": [ + "9b7c4dbd-4902-4a31-acbc-e749385c0caf" + ], + "x-ms-correlation-request-id": [ + "9b7c4dbd-4902-4a31-acbc-e749385c0caf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:9b7c4dbd-4902-4a31-acbc-e749385c0caf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c623500-75c2-46b6-b507-6537bc6b8de0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10014" + ], + "x-ms-request-id": [ + "4d1cf666-e7a9-4f6a-a662-85ab26ad1af2" + ], + "x-ms-correlation-request-id": [ + "4d1cf666-e7a9-4f6a-a662-85ab26ad1af2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:4d1cf666-e7a9-4f6a-a662-85ab26ad1af2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d61b0b9-fae8-49a8-9551-332568ae82d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10013" + ], + "x-ms-request-id": [ + "8ce2458d-f547-4a00-afcf-e67dd4efbbe5" + ], + "x-ms-correlation-request-id": [ + "8ce2458d-f547-4a00-afcf-e67dd4efbbe5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:8ce2458d-f547-4a00-afcf-e67dd4efbbe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adab44f4-df68-412b-9c4c-26707d021a26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10012" + ], + "x-ms-request-id": [ + "ee5a8c72-6f9e-4637-bb73-c8f1d091861c" + ], + "x-ms-correlation-request-id": [ + "ee5a8c72-6f9e-4637-bb73-c8f1d091861c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:ee5a8c72-6f9e-4637-bb73-c8f1d091861c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3c08574-9a09-41d4-a16b-3c9da06f12d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10011" + ], + "x-ms-request-id": [ + "f369ac52-a0c6-4321-b3d9-4e5161529649" + ], + "x-ms-correlation-request-id": [ + "f369ac52-a0c6-4321-b3d9-4e5161529649" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:f369ac52-a0c6-4321-b3d9-4e5161529649" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52067f49-614f-4b4b-b448-f6a36fcf6a3d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10010" + ], + "x-ms-request-id": [ + "efebe0b5-69ff-4b83-acc6-2bc19dc4ae48" + ], + "x-ms-correlation-request-id": [ + "efebe0b5-69ff-4b83-acc6-2bc19dc4ae48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021218Z:efebe0b5-69ff-4b83-acc6-2bc19dc4ae48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e466ee0-a708-48e9-960f-3fdd3b9b59f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10009" + ], + "x-ms-request-id": [ + "bf3f916f-e739-498c-a112-4f07e428de10" + ], + "x-ms-correlation-request-id": [ + "bf3f916f-e739-498c-a112-4f07e428de10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:bf3f916f-e739-498c-a112-4f07e428de10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69011372-ab6e-48a8-9b39-46ae4fef9ac6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10008" + ], + "x-ms-request-id": [ + "3e90f4ee-9ffb-4f57-8468-298f7d6898cc" + ], + "x-ms-correlation-request-id": [ + "3e90f4ee-9ffb-4f57-8468-298f7d6898cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:3e90f4ee-9ffb-4f57-8468-298f7d6898cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "531108e9-018c-44c3-89ca-783dbd9fe1ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10007" + ], + "x-ms-request-id": [ + "f2b6a170-dd98-41b4-823e-6747431cccf7" + ], + "x-ms-correlation-request-id": [ + "f2b6a170-dd98-41b4-823e-6747431cccf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:f2b6a170-dd98-41b4-823e-6747431cccf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15a6a4d0-0439-4d32-9efa-21e48bb82f33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10006" + ], + "x-ms-request-id": [ + "0fc20f23-c0a2-4707-89b6-d3ffe5816368" + ], + "x-ms-correlation-request-id": [ + "0fc20f23-c0a2-4707-89b6-d3ffe5816368" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:0fc20f23-c0a2-4707-89b6-d3ffe5816368" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91773c14-c724-494f-a9e2-29d12248584a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10005" + ], + "x-ms-request-id": [ + "5b708ec2-8f72-4413-801d-aac0e11c7108" + ], + "x-ms-correlation-request-id": [ + "5b708ec2-8f72-4413-801d-aac0e11c7108" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:5b708ec2-8f72-4413-801d-aac0e11c7108" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afd7ca07-0ad5-487c-86d8-312b76fe9c32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10004" + ], + "x-ms-request-id": [ + "2ebf09c6-bcc4-445e-bd87-1ff490a90033" + ], + "x-ms-correlation-request-id": [ + "2ebf09c6-bcc4-445e-bd87-1ff490a90033" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021219Z:2ebf09c6-bcc4-445e-bd87-1ff490a90033" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff16d6b6-5064-4c2a-8273-328e621860d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10003" + ], + "x-ms-request-id": [ + "581b18ee-8208-497f-b6b7-151b3e0e1f29" + ], + "x-ms-correlation-request-id": [ + "581b18ee-8208-497f-b6b7-151b3e0e1f29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:581b18ee-8208-497f-b6b7-151b3e0e1f29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fb6ee3a-924b-429c-b89e-ee39fde4e414" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10002" + ], + "x-ms-request-id": [ + "d6b314c3-897a-4e02-b0cc-a9f8f3a9f548" + ], + "x-ms-correlation-request-id": [ + "d6b314c3-897a-4e02-b0cc-a9f8f3a9f548" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:d6b314c3-897a-4e02-b0cc-a9f8f3a9f548" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "074de4e4-9bfa-4e50-897e-b34c955ac5d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10001" + ], + "x-ms-request-id": [ + "dbcca9cd-db7b-4b2b-9c2d-e933f51bbe71" + ], + "x-ms-correlation-request-id": [ + "dbcca9cd-db7b-4b2b-9c2d-e933f51bbe71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:dbcca9cd-db7b-4b2b-9c2d-e933f51bbe71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c0a83e3-1186-409b-9f46-6de1299d19be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "10000" + ], + "x-ms-request-id": [ + "413b93e7-363e-40d7-831a-6738e9f4da1b" + ], + "x-ms-correlation-request-id": [ + "413b93e7-363e-40d7-831a-6738e9f4da1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:413b93e7-363e-40d7-831a-6738e9f4da1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae0aae2b-83be-4f2a-b731-49a7dca7b240" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9999" + ], + "x-ms-request-id": [ + "867f7e69-7b5d-4414-96d2-a17b78ae70a2" + ], + "x-ms-correlation-request-id": [ + "867f7e69-7b5d-4414-96d2-a17b78ae70a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:867f7e69-7b5d-4414-96d2-a17b78ae70a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffa7240d-34f4-4fec-b220-2213fb7f52de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9998" + ], + "x-ms-request-id": [ + "50ff71e0-0402-4780-aff3-8e0b13806115" + ], + "x-ms-correlation-request-id": [ + "50ff71e0-0402-4780-aff3-8e0b13806115" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021220Z:50ff71e0-0402-4780-aff3-8e0b13806115" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d569a341-7186-477d-8f43-02d3dd16e142" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9997" + ], + "x-ms-request-id": [ + "1762d62b-e1fb-47b0-88ef-1ca77563baf7" + ], + "x-ms-correlation-request-id": [ + "1762d62b-e1fb-47b0-88ef-1ca77563baf7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:1762d62b-e1fb-47b0-88ef-1ca77563baf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2bab4c4-2c51-4e3a-832d-3a4b4c26b86c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9996" + ], + "x-ms-request-id": [ + "ed93b659-4f2e-4478-bd63-dcf9a0610914" + ], + "x-ms-correlation-request-id": [ + "ed93b659-4f2e-4478-bd63-dcf9a0610914" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:ed93b659-4f2e-4478-bd63-dcf9a0610914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15e06bde-27f5-49de-a9e3-bbf11d0b6150" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9995" + ], + "x-ms-request-id": [ + "97776e37-1071-4bf4-9c9e-ef33f93a4f40" + ], + "x-ms-correlation-request-id": [ + "97776e37-1071-4bf4-9c9e-ef33f93a4f40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:97776e37-1071-4bf4-9c9e-ef33f93a4f40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e6eb6d0-3e1f-4f2f-9cc9-90ca4a7242c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9994" + ], + "x-ms-request-id": [ + "b4677d70-ac07-4261-be3e-886649b5eba9" + ], + "x-ms-correlation-request-id": [ + "b4677d70-ac07-4261-be3e-886649b5eba9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:b4677d70-ac07-4261-be3e-886649b5eba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b6c032f-1015-4a5e-9b97-2063c3f82121" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9993" + ], + "x-ms-request-id": [ + "7997caf1-3ff1-44c1-be66-f42e22245e44" + ], + "x-ms-correlation-request-id": [ + "7997caf1-3ff1-44c1-be66-f42e22245e44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:7997caf1-3ff1-44c1-be66-f42e22245e44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f639ca7-eac3-4ae9-aecf-31c18e63771e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9992" + ], + "x-ms-request-id": [ + "efacee5c-ad99-4435-85d5-f9791db7794c" + ], + "x-ms-correlation-request-id": [ + "efacee5c-ad99-4435-85d5-f9791db7794c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021221Z:efacee5c-ad99-4435-85d5-f9791db7794c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "931cff36-09d0-4423-b42e-36c551e062b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9991" + ], + "x-ms-request-id": [ + "ce6c341d-7ffa-428e-93f3-64e56e90e4bc" + ], + "x-ms-correlation-request-id": [ + "ce6c341d-7ffa-428e-93f3-64e56e90e4bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:ce6c341d-7ffa-428e-93f3-64e56e90e4bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8dbfeb5-4c3e-474b-a9a7-970fa86c9dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9990" + ], + "x-ms-request-id": [ + "4da550cc-9f82-4e2e-a8e3-0a70cfcacb81" + ], + "x-ms-correlation-request-id": [ + "4da550cc-9f82-4e2e-a8e3-0a70cfcacb81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:4da550cc-9f82-4e2e-a8e3-0a70cfcacb81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c9efb0a-a029-4a85-8f91-f47493e62588" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9989" + ], + "x-ms-request-id": [ + "a531242d-b4a7-48bf-b05b-a847d8a6eb12" + ], + "x-ms-correlation-request-id": [ + "a531242d-b4a7-48bf-b05b-a847d8a6eb12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:a531242d-b4a7-48bf-b05b-a847d8a6eb12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ff95db2-904c-433d-be98-af2a4c87db44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9988" + ], + "x-ms-request-id": [ + "ca17b43e-1c0d-4242-a2e8-7aeee449e089" + ], + "x-ms-correlation-request-id": [ + "ca17b43e-1c0d-4242-a2e8-7aeee449e089" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:ca17b43e-1c0d-4242-a2e8-7aeee449e089" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66d3cae2-9a13-431e-adc0-2a3f599cccc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9987" + ], + "x-ms-request-id": [ + "77eeafa2-1e82-4e94-a1ec-3d1cac74b4ae" + ], + "x-ms-correlation-request-id": [ + "77eeafa2-1e82-4e94-a1ec-3d1cac74b4ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:77eeafa2-1e82-4e94-a1ec-3d1cac74b4ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0dea5bdc-0adc-4704-8830-9b94231ea1f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9986" + ], + "x-ms-request-id": [ + "33effdd9-62d3-4364-a8d8-b813810dd73b" + ], + "x-ms-correlation-request-id": [ + "33effdd9-62d3-4364-a8d8-b813810dd73b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021222Z:33effdd9-62d3-4364-a8d8-b813810dd73b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e229c61-c06f-4c26-8410-fe15e0a8c67e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9985" + ], + "x-ms-request-id": [ + "0bb8fe28-4af2-4ba2-9a65-e6766dacc8ca" + ], + "x-ms-correlation-request-id": [ + "0bb8fe28-4af2-4ba2-9a65-e6766dacc8ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:0bb8fe28-4af2-4ba2-9a65-e6766dacc8ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "955a9898-9c53-4334-b350-f73e8bb92799" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9984" + ], + "x-ms-request-id": [ + "dba727c5-b8cb-484c-8665-2d215b287c7f" + ], + "x-ms-correlation-request-id": [ + "dba727c5-b8cb-484c-8665-2d215b287c7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:dba727c5-b8cb-484c-8665-2d215b287c7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49411403-740f-44a1-8ee9-fd409983a32d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9983" + ], + "x-ms-request-id": [ + "28ec63a0-211a-4223-a577-fbee9fd8e6a2" + ], + "x-ms-correlation-request-id": [ + "28ec63a0-211a-4223-a577-fbee9fd8e6a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:28ec63a0-211a-4223-a577-fbee9fd8e6a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f79e2452-3596-4226-9079-1c513cd030f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9982" + ], + "x-ms-request-id": [ + "92733c65-fac0-4831-b8cc-f8907816db4d" + ], + "x-ms-correlation-request-id": [ + "92733c65-fac0-4831-b8cc-f8907816db4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:92733c65-fac0-4831-b8cc-f8907816db4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0df8337c-38b5-48aa-a001-15fbffe8c0e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9981" + ], + "x-ms-request-id": [ + "e03e4286-599d-4d3b-9a53-a44b3189021d" + ], + "x-ms-correlation-request-id": [ + "e03e4286-599d-4d3b-9a53-a44b3189021d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:e03e4286-599d-4d3b-9a53-a44b3189021d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87fd1a31-837c-4e1a-bf4d-375dc6d7ec78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9980" + ], + "x-ms-request-id": [ + "e461d628-8ba3-4450-b6bc-d4534c9cd85c" + ], + "x-ms-correlation-request-id": [ + "e461d628-8ba3-4450-b6bc-d4534c9cd85c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:e461d628-8ba3-4450-b6bc-d4534c9cd85c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f8b0aca-f95f-4b85-8aae-645e4a069ab8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9979" + ], + "x-ms-request-id": [ + "62f877a0-e7a7-4101-80d8-eb1c6e330dd6" + ], + "x-ms-correlation-request-id": [ + "62f877a0-e7a7-4101-80d8-eb1c6e330dd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021223Z:62f877a0-e7a7-4101-80d8-eb1c6e330dd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa0908a3-0c23-4af9-af62-ef886b42f7e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9978" + ], + "x-ms-request-id": [ + "f22b5bc4-fabc-4424-a591-db551f64a723" + ], + "x-ms-correlation-request-id": [ + "f22b5bc4-fabc-4424-a591-db551f64a723" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021224Z:f22b5bc4-fabc-4424-a591-db551f64a723" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b90d58a4-6992-45b9-a2ef-9421e5acb68b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9977" + ], + "x-ms-request-id": [ + "61467090-4b0a-45b1-bd73-199a31a4028e" + ], + "x-ms-correlation-request-id": [ + "61467090-4b0a-45b1-bd73-199a31a4028e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021224Z:61467090-4b0a-45b1-bd73-199a31a4028e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1acd27bd-9cfa-4b3a-881b-4b050567138d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9976" + ], + "x-ms-request-id": [ + "c8f7f2d2-b0bb-4659-b4fc-ad58f0adf824" + ], + "x-ms-correlation-request-id": [ + "c8f7f2d2-b0bb-4659-b4fc-ad58f0adf824" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021224Z:c8f7f2d2-b0bb-4659-b4fc-ad58f0adf824" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2bc84352-ff7a-42c2-8b81-18b22d104a5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9975" + ], + "x-ms-request-id": [ + "21ea6b42-6092-4028-8ab0-2bb3265a1879" + ], + "x-ms-correlation-request-id": [ + "21ea6b42-6092-4028-8ab0-2bb3265a1879" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021224Z:21ea6b42-6092-4028-8ab0-2bb3265a1879" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f4da5b9-2b5d-4455-a12e-cd416d07d96d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9974" + ], + "x-ms-request-id": [ + "b8288fc1-3879-4118-a229-f8e9a03d052c" + ], + "x-ms-correlation-request-id": [ + "b8288fc1-3879-4118-a229-f8e9a03d052c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021224Z:b8288fc1-3879-4118-a229-f8e9a03d052c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82e4719e-a981-4c97-bdc1-442a5edafdc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9973" + ], + "x-ms-request-id": [ + "907f32be-0ae1-4c69-bf3a-5a931425ed8b" + ], + "x-ms-correlation-request-id": [ + "907f32be-0ae1-4c69-bf3a-5a931425ed8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:907f32be-0ae1-4c69-bf3a-5a931425ed8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9168bc0-a698-48d1-8ac4-8d38c2b7cd49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9972" + ], + "x-ms-request-id": [ + "360ab881-ddf8-43bd-ace3-04645e2960cf" + ], + "x-ms-correlation-request-id": [ + "360ab881-ddf8-43bd-ace3-04645e2960cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:360ab881-ddf8-43bd-ace3-04645e2960cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd14c682-8eb6-438a-b69c-b01d360d5e82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9971" + ], + "x-ms-request-id": [ + "f00f844d-5776-46ae-8cbb-b107b08cb198" + ], + "x-ms-correlation-request-id": [ + "f00f844d-5776-46ae-8cbb-b107b08cb198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:f00f844d-5776-46ae-8cbb-b107b08cb198" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83c9b80b-f3e5-4f2e-9ae7-e937e738e2b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9970" + ], + "x-ms-request-id": [ + "5662dd66-e15e-4975-8d01-0be4d09f7e71" + ], + "x-ms-correlation-request-id": [ + "5662dd66-e15e-4975-8d01-0be4d09f7e71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:5662dd66-e15e-4975-8d01-0be4d09f7e71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56d3a5ea-cb9e-4f4d-8961-15e55b3cc057" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9969" + ], + "x-ms-request-id": [ + "7dd0d075-4752-427a-92b9-722ed2abcd7c" + ], + "x-ms-correlation-request-id": [ + "7dd0d075-4752-427a-92b9-722ed2abcd7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:7dd0d075-4752-427a-92b9-722ed2abcd7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b00aab85-8932-43f2-b314-a442bb654529" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9968" + ], + "x-ms-request-id": [ + "2e0930a4-9da1-4392-898b-fe2364ea3c9e" + ], + "x-ms-correlation-request-id": [ + "2e0930a4-9da1-4392-898b-fe2364ea3c9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:2e0930a4-9da1-4392-898b-fe2364ea3c9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a291f8e-d2ae-4470-9f39-bab2d78b92ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9967" + ], + "x-ms-request-id": [ + "8795a0a7-39bc-4686-bddf-9973f94d13d0" + ], + "x-ms-correlation-request-id": [ + "8795a0a7-39bc-4686-bddf-9973f94d13d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021225Z:8795a0a7-39bc-4686-bddf-9973f94d13d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c831242-6f6b-41c2-a28b-c2537944cd06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9966" + ], + "x-ms-request-id": [ + "b243c7c4-a875-402e-9012-39bcbe7d0da3" + ], + "x-ms-correlation-request-id": [ + "b243c7c4-a875-402e-9012-39bcbe7d0da3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:b243c7c4-a875-402e-9012-39bcbe7d0da3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a760a2d3-0639-4e6e-bc29-79debdd9300e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9965" + ], + "x-ms-request-id": [ + "7f6e897f-da53-44d0-9ca0-3c4c8ad82712" + ], + "x-ms-correlation-request-id": [ + "7f6e897f-da53-44d0-9ca0-3c4c8ad82712" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:7f6e897f-da53-44d0-9ca0-3c4c8ad82712" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afb63f8f-dbf9-484d-bd76-ad31c63825ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9964" + ], + "x-ms-request-id": [ + "3f662836-bb1c-4625-83cf-7350658425c5" + ], + "x-ms-correlation-request-id": [ + "3f662836-bb1c-4625-83cf-7350658425c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:3f662836-bb1c-4625-83cf-7350658425c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "213e6efd-e957-4bc8-b95b-0ef1e2deeb57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9963" + ], + "x-ms-request-id": [ + "63dfcf62-7328-42d5-ad91-0dc5ef5150b5" + ], + "x-ms-correlation-request-id": [ + "63dfcf62-7328-42d5-ad91-0dc5ef5150b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:63dfcf62-7328-42d5-ad91-0dc5ef5150b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dc5bcc8-cdb9-4158-97c4-0ab36c2789b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9962" + ], + "x-ms-request-id": [ + "51c31a80-7a4d-479d-8a12-7f6b5f2c6c7c" + ], + "x-ms-correlation-request-id": [ + "51c31a80-7a4d-479d-8a12-7f6b5f2c6c7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:51c31a80-7a4d-479d-8a12-7f6b5f2c6c7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d912e4e-076a-45b7-b9ec-841105b30579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9961" + ], + "x-ms-request-id": [ + "70bcb682-c838-4cf8-a05c-5388900196b5" + ], + "x-ms-correlation-request-id": [ + "70bcb682-c838-4cf8-a05c-5388900196b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021226Z:70bcb682-c838-4cf8-a05c-5388900196b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44f48014-ff14-4d21-9261-c75fc2ba3950" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9960" + ], + "x-ms-request-id": [ + "95418011-044e-477d-a69d-5adc005d6bd6" + ], + "x-ms-correlation-request-id": [ + "95418011-044e-477d-a69d-5adc005d6bd6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021227Z:95418011-044e-477d-a69d-5adc005d6bd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a5c60d7-8e72-4c6c-9557-04b33a467d7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9959" + ], + "x-ms-request-id": [ + "d4c540c1-e85d-4d62-b254-d3b4d2696302" + ], + "x-ms-correlation-request-id": [ + "d4c540c1-e85d-4d62-b254-d3b4d2696302" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021227Z:d4c540c1-e85d-4d62-b254-d3b4d2696302" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90ef965e-fe49-4396-a014-27c81735f466" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9958" + ], + "x-ms-request-id": [ + "1f164004-f457-42f1-91cf-da768435c83f" + ], + "x-ms-correlation-request-id": [ + "1f164004-f457-42f1-91cf-da768435c83f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021227Z:1f164004-f457-42f1-91cf-da768435c83f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff31965c-b73f-47d1-9262-87f34a7adaf0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9957" + ], + "x-ms-request-id": [ + "c0ecedcd-a635-4d8a-9d4b-ddaae8fc82b7" + ], + "x-ms-correlation-request-id": [ + "c0ecedcd-a635-4d8a-9d4b-ddaae8fc82b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021227Z:c0ecedcd-a635-4d8a-9d4b-ddaae8fc82b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93671e51-10c9-4aaf-a2fd-4f0f40d445ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9956" + ], + "x-ms-request-id": [ + "09af678f-0f0c-4481-bfcb-32446c9d1a46" + ], + "x-ms-correlation-request-id": [ + "09af678f-0f0c-4481-bfcb-32446c9d1a46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:09af678f-0f0c-4481-bfcb-32446c9d1a46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfe3e077-f0d2-467e-bc63-ebadabf4abc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9955" + ], + "x-ms-request-id": [ + "1d8312a8-4948-4558-864c-4154327e4556" + ], + "x-ms-correlation-request-id": [ + "1d8312a8-4948-4558-864c-4154327e4556" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:1d8312a8-4948-4558-864c-4154327e4556" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ae5c2b8-ca06-45a5-8e44-07503479721e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9954" + ], + "x-ms-request-id": [ + "8f3fca0a-3f1e-4798-9af5-eb58b9dab559" + ], + "x-ms-correlation-request-id": [ + "8f3fca0a-3f1e-4798-9af5-eb58b9dab559" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:8f3fca0a-3f1e-4798-9af5-eb58b9dab559" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1a9969b-9ccb-41fa-9ca4-97437ac77bc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9953" + ], + "x-ms-request-id": [ + "72bb63f6-db2c-4fe7-a6ae-f59428214c61" + ], + "x-ms-correlation-request-id": [ + "72bb63f6-db2c-4fe7-a6ae-f59428214c61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:72bb63f6-db2c-4fe7-a6ae-f59428214c61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dd1bfd9-2347-4119-9e2a-4d7a4780bb96" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9952" + ], + "x-ms-request-id": [ + "17090857-2214-42b2-b443-355f82e71d3d" + ], + "x-ms-correlation-request-id": [ + "17090857-2214-42b2-b443-355f82e71d3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:17090857-2214-42b2-b443-355f82e71d3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3179c4ea-1a77-45eb-a51f-c05ca0d90b07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9951" + ], + "x-ms-request-id": [ + "12f38655-4249-4f77-861d-9880d6118379" + ], + "x-ms-correlation-request-id": [ + "12f38655-4249-4f77-861d-9880d6118379" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021228Z:12f38655-4249-4f77-861d-9880d6118379" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d86b7bf-b374-4592-9301-93a4fd445d88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9950" + ], + "x-ms-request-id": [ + "cd4018d7-4805-464e-a6db-35f3f3d703b4" + ], + "x-ms-correlation-request-id": [ + "cd4018d7-4805-464e-a6db-35f3f3d703b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:cd4018d7-4805-464e-a6db-35f3f3d703b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dffe23bb-f7ce-4ead-a219-545d9d8fb881" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9949" + ], + "x-ms-request-id": [ + "baa6f8c5-c9b1-4012-9035-983e82184771" + ], + "x-ms-correlation-request-id": [ + "baa6f8c5-c9b1-4012-9035-983e82184771" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:baa6f8c5-c9b1-4012-9035-983e82184771" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "876ec6fa-44ac-47fa-b604-61d911084bdf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9948" + ], + "x-ms-request-id": [ + "f817b283-4e88-451b-a077-ea41a9626557" + ], + "x-ms-correlation-request-id": [ + "f817b283-4e88-451b-a077-ea41a9626557" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:f817b283-4e88-451b-a077-ea41a9626557" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a974bd4-df30-442a-ae66-aa7879369379" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9947" + ], + "x-ms-request-id": [ + "eb41bc05-bf2e-4439-9f9a-fe733a50ff4a" + ], + "x-ms-correlation-request-id": [ + "eb41bc05-bf2e-4439-9f9a-fe733a50ff4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:eb41bc05-bf2e-4439-9f9a-fe733a50ff4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0ed2ea2-c377-43a9-8ef5-78715dac9383" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9946" + ], + "x-ms-request-id": [ + "1659608f-26a5-4240-9532-d76f7676e963" + ], + "x-ms-correlation-request-id": [ + "1659608f-26a5-4240-9532-d76f7676e963" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:1659608f-26a5-4240-9532-d76f7676e963" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47eb22e3-a7ab-4403-a899-64e0bc29f63c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9945" + ], + "x-ms-request-id": [ + "ae68cd9f-bc84-44de-b6fd-4f435ce1809d" + ], + "x-ms-correlation-request-id": [ + "ae68cd9f-bc84-44de-b6fd-4f435ce1809d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021229Z:ae68cd9f-bc84-44de-b6fd-4f435ce1809d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d4b601b-6da7-43d9-b6cf-c0108dd19a7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9944" + ], + "x-ms-request-id": [ + "9d0377ae-cd7c-4b57-93f2-a8872bc0c449" + ], + "x-ms-correlation-request-id": [ + "9d0377ae-cd7c-4b57-93f2-a8872bc0c449" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:9d0377ae-cd7c-4b57-93f2-a8872bc0c449" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "471e0834-b7a0-40a7-8e9f-9d828a0727fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9943" + ], + "x-ms-request-id": [ + "9dbc5f42-3701-4a1e-85d1-4e70788ede2b" + ], + "x-ms-correlation-request-id": [ + "9dbc5f42-3701-4a1e-85d1-4e70788ede2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:9dbc5f42-3701-4a1e-85d1-4e70788ede2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6558d32b-5bf9-43ee-b090-a8396d3605b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9942" + ], + "x-ms-request-id": [ + "3255d956-1e98-44c4-943e-c22f023bb85a" + ], + "x-ms-correlation-request-id": [ + "3255d956-1e98-44c4-943e-c22f023bb85a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:3255d956-1e98-44c4-943e-c22f023bb85a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80564a26-468e-472e-a34a-df5298c5a324" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9941" + ], + "x-ms-request-id": [ + "3b87ef96-47cb-4d81-b471-b400f3e04319" + ], + "x-ms-correlation-request-id": [ + "3b87ef96-47cb-4d81-b471-b400f3e04319" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:3b87ef96-47cb-4d81-b471-b400f3e04319" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab18845f-4ced-44eb-ac0d-2e18a4e81490" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9940" + ], + "x-ms-request-id": [ + "009e4fd6-cc50-4004-ac2c-0b20e90fede6" + ], + "x-ms-correlation-request-id": [ + "009e4fd6-cc50-4004-ac2c-0b20e90fede6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:009e4fd6-cc50-4004-ac2c-0b20e90fede6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6460d2b0-b835-4ec5-a804-4f760e5b32b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9939" + ], + "x-ms-request-id": [ + "96f061f1-3acb-4291-99d7-0e0f3cad9dcc" + ], + "x-ms-correlation-request-id": [ + "96f061f1-3acb-4291-99d7-0e0f3cad9dcc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:96f061f1-3acb-4291-99d7-0e0f3cad9dcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784c9140-305c-48f7-9563-91526cfaf6b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9938" + ], + "x-ms-request-id": [ + "307f73ac-8dea-4a50-bdd0-39baa796e092" + ], + "x-ms-correlation-request-id": [ + "307f73ac-8dea-4a50-bdd0-39baa796e092" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021230Z:307f73ac-8dea-4a50-bdd0-39baa796e092" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cc458a8-7911-4da5-8646-715071ad93c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9937" + ], + "x-ms-request-id": [ + "de4a0214-3de9-4c7c-9b42-63f096aa1617" + ], + "x-ms-correlation-request-id": [ + "de4a0214-3de9-4c7c-9b42-63f096aa1617" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:de4a0214-3de9-4c7c-9b42-63f096aa1617" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c2af10f-541c-4033-ba49-0217f5c06f01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9936" + ], + "x-ms-request-id": [ + "6ac1cd75-a5dc-49c3-a1b5-de537cd1e386" + ], + "x-ms-correlation-request-id": [ + "6ac1cd75-a5dc-49c3-a1b5-de537cd1e386" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:6ac1cd75-a5dc-49c3-a1b5-de537cd1e386" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e68a511-1f02-4d96-b291-b49fbba86cf0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9935" + ], + "x-ms-request-id": [ + "e76b9ce8-6d0c-407b-83dc-0340a7b1ea66" + ], + "x-ms-correlation-request-id": [ + "e76b9ce8-6d0c-407b-83dc-0340a7b1ea66" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:e76b9ce8-6d0c-407b-83dc-0340a7b1ea66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0363f9e5-6886-4544-bc63-e7f100dd16a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9934" + ], + "x-ms-request-id": [ + "f7000f7f-c9e3-4b4d-a160-a9deba002872" + ], + "x-ms-correlation-request-id": [ + "f7000f7f-c9e3-4b4d-a160-a9deba002872" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:f7000f7f-c9e3-4b4d-a160-a9deba002872" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39c6dd4e-da99-43c6-a194-be5662862f5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9933" + ], + "x-ms-request-id": [ + "47329c43-8039-4f2b-b734-aa7ddb2b0f80" + ], + "x-ms-correlation-request-id": [ + "47329c43-8039-4f2b-b734-aa7ddb2b0f80" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:47329c43-8039-4f2b-b734-aa7ddb2b0f80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1191a426-1d22-483c-992d-773b58f2aab1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9932" + ], + "x-ms-request-id": [ + "b913408a-15e7-4c34-ba2c-5efcea15a862" + ], + "x-ms-correlation-request-id": [ + "b913408a-15e7-4c34-ba2c-5efcea15a862" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021231Z:b913408a-15e7-4c34-ba2c-5efcea15a862" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f46b8222-034e-41c3-8339-ed6935acbbca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9931" + ], + "x-ms-request-id": [ + "43614db3-3424-4e21-8bad-721182d6f0a5" + ], + "x-ms-correlation-request-id": [ + "43614db3-3424-4e21-8bad-721182d6f0a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:43614db3-3424-4e21-8bad-721182d6f0a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "218e8f0b-1285-4199-98fc-be59d687b012" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9930" + ], + "x-ms-request-id": [ + "3a959985-b761-42d1-a225-cd761437cbdb" + ], + "x-ms-correlation-request-id": [ + "3a959985-b761-42d1-a225-cd761437cbdb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:3a959985-b761-42d1-a225-cd761437cbdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81c3d033-ee5c-4f02-b2bf-d3468b4bb2c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9929" + ], + "x-ms-request-id": [ + "c5f980b3-ef09-41fa-a4be-5d80d5463cbc" + ], + "x-ms-correlation-request-id": [ + "c5f980b3-ef09-41fa-a4be-5d80d5463cbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:c5f980b3-ef09-41fa-a4be-5d80d5463cbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "463ffefc-aa31-4b24-8be3-41adedd49f2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9928" + ], + "x-ms-request-id": [ + "6d37caf2-2672-4b8b-9fb3-c0a8b3421dc2" + ], + "x-ms-correlation-request-id": [ + "6d37caf2-2672-4b8b-9fb3-c0a8b3421dc2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:6d37caf2-2672-4b8b-9fb3-c0a8b3421dc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d1cc05c-f4c7-45e7-a610-23f495e105ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9927" + ], + "x-ms-request-id": [ + "0a0d404a-0b6d-4b40-8266-08919059d6c8" + ], + "x-ms-correlation-request-id": [ + "0a0d404a-0b6d-4b40-8266-08919059d6c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:0a0d404a-0b6d-4b40-8266-08919059d6c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "46676b57-93e8-4588-b3d0-69fc888d0b87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9926" + ], + "x-ms-request-id": [ + "be52e120-78e0-4921-a5fe-1ccc670d5519" + ], + "x-ms-correlation-request-id": [ + "be52e120-78e0-4921-a5fe-1ccc670d5519" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021232Z:be52e120-78e0-4921-a5fe-1ccc670d5519" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "659c1876-8ef4-4d79-ab84-214790c36640" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9925" + ], + "x-ms-request-id": [ + "ddf926d9-3ca3-4137-854a-5c32ee37827d" + ], + "x-ms-correlation-request-id": [ + "ddf926d9-3ca3-4137-854a-5c32ee37827d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:ddf926d9-3ca3-4137-854a-5c32ee37827d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e396981-74fd-4d1d-8039-a81ef7076283" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9924" + ], + "x-ms-request-id": [ + "fce2d2d0-e949-4968-8e44-9527a691f0ee" + ], + "x-ms-correlation-request-id": [ + "fce2d2d0-e949-4968-8e44-9527a691f0ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:fce2d2d0-e949-4968-8e44-9527a691f0ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17ec5cab-2b6b-4d79-afb6-8e0c41428408" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9923" + ], + "x-ms-request-id": [ + "e06e9dcc-f665-498f-9a13-ef42f7657d8b" + ], + "x-ms-correlation-request-id": [ + "e06e9dcc-f665-498f-9a13-ef42f7657d8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:e06e9dcc-f665-498f-9a13-ef42f7657d8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6df0092b-4225-43c4-957c-70a1ec8ee057" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9922" + ], + "x-ms-request-id": [ + "1882c41e-9f39-4cd4-9d7e-92b211f611c0" + ], + "x-ms-correlation-request-id": [ + "1882c41e-9f39-4cd4-9d7e-92b211f611c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:1882c41e-9f39-4cd4-9d7e-92b211f611c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f65ec7c9-d70d-4fb5-9b41-986435a9fde9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9921" + ], + "x-ms-request-id": [ + "0a548c54-6bcb-4e20-abe7-7f372e5366f4" + ], + "x-ms-correlation-request-id": [ + "0a548c54-6bcb-4e20-abe7-7f372e5366f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:0a548c54-6bcb-4e20-abe7-7f372e5366f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1382dde9-024d-47e8-8251-4a2b17b3827e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9920" + ], + "x-ms-request-id": [ + "c531dee5-c0f1-4db5-80c8-c6984bd34e1f" + ], + "x-ms-correlation-request-id": [ + "c531dee5-c0f1-4db5-80c8-c6984bd34e1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021233Z:c531dee5-c0f1-4db5-80c8-c6984bd34e1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62973933-920e-4f3d-a524-af6e0285aa75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9919" + ], + "x-ms-request-id": [ + "66973fba-a461-40f3-b1d4-80967ac4c53d" + ], + "x-ms-correlation-request-id": [ + "66973fba-a461-40f3-b1d4-80967ac4c53d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:66973fba-a461-40f3-b1d4-80967ac4c53d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4de64421-29f5-4dd0-8cc1-2bce291f7a1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9918" + ], + "x-ms-request-id": [ + "e964fab8-1c3a-4ae7-988f-dd843c10a63a" + ], + "x-ms-correlation-request-id": [ + "e964fab8-1c3a-4ae7-988f-dd843c10a63a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:e964fab8-1c3a-4ae7-988f-dd843c10a63a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90f90c58-249f-4cbf-b73f-58d1a6d3656d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9917" + ], + "x-ms-request-id": [ + "363af6dd-7b4e-43f7-a08a-ef1fe05c8b5e" + ], + "x-ms-correlation-request-id": [ + "363af6dd-7b4e-43f7-a08a-ef1fe05c8b5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:363af6dd-7b4e-43f7-a08a-ef1fe05c8b5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "650a0631-9c9e-420d-85b8-a4e101ab76aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9916" + ], + "x-ms-request-id": [ + "f0df773d-50ff-4ac1-93d8-6eaf9e237684" + ], + "x-ms-correlation-request-id": [ + "f0df773d-50ff-4ac1-93d8-6eaf9e237684" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:f0df773d-50ff-4ac1-93d8-6eaf9e237684" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804856aa-28a9-4f9f-9fa0-dd0e899022f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9915" + ], + "x-ms-request-id": [ + "94933293-29b7-4a96-adb4-0ae9559a9efd" + ], + "x-ms-correlation-request-id": [ + "94933293-29b7-4a96-adb4-0ae9559a9efd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:94933293-29b7-4a96-adb4-0ae9559a9efd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "168de2ba-167e-4a22-aafe-087b36a2867e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9914" + ], + "x-ms-request-id": [ + "f3b8779a-254b-44b9-8e18-6e8338bddef3" + ], + "x-ms-correlation-request-id": [ + "f3b8779a-254b-44b9-8e18-6e8338bddef3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021234Z:f3b8779a-254b-44b9-8e18-6e8338bddef3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9af1964-5f51-4af7-8c9d-74f61f4ebdc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9913" + ], + "x-ms-request-id": [ + "9c00e5b6-6fdd-4cca-81df-1a0103c66f34" + ], + "x-ms-correlation-request-id": [ + "9c00e5b6-6fdd-4cca-81df-1a0103c66f34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:9c00e5b6-6fdd-4cca-81df-1a0103c66f34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dffdcfd3-a9df-49c3-a41b-c011480088fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9912" + ], + "x-ms-request-id": [ + "15dfea88-4072-4c7f-adfe-a43cce812bdd" + ], + "x-ms-correlation-request-id": [ + "15dfea88-4072-4c7f-adfe-a43cce812bdd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:15dfea88-4072-4c7f-adfe-a43cce812bdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d402798-5b7e-477e-b7b4-0dd0454e7cc7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9911" + ], + "x-ms-request-id": [ + "d5ac01fd-a83a-4019-b5f5-650425d26c49" + ], + "x-ms-correlation-request-id": [ + "d5ac01fd-a83a-4019-b5f5-650425d26c49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:d5ac01fd-a83a-4019-b5f5-650425d26c49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c16a59f-8701-4171-868c-43c4f586ab52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9910" + ], + "x-ms-request-id": [ + "105effea-e69a-48ef-af80-b1ce007dcc08" + ], + "x-ms-correlation-request-id": [ + "105effea-e69a-48ef-af80-b1ce007dcc08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:105effea-e69a-48ef-af80-b1ce007dcc08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df71bc1e-28fc-4085-9ec7-1448999aa3ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9909" + ], + "x-ms-request-id": [ + "b4919f23-b6c1-4848-9c1a-b3bed4e7c7ce" + ], + "x-ms-correlation-request-id": [ + "b4919f23-b6c1-4848-9c1a-b3bed4e7c7ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:b4919f23-b6c1-4848-9c1a-b3bed4e7c7ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32e7cd8b-9f3d-4e41-a0a8-3a6ff9dd6d0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9908" + ], + "x-ms-request-id": [ + "78d4ae28-0be4-49a3-9fa1-58b2062c7168" + ], + "x-ms-correlation-request-id": [ + "78d4ae28-0be4-49a3-9fa1-58b2062c7168" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021235Z:78d4ae28-0be4-49a3-9fa1-58b2062c7168" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30cf07f7-634a-407d-9594-4421a576fd3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9907" + ], + "x-ms-request-id": [ + "1483904e-ff04-4fd4-99a1-d065eddfef2e" + ], + "x-ms-correlation-request-id": [ + "1483904e-ff04-4fd4-99a1-d065eddfef2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021236Z:1483904e-ff04-4fd4-99a1-d065eddfef2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfe3716f-fe5a-433f-85f4-72439ed018cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9906" + ], + "x-ms-request-id": [ + "37074d0e-b472-45ea-a955-4034183417c7" + ], + "x-ms-correlation-request-id": [ + "37074d0e-b472-45ea-a955-4034183417c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021236Z:37074d0e-b472-45ea-a955-4034183417c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0012cefd-fe60-4ae2-a64e-3851400dc68a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9905" + ], + "x-ms-request-id": [ + "2d6f24db-00b4-4f2d-9c05-0e65d0bd345a" + ], + "x-ms-correlation-request-id": [ + "2d6f24db-00b4-4f2d-9c05-0e65d0bd345a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021240Z:2d6f24db-00b4-4f2d-9c05-0e65d0bd345a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14a43da1-ac4c-4603-a658-ae04bd097b36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9904" + ], + "x-ms-request-id": [ + "e99db883-3e39-4136-b05a-1f9cfa4fb5f3" + ], + "x-ms-correlation-request-id": [ + "e99db883-3e39-4136-b05a-1f9cfa4fb5f3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021240Z:e99db883-3e39-4136-b05a-1f9cfa4fb5f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17173ac2-cb6f-42f8-8d94-d0cc13bef0ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9903" + ], + "x-ms-request-id": [ + "dd0c0520-1f51-45e6-89f4-21b5e35f4de3" + ], + "x-ms-correlation-request-id": [ + "dd0c0520-1f51-45e6-89f4-21b5e35f4de3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:dd0c0520-1f51-45e6-89f4-21b5e35f4de3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "908661cf-80ac-488d-9384-d347f1030b17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9902" + ], + "x-ms-request-id": [ + "2844c221-97c7-4250-afaa-26500555b268" + ], + "x-ms-correlation-request-id": [ + "2844c221-97c7-4250-afaa-26500555b268" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:2844c221-97c7-4250-afaa-26500555b268" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f529a0c9-94af-42c0-9373-91259109d1b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9901" + ], + "x-ms-request-id": [ + "7c193487-1f33-4e83-9018-a070b6c9810e" + ], + "x-ms-correlation-request-id": [ + "7c193487-1f33-4e83-9018-a070b6c9810e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:7c193487-1f33-4e83-9018-a070b6c9810e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9dd83a1-902f-4e1f-83a2-a9d554bf1f80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9900" + ], + "x-ms-request-id": [ + "f2dda4a6-f5c0-45a2-8d7e-bf794978ac88" + ], + "x-ms-correlation-request-id": [ + "f2dda4a6-f5c0-45a2-8d7e-bf794978ac88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:f2dda4a6-f5c0-45a2-8d7e-bf794978ac88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6d05aeb-222a-4989-8c5f-50ca77f03384" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9899" + ], + "x-ms-request-id": [ + "c3977cf5-5337-4ca3-bdff-f6670a989033" + ], + "x-ms-correlation-request-id": [ + "c3977cf5-5337-4ca3-bdff-f6670a989033" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:c3977cf5-5337-4ca3-bdff-f6670a989033" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c7bf3f7-f4a4-4653-8d8c-d1eba5c92e6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9898" + ], + "x-ms-request-id": [ + "c40151e7-2e4f-4f63-b5d6-466823edb2ff" + ], + "x-ms-correlation-request-id": [ + "c40151e7-2e4f-4f63-b5d6-466823edb2ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021241Z:c40151e7-2e4f-4f63-b5d6-466823edb2ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc1ca2e3-bdd4-490a-80f5-928a14cd97d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9897" + ], + "x-ms-request-id": [ + "7aef3fe6-3077-4cd1-a49e-b49cf3ca9602" + ], + "x-ms-correlation-request-id": [ + "7aef3fe6-3077-4cd1-a49e-b49cf3ca9602" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:7aef3fe6-3077-4cd1-a49e-b49cf3ca9602" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eeb94c6c-1e2e-4d14-a597-ce035413e744" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9896" + ], + "x-ms-request-id": [ + "54370495-6fa2-4ac2-a0a1-84d4f27663de" + ], + "x-ms-correlation-request-id": [ + "54370495-6fa2-4ac2-a0a1-84d4f27663de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:54370495-6fa2-4ac2-a0a1-84d4f27663de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4eea4ee7-1418-4b93-a337-47e374d31024" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9895" + ], + "x-ms-request-id": [ + "dc635610-d845-411f-a696-cd8c8f395919" + ], + "x-ms-correlation-request-id": [ + "dc635610-d845-411f-a696-cd8c8f395919" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:dc635610-d845-411f-a696-cd8c8f395919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c33c077-8ac0-4214-bf00-1a30e44e16db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9894" + ], + "x-ms-request-id": [ + "53e4927e-093c-46d3-ba79-a4d917b4ea9a" + ], + "x-ms-correlation-request-id": [ + "53e4927e-093c-46d3-ba79-a4d917b4ea9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:53e4927e-093c-46d3-ba79-a4d917b4ea9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c51de3d-1b72-4b2b-b6de-8f5b6dca105c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9893" + ], + "x-ms-request-id": [ + "ccc24f38-219e-4067-a022-6b9d6b19a8c3" + ], + "x-ms-correlation-request-id": [ + "ccc24f38-219e-4067-a022-6b9d6b19a8c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:ccc24f38-219e-4067-a022-6b9d6b19a8c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cbe3fa4-4c67-4acd-8845-7528664a79a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9892" + ], + "x-ms-request-id": [ + "5191abb6-d9da-477b-af51-61f30297ea9a" + ], + "x-ms-correlation-request-id": [ + "5191abb6-d9da-477b-af51-61f30297ea9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021242Z:5191abb6-d9da-477b-af51-61f30297ea9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "259dd0cc-d9ca-428f-8f3e-d9ded017a2f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9891" + ], + "x-ms-request-id": [ + "e58e23a0-f30a-4527-a9b4-0e7cd6520163" + ], + "x-ms-correlation-request-id": [ + "e58e23a0-f30a-4527-a9b4-0e7cd6520163" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:e58e23a0-f30a-4527-a9b4-0e7cd6520163" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9ac2d8e-5394-48d6-a0f5-4a830f61162c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9890" + ], + "x-ms-request-id": [ + "a2af546d-a911-4c3a-9347-3b7b99772b50" + ], + "x-ms-correlation-request-id": [ + "a2af546d-a911-4c3a-9347-3b7b99772b50" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:a2af546d-a911-4c3a-9347-3b7b99772b50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d0eaa52-b799-4518-8782-6e3fb29bc499" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9889" + ], + "x-ms-request-id": [ + "adecacb2-7b0a-4a4e-99e6-ed10d4db531f" + ], + "x-ms-correlation-request-id": [ + "adecacb2-7b0a-4a4e-99e6-ed10d4db531f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:adecacb2-7b0a-4a4e-99e6-ed10d4db531f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4023706-a310-4780-9b7a-c0735b81a965" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9888" + ], + "x-ms-request-id": [ + "17bba260-71c8-4329-afee-51665f5dac5c" + ], + "x-ms-correlation-request-id": [ + "17bba260-71c8-4329-afee-51665f5dac5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:17bba260-71c8-4329-afee-51665f5dac5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ae5bb8f-fd70-4234-b72c-de26b77e822c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9887" + ], + "x-ms-request-id": [ + "23d3c362-da55-4e60-9c3d-e3ea5cbc8373" + ], + "x-ms-correlation-request-id": [ + "23d3c362-da55-4e60-9c3d-e3ea5cbc8373" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:23d3c362-da55-4e60-9c3d-e3ea5cbc8373" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7926e35b-ef5f-4a94-9e30-fc48e19c56e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9886" + ], + "x-ms-request-id": [ + "5b8a7dcf-2114-416f-a2db-f92d4227eb1c" + ], + "x-ms-correlation-request-id": [ + "5b8a7dcf-2114-416f-a2db-f92d4227eb1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021243Z:5b8a7dcf-2114-416f-a2db-f92d4227eb1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e7132d7-25c9-4344-8d1e-6234fe900c43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9885" + ], + "x-ms-request-id": [ + "2f8460bc-e8a0-4cd7-ae23-5c5a00f9b407" + ], + "x-ms-correlation-request-id": [ + "2f8460bc-e8a0-4cd7-ae23-5c5a00f9b407" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:2f8460bc-e8a0-4cd7-ae23-5c5a00f9b407" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35c99ec3-3d78-4ae9-931d-f94871008dc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9884" + ], + "x-ms-request-id": [ + "2d96ed86-c2bc-488e-aa61-fc4467c89efc" + ], + "x-ms-correlation-request-id": [ + "2d96ed86-c2bc-488e-aa61-fc4467c89efc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:2d96ed86-c2bc-488e-aa61-fc4467c89efc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24bd29e4-f659-4b81-a176-7bdbfaab0278" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9883" + ], + "x-ms-request-id": [ + "7ed9f7c3-1e08-44ca-95e4-f29f7fcc06cf" + ], + "x-ms-correlation-request-id": [ + "7ed9f7c3-1e08-44ca-95e4-f29f7fcc06cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:7ed9f7c3-1e08-44ca-95e4-f29f7fcc06cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d6ccc3d-77a1-4199-ad9e-b69480ec3cfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9882" + ], + "x-ms-request-id": [ + "7547d8a6-a512-4ec4-8c47-efeff7ea4c15" + ], + "x-ms-correlation-request-id": [ + "7547d8a6-a512-4ec4-8c47-efeff7ea4c15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:7547d8a6-a512-4ec4-8c47-efeff7ea4c15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de3a5862-9f5b-478b-9ff9-1d0b5f1bd278" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9881" + ], + "x-ms-request-id": [ + "a0f3ed4d-34d5-4951-8d87-6a1f06580211" + ], + "x-ms-correlation-request-id": [ + "a0f3ed4d-34d5-4951-8d87-6a1f06580211" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:a0f3ed4d-34d5-4951-8d87-6a1f06580211" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ac3c42f-17c9-4bd2-9258-a643a278a290" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9880" + ], + "x-ms-request-id": [ + "da0184a9-5274-49ab-a6d6-e5ae09ce0382" + ], + "x-ms-correlation-request-id": [ + "da0184a9-5274-49ab-a6d6-e5ae09ce0382" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021244Z:da0184a9-5274-49ab-a6d6-e5ae09ce0382" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69fe1e17-b3b7-4bcc-8d31-54f4ea906353" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9879" + ], + "x-ms-request-id": [ + "adc68683-b3b9-4ab4-aa4a-caa1536e4e88" + ], + "x-ms-correlation-request-id": [ + "adc68683-b3b9-4ab4-aa4a-caa1536e4e88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:adc68683-b3b9-4ab4-aa4a-caa1536e4e88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87078fed-ade8-4dd4-82e6-938d12b74fb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9878" + ], + "x-ms-request-id": [ + "b03bd020-f2ab-490b-8c3b-7515a9e20aab" + ], + "x-ms-correlation-request-id": [ + "b03bd020-f2ab-490b-8c3b-7515a9e20aab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:b03bd020-f2ab-490b-8c3b-7515a9e20aab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d3b0b6f-68ed-483a-881c-b9ca24297151" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9877" + ], + "x-ms-request-id": [ + "7edb6854-0aee-49d9-b91a-ab74abf4cec7" + ], + "x-ms-correlation-request-id": [ + "7edb6854-0aee-49d9-b91a-ab74abf4cec7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:7edb6854-0aee-49d9-b91a-ab74abf4cec7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91929221-51a4-4795-a215-91bb53d5ea3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9876" + ], + "x-ms-request-id": [ + "97d27eb1-f6f9-4121-ac8f-e4e12923572c" + ], + "x-ms-correlation-request-id": [ + "97d27eb1-f6f9-4121-ac8f-e4e12923572c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:97d27eb1-f6f9-4121-ac8f-e4e12923572c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8592971-46c9-4664-960b-fd7e4a5fae67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9875" + ], + "x-ms-request-id": [ + "37d696c0-87c1-4615-a4b7-fec6e03c4e5b" + ], + "x-ms-correlation-request-id": [ + "37d696c0-87c1-4615-a4b7-fec6e03c4e5b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:37d696c0-87c1-4615-a4b7-fec6e03c4e5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25bef779-d26d-453b-af22-6300c255d82e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9874" + ], + "x-ms-request-id": [ + "5a269a0d-716a-42d4-9d26-cad7d24edcc0" + ], + "x-ms-correlation-request-id": [ + "5a269a0d-716a-42d4-9d26-cad7d24edcc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021245Z:5a269a0d-716a-42d4-9d26-cad7d24edcc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4edbd040-f40a-4392-8a4b-f8de380f4435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9873" + ], + "x-ms-request-id": [ + "efab5cdc-c75c-4222-9d52-9a11d15c755d" + ], + "x-ms-correlation-request-id": [ + "efab5cdc-c75c-4222-9d52-9a11d15c755d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021246Z:efab5cdc-c75c-4222-9d52-9a11d15c755d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35f5cff6-7ec4-4147-80bb-c94db6f1c61a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9872" + ], + "x-ms-request-id": [ + "f2f1f265-f39a-43fd-9606-21b0db354129" + ], + "x-ms-correlation-request-id": [ + "f2f1f265-f39a-43fd-9606-21b0db354129" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021246Z:f2f1f265-f39a-43fd-9606-21b0db354129" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b1c1ec7-c1b5-4dc6-ac15-c893968eef55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9871" + ], + "x-ms-request-id": [ + "92157b1d-16f0-45c7-b92e-246de058abe5" + ], + "x-ms-correlation-request-id": [ + "92157b1d-16f0-45c7-b92e-246de058abe5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021246Z:92157b1d-16f0-45c7-b92e-246de058abe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "052398c5-1e6a-4a59-a37e-073709832856" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9870" + ], + "x-ms-request-id": [ + "e760e2db-f26c-48af-997c-fa7c699cefcd" + ], + "x-ms-correlation-request-id": [ + "e760e2db-f26c-48af-997c-fa7c699cefcd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021246Z:e760e2db-f26c-48af-997c-fa7c699cefcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb583285-7c40-468e-ad2c-18a4f7391f00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9869" + ], + "x-ms-request-id": [ + "0b669e54-f6a6-4e3a-9781-836dff3250e7" + ], + "x-ms-correlation-request-id": [ + "0b669e54-f6a6-4e3a-9781-836dff3250e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021246Z:0b669e54-f6a6-4e3a-9781-836dff3250e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31321730-bc33-42b9-b42c-eb89d418dd39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9868" + ], + "x-ms-request-id": [ + "9d0d06b0-4e4b-4f08-a1b0-94e63ca67846" + ], + "x-ms-correlation-request-id": [ + "9d0d06b0-4e4b-4f08-a1b0-94e63ca67846" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:9d0d06b0-4e4b-4f08-a1b0-94e63ca67846" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d6877ff-9d05-492e-899d-7fdcbad23596" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9867" + ], + "x-ms-request-id": [ + "3ba7eee6-b9a3-4624-bc7c-f8ec64c852d1" + ], + "x-ms-correlation-request-id": [ + "3ba7eee6-b9a3-4624-bc7c-f8ec64c852d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:3ba7eee6-b9a3-4624-bc7c-f8ec64c852d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58749dcb-ddbc-436b-8788-b31030fe8571" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9866" + ], + "x-ms-request-id": [ + "b8dbbc09-d6a9-4cc3-868d-0fc72be89b05" + ], + "x-ms-correlation-request-id": [ + "b8dbbc09-d6a9-4cc3-868d-0fc72be89b05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:b8dbbc09-d6a9-4cc3-868d-0fc72be89b05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1753e774-0713-461e-9d36-72be1dd452cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9865" + ], + "x-ms-request-id": [ + "655c3ce8-4c97-4d24-8a46-4e245a525706" + ], + "x-ms-correlation-request-id": [ + "655c3ce8-4c97-4d24-8a46-4e245a525706" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:655c3ce8-4c97-4d24-8a46-4e245a525706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5cdf121-9bab-46ad-86f9-b0bc658f4169" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9864" + ], + "x-ms-request-id": [ + "7e677881-bda1-4fe5-89c0-bd70bfb4d9cc" + ], + "x-ms-correlation-request-id": [ + "7e677881-bda1-4fe5-89c0-bd70bfb4d9cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:7e677881-bda1-4fe5-89c0-bd70bfb4d9cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8f905ef-37f6-4c8f-a5d7-1f305743e6eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9863" + ], + "x-ms-request-id": [ + "d4f19771-f9b0-495e-8431-44a0d485118e" + ], + "x-ms-correlation-request-id": [ + "d4f19771-f9b0-495e-8431-44a0d485118e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021247Z:d4f19771-f9b0-495e-8431-44a0d485118e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d84c547-6c7f-48e7-b61f-4ce7a3a5d9a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9862" + ], + "x-ms-request-id": [ + "49208e5f-329b-4515-b609-9292c3af4510" + ], + "x-ms-correlation-request-id": [ + "49208e5f-329b-4515-b609-9292c3af4510" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:49208e5f-329b-4515-b609-9292c3af4510" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32fe09ed-794e-490b-9684-dd9b1ad2064e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9861" + ], + "x-ms-request-id": [ + "89cd8e26-df87-48b6-b421-3e2f7f28092a" + ], + "x-ms-correlation-request-id": [ + "89cd8e26-df87-48b6-b421-3e2f7f28092a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:89cd8e26-df87-48b6-b421-3e2f7f28092a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7528ed2e-c38e-43ae-9d96-54496533feeb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9860" + ], + "x-ms-request-id": [ + "4da0dd83-462b-489f-b180-58e5aa46fdee" + ], + "x-ms-correlation-request-id": [ + "4da0dd83-462b-489f-b180-58e5aa46fdee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:4da0dd83-462b-489f-b180-58e5aa46fdee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "452899d4-228e-48e2-8dc9-469de7515e4f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9859" + ], + "x-ms-request-id": [ + "f1b24df5-15bf-42c7-8f52-235b215acf65" + ], + "x-ms-correlation-request-id": [ + "f1b24df5-15bf-42c7-8f52-235b215acf65" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:f1b24df5-15bf-42c7-8f52-235b215acf65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "635d5013-efa9-4416-bd21-dd3a52fab6d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9858" + ], + "x-ms-request-id": [ + "9f22bc2f-f23f-430a-89de-85e403f2e649" + ], + "x-ms-correlation-request-id": [ + "9f22bc2f-f23f-430a-89de-85e403f2e649" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:9f22bc2f-f23f-430a-89de-85e403f2e649" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8eeabd3c-ea14-4364-859b-6a601538a0d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9857" + ], + "x-ms-request-id": [ + "5e5fafcb-65fb-4376-bdf0-be9be64cc14e" + ], + "x-ms-correlation-request-id": [ + "5e5fafcb-65fb-4376-bdf0-be9be64cc14e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021248Z:5e5fafcb-65fb-4376-bdf0-be9be64cc14e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e7f6d30-2b94-4c61-9344-b58d1f24e116" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9856" + ], + "x-ms-request-id": [ + "798f5307-e51c-4749-8fee-a8ff2fb55c29" + ], + "x-ms-correlation-request-id": [ + "798f5307-e51c-4749-8fee-a8ff2fb55c29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:798f5307-e51c-4749-8fee-a8ff2fb55c29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "608f2185-4bcc-4960-aced-ab11a8c5026c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9855" + ], + "x-ms-request-id": [ + "b0b4c11f-72cd-4ce8-85b8-005c9e7e9bd1" + ], + "x-ms-correlation-request-id": [ + "b0b4c11f-72cd-4ce8-85b8-005c9e7e9bd1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:b0b4c11f-72cd-4ce8-85b8-005c9e7e9bd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c93dbb65-fb1f-4011-ad64-40ed5b9c6d54" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9854" + ], + "x-ms-request-id": [ + "7e795a25-301b-4e5b-9b78-646844b6f228" + ], + "x-ms-correlation-request-id": [ + "7e795a25-301b-4e5b-9b78-646844b6f228" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:7e795a25-301b-4e5b-9b78-646844b6f228" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7bca8c6-2598-49b6-82f3-c903796d8441" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9853" + ], + "x-ms-request-id": [ + "d04e4daf-24e8-4759-81a4-804f2dfbe368" + ], + "x-ms-correlation-request-id": [ + "d04e4daf-24e8-4759-81a4-804f2dfbe368" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:d04e4daf-24e8-4759-81a4-804f2dfbe368" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e95ce9d4-d30d-466d-aa88-0015ca112ff8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9852" + ], + "x-ms-request-id": [ + "cf05d6ce-db0e-4c42-8f98-0eae058444ed" + ], + "x-ms-correlation-request-id": [ + "cf05d6ce-db0e-4c42-8f98-0eae058444ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:cf05d6ce-db0e-4c42-8f98-0eae058444ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df4eadc2-476d-4535-906f-f9b9f7a367a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9851" + ], + "x-ms-request-id": [ + "d553b8f4-ba74-4c18-b8d9-2a14369db7e7" + ], + "x-ms-correlation-request-id": [ + "d553b8f4-ba74-4c18-b8d9-2a14369db7e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021249Z:d553b8f4-ba74-4c18-b8d9-2a14369db7e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4428b9ac-ad91-4706-bfbe-1d1e6fcfe5e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9850" + ], + "x-ms-request-id": [ + "0a2d3d5e-db44-4ec4-8cbc-d6f26d0e9c2a" + ], + "x-ms-correlation-request-id": [ + "0a2d3d5e-db44-4ec4-8cbc-d6f26d0e9c2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:0a2d3d5e-db44-4ec4-8cbc-d6f26d0e9c2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "517195c9-327f-4d49-91f6-0ec5c6baa719" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9849" + ], + "x-ms-request-id": [ + "23de5133-2e85-4e4c-a56e-d1fe6b88e9ce" + ], + "x-ms-correlation-request-id": [ + "23de5133-2e85-4e4c-a56e-d1fe6b88e9ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:23de5133-2e85-4e4c-a56e-d1fe6b88e9ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "420357e5-8edc-484d-b4ba-d3f92de45106" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9848" + ], + "x-ms-request-id": [ + "5151d6df-ebb1-4111-9740-8dc612e74047" + ], + "x-ms-correlation-request-id": [ + "5151d6df-ebb1-4111-9740-8dc612e74047" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:5151d6df-ebb1-4111-9740-8dc612e74047" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8340992-1059-4bb3-84d4-8933e1ff2f0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9847" + ], + "x-ms-request-id": [ + "ccdb1573-bf8f-4e31-9aad-bbca5c3691b5" + ], + "x-ms-correlation-request-id": [ + "ccdb1573-bf8f-4e31-9aad-bbca5c3691b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:ccdb1573-bf8f-4e31-9aad-bbca5c3691b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "552836be-fe9a-4264-8585-d5a3d9f7bf49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9846" + ], + "x-ms-request-id": [ + "245015cc-2e07-4412-9e06-98886f967846" + ], + "x-ms-correlation-request-id": [ + "245015cc-2e07-4412-9e06-98886f967846" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:245015cc-2e07-4412-9e06-98886f967846" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a4eee56-35fc-426e-82e4-05270a807587" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9845" + ], + "x-ms-request-id": [ + "8edaad57-9be1-4421-a33f-bcf1c0fee8cf" + ], + "x-ms-correlation-request-id": [ + "8edaad57-9be1-4421-a33f-bcf1c0fee8cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021250Z:8edaad57-9be1-4421-a33f-bcf1c0fee8cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc7b071f-17bf-4269-894c-ab4f46d71362" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9844" + ], + "x-ms-request-id": [ + "80214c3e-c006-4df0-9a1a-66432a79b72f" + ], + "x-ms-correlation-request-id": [ + "80214c3e-c006-4df0-9a1a-66432a79b72f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:80214c3e-c006-4df0-9a1a-66432a79b72f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a2ab675-4dbe-4144-ab4b-19d3f104cae0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9843" + ], + "x-ms-request-id": [ + "f73d7eba-96e4-4738-9d98-92234f825183" + ], + "x-ms-correlation-request-id": [ + "f73d7eba-96e4-4738-9d98-92234f825183" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:f73d7eba-96e4-4738-9d98-92234f825183" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e7fb428-4435-4cd3-9904-91b9ffa0800d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9842" + ], + "x-ms-request-id": [ + "9a509568-4b8d-411a-9d80-14514a67c8aa" + ], + "x-ms-correlation-request-id": [ + "9a509568-4b8d-411a-9d80-14514a67c8aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:9a509568-4b8d-411a-9d80-14514a67c8aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b864bdb-8f5a-4ca2-849c-dc43177075ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9841" + ], + "x-ms-request-id": [ + "c1025df1-6e0e-443a-9eaf-93e31261b395" + ], + "x-ms-correlation-request-id": [ + "c1025df1-6e0e-443a-9eaf-93e31261b395" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:c1025df1-6e0e-443a-9eaf-93e31261b395" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1a0ca20-0912-4943-bf31-bfb6fea85eeb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9840" + ], + "x-ms-request-id": [ + "619f9fd7-1ed4-49cf-8f81-2340a6de0136" + ], + "x-ms-correlation-request-id": [ + "619f9fd7-1ed4-49cf-8f81-2340a6de0136" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:619f9fd7-1ed4-49cf-8f81-2340a6de0136" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf55c004-b7fb-4018-a80e-bd393be7bdf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9839" + ], + "x-ms-request-id": [ + "9561e2a1-77ea-486a-978a-0cf54083fba1" + ], + "x-ms-correlation-request-id": [ + "9561e2a1-77ea-486a-978a-0cf54083fba1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021251Z:9561e2a1-77ea-486a-978a-0cf54083fba1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c822d4a1-fd33-466b-a9f6-338ef4c6e6e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9838" + ], + "x-ms-request-id": [ + "6f8280ee-4c07-4104-b7f2-7a4889382459" + ], + "x-ms-correlation-request-id": [ + "6f8280ee-4c07-4104-b7f2-7a4889382459" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:6f8280ee-4c07-4104-b7f2-7a4889382459" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db324ccd-12af-4654-b652-64cf2f15877a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9837" + ], + "x-ms-request-id": [ + "7c664682-55a2-4337-b2dc-145d66e29167" + ], + "x-ms-correlation-request-id": [ + "7c664682-55a2-4337-b2dc-145d66e29167" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:7c664682-55a2-4337-b2dc-145d66e29167" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35285aed-f6d7-400b-916b-050aff176b0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9836" + ], + "x-ms-request-id": [ + "c0f2d98c-0215-4989-800a-8b3444d7b4cf" + ], + "x-ms-correlation-request-id": [ + "c0f2d98c-0215-4989-800a-8b3444d7b4cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:c0f2d98c-0215-4989-800a-8b3444d7b4cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8ed2e39-2903-4a1b-9855-c59f46bdd099" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9835" + ], + "x-ms-request-id": [ + "0861f382-6b6a-4d64-8be8-6f3c58e0d706" + ], + "x-ms-correlation-request-id": [ + "0861f382-6b6a-4d64-8be8-6f3c58e0d706" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:0861f382-6b6a-4d64-8be8-6f3c58e0d706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99a94264-6300-4e7c-a25d-1d836d5260e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9834" + ], + "x-ms-request-id": [ + "472d8fcf-7537-4b06-88df-0e8bd2c6ab14" + ], + "x-ms-correlation-request-id": [ + "472d8fcf-7537-4b06-88df-0e8bd2c6ab14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:472d8fcf-7537-4b06-88df-0e8bd2c6ab14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfeb8ccb-4c22-4b48-82aa-5077b34de1e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9833" + ], + "x-ms-request-id": [ + "acef4114-9e3e-40fc-826f-1b02b8857c9c" + ], + "x-ms-correlation-request-id": [ + "acef4114-9e3e-40fc-826f-1b02b8857c9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021252Z:acef4114-9e3e-40fc-826f-1b02b8857c9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b2f2ffc-f5ce-4d04-ba73-8bf91246de26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9832" + ], + "x-ms-request-id": [ + "2717f0e1-b3bc-400e-ae8b-17fdd6044d18" + ], + "x-ms-correlation-request-id": [ + "2717f0e1-b3bc-400e-ae8b-17fdd6044d18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:2717f0e1-b3bc-400e-ae8b-17fdd6044d18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dfee700-66d5-4be5-8005-699264d6c590" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9831" + ], + "x-ms-request-id": [ + "a0acf47b-96e5-4979-b1b8-5e64bb092ba9" + ], + "x-ms-correlation-request-id": [ + "a0acf47b-96e5-4979-b1b8-5e64bb092ba9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:a0acf47b-96e5-4979-b1b8-5e64bb092ba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8c76e50-b7a6-45b7-a072-a08967fb12fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9830" + ], + "x-ms-request-id": [ + "c043cc9b-cc28-4568-ae5d-4a59933d0dd0" + ], + "x-ms-correlation-request-id": [ + "c043cc9b-cc28-4568-ae5d-4a59933d0dd0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:c043cc9b-cc28-4568-ae5d-4a59933d0dd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7ec9f1c-12f1-44a0-9489-16987532307d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9829" + ], + "x-ms-request-id": [ + "910972f7-5137-41c9-b640-52ada49acebc" + ], + "x-ms-correlation-request-id": [ + "910972f7-5137-41c9-b640-52ada49acebc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:910972f7-5137-41c9-b640-52ada49acebc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7680e2cc-abe9-411f-88db-114f7051a07c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9828" + ], + "x-ms-request-id": [ + "992ba237-69ec-4b4c-8720-89b368cf12a7" + ], + "x-ms-correlation-request-id": [ + "992ba237-69ec-4b4c-8720-89b368cf12a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:992ba237-69ec-4b4c-8720-89b368cf12a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "755b6ec2-d08d-49d9-969b-bcd6c0891d01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9827" + ], + "x-ms-request-id": [ + "24fd0a12-bff1-477e-aed3-3c4a1882f5b2" + ], + "x-ms-correlation-request-id": [ + "24fd0a12-bff1-477e-aed3-3c4a1882f5b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021253Z:24fd0a12-bff1-477e-aed3-3c4a1882f5b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb8ee4ed-3ba5-4b5d-8f29-228309753464" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9826" + ], + "x-ms-request-id": [ + "d109339f-d364-4cb5-9d0e-453cfa342943" + ], + "x-ms-correlation-request-id": [ + "d109339f-d364-4cb5-9d0e-453cfa342943" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:d109339f-d364-4cb5-9d0e-453cfa342943" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10ba495c-8c27-4d9d-bc93-7f11e77af940" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9825" + ], + "x-ms-request-id": [ + "60d9c8bc-9e69-4997-9a17-ea6bf922b563" + ], + "x-ms-correlation-request-id": [ + "60d9c8bc-9e69-4997-9a17-ea6bf922b563" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:60d9c8bc-9e69-4997-9a17-ea6bf922b563" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd3164b-314c-495b-b79a-e6ecf13e8b22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9824" + ], + "x-ms-request-id": [ + "211a567a-1887-4931-bbf4-17c4872cd7c5" + ], + "x-ms-correlation-request-id": [ + "211a567a-1887-4931-bbf4-17c4872cd7c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:211a567a-1887-4931-bbf4-17c4872cd7c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0309976a-59d5-4233-850d-58c3d3256cb8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9823" + ], + "x-ms-request-id": [ + "9262db0b-3bc7-4276-b350-5b2713d078c5" + ], + "x-ms-correlation-request-id": [ + "9262db0b-3bc7-4276-b350-5b2713d078c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:9262db0b-3bc7-4276-b350-5b2713d078c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a06b747-6d97-408f-8431-e9e9856f9577" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9822" + ], + "x-ms-request-id": [ + "1eb5d403-1cd7-4c7b-8d36-4566ca71d9b3" + ], + "x-ms-correlation-request-id": [ + "1eb5d403-1cd7-4c7b-8d36-4566ca71d9b3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:1eb5d403-1cd7-4c7b-8d36-4566ca71d9b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d879e51-438a-49c1-a5c1-9ff1d9bcec4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9821" + ], + "x-ms-request-id": [ + "8a663856-338b-463e-9c12-09f53fa5e888" + ], + "x-ms-correlation-request-id": [ + "8a663856-338b-463e-9c12-09f53fa5e888" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021254Z:8a663856-338b-463e-9c12-09f53fa5e888" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af0a0eea-ee79-437e-bdef-3388f28613b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9820" + ], + "x-ms-request-id": [ + "d4b69a14-c9c5-4a81-8e52-b484da947363" + ], + "x-ms-correlation-request-id": [ + "d4b69a14-c9c5-4a81-8e52-b484da947363" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021255Z:d4b69a14-c9c5-4a81-8e52-b484da947363" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e8ca9ae-2315-4f34-b01c-b1a6a486fd1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9819" + ], + "x-ms-request-id": [ + "100eab22-eadd-41e3-b986-5ff946fcb346" + ], + "x-ms-correlation-request-id": [ + "100eab22-eadd-41e3-b986-5ff946fcb346" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021255Z:100eab22-eadd-41e3-b986-5ff946fcb346" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c579ca92-fdc5-4ee4-9ecb-589bc3ed690b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9818" + ], + "x-ms-request-id": [ + "14d6271e-bab6-4405-a90e-fb4c46d1ebc2" + ], + "x-ms-correlation-request-id": [ + "14d6271e-bab6-4405-a90e-fb4c46d1ebc2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021255Z:14d6271e-bab6-4405-a90e-fb4c46d1ebc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c482ed7f-2d2d-4d96-b892-009a06217926" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9817" + ], + "x-ms-request-id": [ + "d038ba68-c063-46d3-b925-684073006fe2" + ], + "x-ms-correlation-request-id": [ + "d038ba68-c063-46d3-b925-684073006fe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021255Z:d038ba68-c063-46d3-b925-684073006fe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "320b2fae-255d-478e-a643-3b487f5435bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9816" + ], + "x-ms-request-id": [ + "8aa8ac82-f062-44f5-a945-3988350546b0" + ], + "x-ms-correlation-request-id": [ + "8aa8ac82-f062-44f5-a945-3988350546b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:8aa8ac82-f062-44f5-a945-3988350546b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b345cbd5-223a-4614-b513-cb31bb1ee7f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9815" + ], + "x-ms-request-id": [ + "8bd50df2-e4d4-4877-b86f-7076839a307d" + ], + "x-ms-correlation-request-id": [ + "8bd50df2-e4d4-4877-b86f-7076839a307d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:8bd50df2-e4d4-4877-b86f-7076839a307d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4b74f8c-2e48-497e-893c-b5b32f77a894" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9814" + ], + "x-ms-request-id": [ + "fd6293a9-b23f-4dd7-896d-4e3c2ce6aaff" + ], + "x-ms-correlation-request-id": [ + "fd6293a9-b23f-4dd7-896d-4e3c2ce6aaff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:fd6293a9-b23f-4dd7-896d-4e3c2ce6aaff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da99dd09-2b47-42bb-be33-75ce240147f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9813" + ], + "x-ms-request-id": [ + "1f4702ed-bef4-4395-b4ae-ee351aab0755" + ], + "x-ms-correlation-request-id": [ + "1f4702ed-bef4-4395-b4ae-ee351aab0755" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:1f4702ed-bef4-4395-b4ae-ee351aab0755" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60fb5324-ba3b-4368-82be-1dfce4690d1d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9812" + ], + "x-ms-request-id": [ + "0a79dc83-d640-417d-9645-54d7020fe6e3" + ], + "x-ms-correlation-request-id": [ + "0a79dc83-d640-417d-9645-54d7020fe6e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:0a79dc83-d640-417d-9645-54d7020fe6e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23c24565-7bb0-4955-86c4-953461ac31d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9811" + ], + "x-ms-request-id": [ + "79f6acd0-3612-456c-9e4d-1dfb9c8cba05" + ], + "x-ms-correlation-request-id": [ + "79f6acd0-3612-456c-9e4d-1dfb9c8cba05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021256Z:79f6acd0-3612-456c-9e4d-1dfb9c8cba05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae5c0b30-bea5-43ca-b2e3-2b6fd137c923" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9810" + ], + "x-ms-request-id": [ + "5d3561e9-9f19-4131-be10-b5557af1e4cb" + ], + "x-ms-correlation-request-id": [ + "5d3561e9-9f19-4131-be10-b5557af1e4cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021257Z:5d3561e9-9f19-4131-be10-b5557af1e4cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa372487-368d-44b2-895a-794aa996939d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9809" + ], + "x-ms-request-id": [ + "762509bd-5370-4e9d-9ea8-a438ac1b65e8" + ], + "x-ms-correlation-request-id": [ + "762509bd-5370-4e9d-9ea8-a438ac1b65e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021257Z:762509bd-5370-4e9d-9ea8-a438ac1b65e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37653d98-1b58-412e-a219-00797e676a7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9808" + ], + "x-ms-request-id": [ + "a99128a1-3dfc-4f2e-89f8-399b2eff751d" + ], + "x-ms-correlation-request-id": [ + "a99128a1-3dfc-4f2e-89f8-399b2eff751d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021257Z:a99128a1-3dfc-4f2e-89f8-399b2eff751d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7f20a79-9259-4276-bf65-6768cc58d3be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9807" + ], + "x-ms-request-id": [ + "7b9bbbdb-bdae-426e-b13d-531ef5bf7580" + ], + "x-ms-correlation-request-id": [ + "7b9bbbdb-bdae-426e-b13d-531ef5bf7580" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021257Z:7b9bbbdb-bdae-426e-b13d-531ef5bf7580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87685153-97bc-4359-8676-5c7274996bb7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9806" + ], + "x-ms-request-id": [ + "e3c769b6-cb1d-47ff-9995-cb01e1896d55" + ], + "x-ms-correlation-request-id": [ + "e3c769b6-cb1d-47ff-9995-cb01e1896d55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021257Z:e3c769b6-cb1d-47ff-9995-cb01e1896d55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08b7af52-f86c-42e5-8e4e-baac4537fa15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9805" + ], + "x-ms-request-id": [ + "e8b67b84-dec7-4ca7-9121-30e948d41618" + ], + "x-ms-correlation-request-id": [ + "e8b67b84-dec7-4ca7-9121-30e948d41618" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:e8b67b84-dec7-4ca7-9121-30e948d41618" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29300cca-187a-4803-94c3-11435ac82c06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9804" + ], + "x-ms-request-id": [ + "381253c6-4d49-4ca0-af0b-476764f17734" + ], + "x-ms-correlation-request-id": [ + "381253c6-4d49-4ca0-af0b-476764f17734" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:381253c6-4d49-4ca0-af0b-476764f17734" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4edb492-e105-47e2-ba98-dc2dc3807ce5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9803" + ], + "x-ms-request-id": [ + "b8cc4c98-91cc-44a2-8e50-75c56648aeec" + ], + "x-ms-correlation-request-id": [ + "b8cc4c98-91cc-44a2-8e50-75c56648aeec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:b8cc4c98-91cc-44a2-8e50-75c56648aeec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9172b8ec-f80e-431f-b8c0-dbd40d77cfc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9802" + ], + "x-ms-request-id": [ + "b2ca66de-bc10-46d8-b9a4-b1dd9bb4800e" + ], + "x-ms-correlation-request-id": [ + "b2ca66de-bc10-46d8-b9a4-b1dd9bb4800e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:b2ca66de-bc10-46d8-b9a4-b1dd9bb4800e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cd872de-cd27-4eae-aa00-ad8a3ea9faa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9801" + ], + "x-ms-request-id": [ + "3d4bdd3c-1b08-4896-b816-13ac7d823a96" + ], + "x-ms-correlation-request-id": [ + "3d4bdd3c-1b08-4896-b816-13ac7d823a96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:3d4bdd3c-1b08-4896-b816-13ac7d823a96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d8f4f3f-fba5-48ea-a5f4-73f56fe957f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9800" + ], + "x-ms-request-id": [ + "35a5d2c4-4115-46ea-af8e-a3813e71c2d1" + ], + "x-ms-correlation-request-id": [ + "35a5d2c4-4115-46ea-af8e-a3813e71c2d1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021258Z:35a5d2c4-4115-46ea-af8e-a3813e71c2d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2443b5b6-e06b-48d7-9341-bf0085b39701" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9799" + ], + "x-ms-request-id": [ + "a7646161-c274-49d3-977a-ed0862447844" + ], + "x-ms-correlation-request-id": [ + "a7646161-c274-49d3-977a-ed0862447844" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021259Z:a7646161-c274-49d3-977a-ed0862447844" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee1c2abb-06b7-4d68-a2b8-d3776db4e314" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9798" + ], + "x-ms-request-id": [ + "f829eb38-7549-4be5-a822-bfa80d8aab4f" + ], + "x-ms-correlation-request-id": [ + "f829eb38-7549-4be5-a822-bfa80d8aab4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021259Z:f829eb38-7549-4be5-a822-bfa80d8aab4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4d75964-5097-45f8-aa65-fc357e63bf50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9797" + ], + "x-ms-request-id": [ + "d40fc322-2715-42d2-8182-cc382e376e3d" + ], + "x-ms-correlation-request-id": [ + "d40fc322-2715-42d2-8182-cc382e376e3d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021259Z:d40fc322-2715-42d2-8182-cc382e376e3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "434ca3cf-f487-4f9f-8e26-fc491ad1681e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9796" + ], + "x-ms-request-id": [ + "8be5ebce-5e90-41c0-aa01-239abe0151e4" + ], + "x-ms-correlation-request-id": [ + "8be5ebce-5e90-41c0-aa01-239abe0151e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021259Z:8be5ebce-5e90-41c0-aa01-239abe0151e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ade5f7f0-4935-46fd-972a-6343c34757bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9795" + ], + "x-ms-request-id": [ + "ce5c7f2b-eb63-4211-b48a-afa9a6325b19" + ], + "x-ms-correlation-request-id": [ + "ce5c7f2b-eb63-4211-b48a-afa9a6325b19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021259Z:ce5c7f2b-eb63-4211-b48a-afa9a6325b19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ed2497d-c558-46f4-8149-6ccda662d5d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9794" + ], + "x-ms-request-id": [ + "463834cc-324c-4eb4-894e-c3b150cfb07f" + ], + "x-ms-correlation-request-id": [ + "463834cc-324c-4eb4-894e-c3b150cfb07f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:463834cc-324c-4eb4-894e-c3b150cfb07f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:12: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7c04b0b-172e-454f-bea3-d9d208771667" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9793" + ], + "x-ms-request-id": [ + "a5daff32-2490-4924-93f5-5bcbc6cb0604" + ], + "x-ms-correlation-request-id": [ + "a5daff32-2490-4924-93f5-5bcbc6cb0604" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:a5daff32-2490-4924-93f5-5bcbc6cb0604" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6be01781-fe1b-45bd-a694-66cb522fc0d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9792" + ], + "x-ms-request-id": [ + "c951494e-862c-4826-bed5-3e286e75e052" + ], + "x-ms-correlation-request-id": [ + "c951494e-862c-4826-bed5-3e286e75e052" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:c951494e-862c-4826-bed5-3e286e75e052" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28a56762-79da-491a-a909-5bd5f15410d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9791" + ], + "x-ms-request-id": [ + "fa312bfb-fbee-4156-a3cf-de5649343812" + ], + "x-ms-correlation-request-id": [ + "fa312bfb-fbee-4156-a3cf-de5649343812" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:fa312bfb-fbee-4156-a3cf-de5649343812" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "388d7702-997c-4d12-943c-4c09a8e9817c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9790" + ], + "x-ms-request-id": [ + "0bf98b71-9ab8-447d-a330-fcd25e7ecf46" + ], + "x-ms-correlation-request-id": [ + "0bf98b71-9ab8-447d-a330-fcd25e7ecf46" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:0bf98b71-9ab8-447d-a330-fcd25e7ecf46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44576671-45db-4fdf-b78c-650619b52909" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9789" + ], + "x-ms-request-id": [ + "fc427d53-8972-4605-acd7-0c21df37509f" + ], + "x-ms-correlation-request-id": [ + "fc427d53-8972-4605-acd7-0c21df37509f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021300Z:fc427d53-8972-4605-acd7-0c21df37509f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a82ed560-8239-4bfb-aa3c-ec9854a510e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9788" + ], + "x-ms-request-id": [ + "d963e886-a294-4807-a8af-49316df1c637" + ], + "x-ms-correlation-request-id": [ + "d963e886-a294-4807-a8af-49316df1c637" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:d963e886-a294-4807-a8af-49316df1c637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "531b14b1-c708-4ec3-9c2a-bdb74664ed52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9787" + ], + "x-ms-request-id": [ + "d8e2dce7-3baf-4961-b816-df9c77f53262" + ], + "x-ms-correlation-request-id": [ + "d8e2dce7-3baf-4961-b816-df9c77f53262" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:d8e2dce7-3baf-4961-b816-df9c77f53262" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ff0631a-f593-4c99-9ec6-90f98022b4ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9786" + ], + "x-ms-request-id": [ + "cb04c2d4-f385-4cd4-b74d-80380b45c29b" + ], + "x-ms-correlation-request-id": [ + "cb04c2d4-f385-4cd4-b74d-80380b45c29b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:cb04c2d4-f385-4cd4-b74d-80380b45c29b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de4191c3-3720-42e3-9e77-2ef684aa1691" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9785" + ], + "x-ms-request-id": [ + "188d6cdd-7541-4fb4-98da-989355dc4961" + ], + "x-ms-correlation-request-id": [ + "188d6cdd-7541-4fb4-98da-989355dc4961" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:188d6cdd-7541-4fb4-98da-989355dc4961" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85bc1d1a-9f1d-4045-95bb-69f78d29618b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9784" + ], + "x-ms-request-id": [ + "723cb0d4-11c5-44a7-9d21-62bcfcd49891" + ], + "x-ms-correlation-request-id": [ + "723cb0d4-11c5-44a7-9d21-62bcfcd49891" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:723cb0d4-11c5-44a7-9d21-62bcfcd49891" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c00e2e0-c78b-43ff-9390-afbc7fa82d6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9783" + ], + "x-ms-request-id": [ + "480abcb6-a7b1-4ef2-af4b-de1e84c8fc0b" + ], + "x-ms-correlation-request-id": [ + "480abcb6-a7b1-4ef2-af4b-de1e84c8fc0b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021301Z:480abcb6-a7b1-4ef2-af4b-de1e84c8fc0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35a9d459-780d-4dce-b1dd-f2d2d136f780" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9782" + ], + "x-ms-request-id": [ + "c1bcb195-b70a-481e-b8ab-df6bc04f6a71" + ], + "x-ms-correlation-request-id": [ + "c1bcb195-b70a-481e-b8ab-df6bc04f6a71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:c1bcb195-b70a-481e-b8ab-df6bc04f6a71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac2796c3-1bd2-4884-8922-7df5ef5d3453" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9781" + ], + "x-ms-request-id": [ + "d7a14a23-b2b0-4c16-acec-9577496f5fab" + ], + "x-ms-correlation-request-id": [ + "d7a14a23-b2b0-4c16-acec-9577496f5fab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:d7a14a23-b2b0-4c16-acec-9577496f5fab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04c8c486-f53d-48cc-92ad-4ee1204c5c34" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9780" + ], + "x-ms-request-id": [ + "f3b3aef5-8c8a-4422-9e65-2ae6a6fe8792" + ], + "x-ms-correlation-request-id": [ + "f3b3aef5-8c8a-4422-9e65-2ae6a6fe8792" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:f3b3aef5-8c8a-4422-9e65-2ae6a6fe8792" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8fa8de3-4a91-4d40-aa6a-fcededda9dd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9779" + ], + "x-ms-request-id": [ + "e3730c91-3f3e-4237-a68d-edc2ead8dc1b" + ], + "x-ms-correlation-request-id": [ + "e3730c91-3f3e-4237-a68d-edc2ead8dc1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:e3730c91-3f3e-4237-a68d-edc2ead8dc1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b2852b9-0907-4a55-9772-bfa78154a328" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9778" + ], + "x-ms-request-id": [ + "e99701cb-9cfd-42ab-b973-f075524b8da0" + ], + "x-ms-correlation-request-id": [ + "e99701cb-9cfd-42ab-b973-f075524b8da0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:e99701cb-9cfd-42ab-b973-f075524b8da0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba593474-9f90-4f8d-ba8e-9d22abc066c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9777" + ], + "x-ms-request-id": [ + "0c5d6617-30df-460c-b23a-6b6e3ee12c6f" + ], + "x-ms-correlation-request-id": [ + "0c5d6617-30df-460c-b23a-6b6e3ee12c6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021302Z:0c5d6617-30df-460c-b23a-6b6e3ee12c6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16550e52-6a05-44cd-ab4d-372077d5b061" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9776" + ], + "x-ms-request-id": [ + "39ce37be-fb6b-4cfd-ac59-653b546d2e9a" + ], + "x-ms-correlation-request-id": [ + "39ce37be-fb6b-4cfd-ac59-653b546d2e9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:39ce37be-fb6b-4cfd-ac59-653b546d2e9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a62bc24b-3235-4318-8302-0579377ed9ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9775" + ], + "x-ms-request-id": [ + "b8850042-0888-40bc-8ee6-d848eeb41b4d" + ], + "x-ms-correlation-request-id": [ + "b8850042-0888-40bc-8ee6-d848eeb41b4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:b8850042-0888-40bc-8ee6-d848eeb41b4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34478623-b0f9-4187-a176-53f02a583489" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9774" + ], + "x-ms-request-id": [ + "ae95bb0c-8b7a-4652-bfce-7883aaf20007" + ], + "x-ms-correlation-request-id": [ + "ae95bb0c-8b7a-4652-bfce-7883aaf20007" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:ae95bb0c-8b7a-4652-bfce-7883aaf20007" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe3522c-332f-49c9-84d8-b14b949ea784" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9773" + ], + "x-ms-request-id": [ + "b8718a76-4df6-4d41-aeec-5acc47c9768f" + ], + "x-ms-correlation-request-id": [ + "b8718a76-4df6-4d41-aeec-5acc47c9768f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:b8718a76-4df6-4d41-aeec-5acc47c9768f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af4f36cb-6826-4360-9aac-7dec3d4fe7e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9772" + ], + "x-ms-request-id": [ + "5d7bf5e5-b7de-4ef0-acc8-3318389cad6e" + ], + "x-ms-correlation-request-id": [ + "5d7bf5e5-b7de-4ef0-acc8-3318389cad6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:5d7bf5e5-b7de-4ef0-acc8-3318389cad6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85ad27c0-a7a4-4aa7-926f-5185c4ebc0c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9771" + ], + "x-ms-request-id": [ + "cbce0641-b76b-4111-896b-d0abc3093012" + ], + "x-ms-correlation-request-id": [ + "cbce0641-b76b-4111-896b-d0abc3093012" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021303Z:cbce0641-b76b-4111-896b-d0abc3093012" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59053e3a-70bd-42af-b615-84caa0049411" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9770" + ], + "x-ms-request-id": [ + "41f3955c-7178-447e-97bf-71db231f137b" + ], + "x-ms-correlation-request-id": [ + "41f3955c-7178-447e-97bf-71db231f137b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021304Z:41f3955c-7178-447e-97bf-71db231f137b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17bc0f7f-ab7a-446e-85e9-bec39355967b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9769" + ], + "x-ms-request-id": [ + "733de68b-bcf8-441a-8137-b91aae84aba9" + ], + "x-ms-correlation-request-id": [ + "733de68b-bcf8-441a-8137-b91aae84aba9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021304Z:733de68b-bcf8-441a-8137-b91aae84aba9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b1ae886-2992-4133-9712-da205835f811" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9768" + ], + "x-ms-request-id": [ + "a5c4d731-49e0-493b-a3d4-030e9e9b2013" + ], + "x-ms-correlation-request-id": [ + "a5c4d731-49e0-493b-a3d4-030e9e9b2013" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021304Z:a5c4d731-49e0-493b-a3d4-030e9e9b2013" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f5f9979-98df-45b4-ac15-c591a222a216" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9767" + ], + "x-ms-request-id": [ + "46b5121c-0143-4493-bc61-33d4344b309c" + ], + "x-ms-correlation-request-id": [ + "46b5121c-0143-4493-bc61-33d4344b309c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021304Z:46b5121c-0143-4493-bc61-33d4344b309c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed0cdab2-237e-4514-a08b-b0f19e856e8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9766" + ], + "x-ms-request-id": [ + "2603e36f-f098-4822-bec1-5526927f8261" + ], + "x-ms-correlation-request-id": [ + "2603e36f-f098-4822-bec1-5526927f8261" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021304Z:2603e36f-f098-4822-bec1-5526927f8261" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4c36b62-aeae-4df1-ba7a-90498f475925" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9765" + ], + "x-ms-request-id": [ + "81c16aab-880d-42ae-a95b-2f9c2641d09f" + ], + "x-ms-correlation-request-id": [ + "81c16aab-880d-42ae-a95b-2f9c2641d09f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:81c16aab-880d-42ae-a95b-2f9c2641d09f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b8e52bc-6c6b-4613-93e5-877300a6716b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9764" + ], + "x-ms-request-id": [ + "71ded10d-c788-4ed9-ad10-a17222e6c9f4" + ], + "x-ms-correlation-request-id": [ + "71ded10d-c788-4ed9-ad10-a17222e6c9f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:71ded10d-c788-4ed9-ad10-a17222e6c9f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2020d405-1f10-48d5-ae2d-3aa48d13616a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9763" + ], + "x-ms-request-id": [ + "f03d4bb1-ea05-4416-9ce1-5ca9b4f83874" + ], + "x-ms-correlation-request-id": [ + "f03d4bb1-ea05-4416-9ce1-5ca9b4f83874" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:f03d4bb1-ea05-4416-9ce1-5ca9b4f83874" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8aa2b9b7-5144-4c42-9059-bd497b928f14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9762" + ], + "x-ms-request-id": [ + "c08b0b5e-6430-40e5-83c0-a8b11ff67bd3" + ], + "x-ms-correlation-request-id": [ + "c08b0b5e-6430-40e5-83c0-a8b11ff67bd3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:c08b0b5e-6430-40e5-83c0-a8b11ff67bd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64a50900-3e2e-4872-83e6-ca0790f1f38a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9761" + ], + "x-ms-request-id": [ + "180e9229-45aa-4a33-a30a-43dae5a6e901" + ], + "x-ms-correlation-request-id": [ + "180e9229-45aa-4a33-a30a-43dae5a6e901" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:180e9229-45aa-4a33-a30a-43dae5a6e901" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d57dcab3-29af-480e-a803-c3c99d3c629e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9760" + ], + "x-ms-request-id": [ + "432a5927-9729-446f-856f-04250e1e3396" + ], + "x-ms-correlation-request-id": [ + "432a5927-9729-446f-856f-04250e1e3396" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021305Z:432a5927-9729-446f-856f-04250e1e3396" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3cb23bc-d525-4454-a552-add1bd8289c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9759" + ], + "x-ms-request-id": [ + "b9e7ef46-5625-4cd0-82e3-0bd89765df9b" + ], + "x-ms-correlation-request-id": [ + "b9e7ef46-5625-4cd0-82e3-0bd89765df9b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:b9e7ef46-5625-4cd0-82e3-0bd89765df9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbd0b216-1aa8-45da-9522-2cb66821bdf1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9758" + ], + "x-ms-request-id": [ + "58b59cb2-61a3-4d92-b3e2-f4f5e3a6ee88" + ], + "x-ms-correlation-request-id": [ + "58b59cb2-61a3-4d92-b3e2-f4f5e3a6ee88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:58b59cb2-61a3-4d92-b3e2-f4f5e3a6ee88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12bd6282-4cfc-4c84-83c7-9cb2614b42bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9757" + ], + "x-ms-request-id": [ + "cf98b8b4-037d-414e-beb6-bd6c289251e8" + ], + "x-ms-correlation-request-id": [ + "cf98b8b4-037d-414e-beb6-bd6c289251e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:cf98b8b4-037d-414e-beb6-bd6c289251e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae91fa2c-720e-453a-a07e-f41764021aca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9756" + ], + "x-ms-request-id": [ + "64138e80-b92c-421d-89d8-21e02373e944" + ], + "x-ms-correlation-request-id": [ + "64138e80-b92c-421d-89d8-21e02373e944" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:64138e80-b92c-421d-89d8-21e02373e944" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1062280d-3efe-4f03-a479-eeb364573927" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9755" + ], + "x-ms-request-id": [ + "c205de4e-beb6-4835-91e3-baca1f2fd4e1" + ], + "x-ms-correlation-request-id": [ + "c205de4e-beb6-4835-91e3-baca1f2fd4e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:c205de4e-beb6-4835-91e3-baca1f2fd4e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a133711c-b9e9-4beb-bf27-2a6a71808718" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9754" + ], + "x-ms-request-id": [ + "6274904c-68a2-4cb6-8293-532a5da03b6a" + ], + "x-ms-correlation-request-id": [ + "6274904c-68a2-4cb6-8293-532a5da03b6a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021306Z:6274904c-68a2-4cb6-8293-532a5da03b6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5bf97f0-864b-4cf8-8a5e-56765d651e71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9753" + ], + "x-ms-request-id": [ + "68867465-d482-4b9b-b5eb-a0426b6f615e" + ], + "x-ms-correlation-request-id": [ + "68867465-d482-4b9b-b5eb-a0426b6f615e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021307Z:68867465-d482-4b9b-b5eb-a0426b6f615e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de35f34d-a138-40fc-8765-171a2f5b119b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9752" + ], + "x-ms-request-id": [ + "5461fd70-bbed-4252-9d4c-75e80d6d97eb" + ], + "x-ms-correlation-request-id": [ + "5461fd70-bbed-4252-9d4c-75e80d6d97eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021307Z:5461fd70-bbed-4252-9d4c-75e80d6d97eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e9925a7-415f-4dc2-8a15-da1198865942" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9751" + ], + "x-ms-request-id": [ + "6e061e7d-0596-4d1a-b3f0-56860e4e7a67" + ], + "x-ms-correlation-request-id": [ + "6e061e7d-0596-4d1a-b3f0-56860e4e7a67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021307Z:6e061e7d-0596-4d1a-b3f0-56860e4e7a67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "250e7270-b054-4664-9382-57da437f5560" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9750" + ], + "x-ms-request-id": [ + "32086ede-168b-4c83-8b1a-668cce96b2a6" + ], + "x-ms-correlation-request-id": [ + "32086ede-168b-4c83-8b1a-668cce96b2a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021307Z:32086ede-168b-4c83-8b1a-668cce96b2a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e08f9d11-38e3-41de-b22d-90e486143858" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9749" + ], + "x-ms-request-id": [ + "ee02472b-05d5-4979-b73d-61db153148ba" + ], + "x-ms-correlation-request-id": [ + "ee02472b-05d5-4979-b73d-61db153148ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021307Z:ee02472b-05d5-4979-b73d-61db153148ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea69d534-7f1e-4606-8753-1a86ee287fe9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9748" + ], + "x-ms-request-id": [ + "e8a34d4d-df8d-4e34-9d42-d1fe6290c3cc" + ], + "x-ms-correlation-request-id": [ + "e8a34d4d-df8d-4e34-9d42-d1fe6290c3cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:e8a34d4d-df8d-4e34-9d42-d1fe6290c3cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a445789f-4d3e-4f43-9478-fc966c8ca3e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9747" + ], + "x-ms-request-id": [ + "8e4926e8-b5d3-4a8c-be93-2fac61ce058c" + ], + "x-ms-correlation-request-id": [ + "8e4926e8-b5d3-4a8c-be93-2fac61ce058c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:8e4926e8-b5d3-4a8c-be93-2fac61ce058c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c30690a-44bb-4238-bdf1-4fa40da6dd09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9746" + ], + "x-ms-request-id": [ + "b86071c6-c878-4de4-9f34-6fe723b0bccd" + ], + "x-ms-correlation-request-id": [ + "b86071c6-c878-4de4-9f34-6fe723b0bccd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:b86071c6-c878-4de4-9f34-6fe723b0bccd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bab03e2a-5360-403d-ba3f-26cedb282b22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9745" + ], + "x-ms-request-id": [ + "aa801dd9-9b48-42e9-99af-b4550c64b022" + ], + "x-ms-correlation-request-id": [ + "aa801dd9-9b48-42e9-99af-b4550c64b022" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:aa801dd9-9b48-42e9-99af-b4550c64b022" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d322cc-87e0-4c8c-8a84-a6b05deec50b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9744" + ], + "x-ms-request-id": [ + "bf80366e-3858-4b10-a820-e1a013e93eb7" + ], + "x-ms-correlation-request-id": [ + "bf80366e-3858-4b10-a820-e1a013e93eb7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:bf80366e-3858-4b10-a820-e1a013e93eb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "656b4a40-b109-4774-879a-eaa0f17af9df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9743" + ], + "x-ms-request-id": [ + "ce66c69d-6006-4c6e-a4e6-1c9795aa7921" + ], + "x-ms-correlation-request-id": [ + "ce66c69d-6006-4c6e-a4e6-1c9795aa7921" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021308Z:ce66c69d-6006-4c6e-a4e6-1c9795aa7921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91fbbe0f-7ff5-4b41-8882-250f7d6d0d19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9742" + ], + "x-ms-request-id": [ + "388b3768-9655-471e-b62a-11bd20f62ac4" + ], + "x-ms-correlation-request-id": [ + "388b3768-9655-471e-b62a-11bd20f62ac4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:388b3768-9655-471e-b62a-11bd20f62ac4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b544763-c4e4-4aec-a6aa-dacd0bc99b51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9741" + ], + "x-ms-request-id": [ + "d81e3f2d-e89d-4814-ab21-f78db2004a01" + ], + "x-ms-correlation-request-id": [ + "d81e3f2d-e89d-4814-ab21-f78db2004a01" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:d81e3f2d-e89d-4814-ab21-f78db2004a01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb2e4ef7-4a26-41b5-9f66-2c2c8a569c16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9740" + ], + "x-ms-request-id": [ + "414d4f32-2408-44c8-9f89-f6f6ff58f24c" + ], + "x-ms-correlation-request-id": [ + "414d4f32-2408-44c8-9f89-f6f6ff58f24c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:414d4f32-2408-44c8-9f89-f6f6ff58f24c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6f2ada9-ecce-490c-b5a4-eb28ef0a2310" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9739" + ], + "x-ms-request-id": [ + "c8480462-12dc-43ce-ab0e-4167f3c0a036" + ], + "x-ms-correlation-request-id": [ + "c8480462-12dc-43ce-ab0e-4167f3c0a036" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:c8480462-12dc-43ce-ab0e-4167f3c0a036" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53dfc4c2-86ca-4f43-9f57-8619b34aef4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9738" + ], + "x-ms-request-id": [ + "2f96d419-1207-42c0-a180-08734889f1fe" + ], + "x-ms-correlation-request-id": [ + "2f96d419-1207-42c0-a180-08734889f1fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:2f96d419-1207-42c0-a180-08734889f1fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "553de0fe-29ae-4a9f-9170-6343cb95a7a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9737" + ], + "x-ms-request-id": [ + "e999ff75-def9-4206-8f4b-d2faf4d87ced" + ], + "x-ms-correlation-request-id": [ + "e999ff75-def9-4206-8f4b-d2faf4d87ced" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021309Z:e999ff75-def9-4206-8f4b-d2faf4d87ced" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ac7bb95-d864-4b33-b383-325d64f9c497" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9736" + ], + "x-ms-request-id": [ + "e3434693-a9a1-46ed-893d-f967ecdb17f7" + ], + "x-ms-correlation-request-id": [ + "e3434693-a9a1-46ed-893d-f967ecdb17f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:e3434693-a9a1-46ed-893d-f967ecdb17f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5913b4ee-a0b1-4827-be2b-f1af3b8321e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9735" + ], + "x-ms-request-id": [ + "b9f74b8e-04bb-426f-a630-985cd7d941bc" + ], + "x-ms-correlation-request-id": [ + "b9f74b8e-04bb-426f-a630-985cd7d941bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:b9f74b8e-04bb-426f-a630-985cd7d941bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91a7b0fa-83d8-4e5a-a24b-23b17d004fe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9734" + ], + "x-ms-request-id": [ + "fe02002b-fa73-4ebf-88a0-715c6af0a15e" + ], + "x-ms-correlation-request-id": [ + "fe02002b-fa73-4ebf-88a0-715c6af0a15e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:fe02002b-fa73-4ebf-88a0-715c6af0a15e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dec1faa-e579-4a42-85ae-42b497d9af6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9733" + ], + "x-ms-request-id": [ + "fdd33651-13c8-4cd0-92b4-73aae900986d" + ], + "x-ms-correlation-request-id": [ + "fdd33651-13c8-4cd0-92b4-73aae900986d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:fdd33651-13c8-4cd0-92b4-73aae900986d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9988d628-8c58-4f8c-be6c-25ce4cf0d2a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9732" + ], + "x-ms-request-id": [ + "0fccca01-82c7-4fe9-a288-279d2d485df6" + ], + "x-ms-correlation-request-id": [ + "0fccca01-82c7-4fe9-a288-279d2d485df6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:0fccca01-82c7-4fe9-a288-279d2d485df6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a859b6e-c374-4f3f-9f41-cf0eb59a47b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9731" + ], + "x-ms-request-id": [ + "54d818fe-6098-4fe8-bd0e-1ea0d9102f8c" + ], + "x-ms-correlation-request-id": [ + "54d818fe-6098-4fe8-bd0e-1ea0d9102f8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021310Z:54d818fe-6098-4fe8-bd0e-1ea0d9102f8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "117919fb-015a-4cd4-90bf-0a38ee1357e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9730" + ], + "x-ms-request-id": [ + "8d811321-5715-4393-bfd9-2c6f8037dab8" + ], + "x-ms-correlation-request-id": [ + "8d811321-5715-4393-bfd9-2c6f8037dab8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:8d811321-5715-4393-bfd9-2c6f8037dab8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "374e8362-dbaf-4eb3-957b-c318169f07fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9729" + ], + "x-ms-request-id": [ + "4885a124-56b5-4acb-a548-bcfb708c8809" + ], + "x-ms-correlation-request-id": [ + "4885a124-56b5-4acb-a548-bcfb708c8809" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:4885a124-56b5-4acb-a548-bcfb708c8809" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6b8a494-2e42-4b93-bef0-4547284730e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9728" + ], + "x-ms-request-id": [ + "97729331-f0b3-4354-bbca-9aef5ab7105a" + ], + "x-ms-correlation-request-id": [ + "97729331-f0b3-4354-bbca-9aef5ab7105a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:97729331-f0b3-4354-bbca-9aef5ab7105a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bfc021c-9c2b-4db4-ad4b-32210570692d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9727" + ], + "x-ms-request-id": [ + "a1cc66f2-10f6-4b90-8648-73fa1d06ddd0" + ], + "x-ms-correlation-request-id": [ + "a1cc66f2-10f6-4b90-8648-73fa1d06ddd0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:a1cc66f2-10f6-4b90-8648-73fa1d06ddd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97f7567f-fcbb-4c58-ba08-59f30f6df2eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9726" + ], + "x-ms-request-id": [ + "8c1c93f5-1972-4b38-a21f-4ef8c8bbc0b5" + ], + "x-ms-correlation-request-id": [ + "8c1c93f5-1972-4b38-a21f-4ef8c8bbc0b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:8c1c93f5-1972-4b38-a21f-4ef8c8bbc0b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b914d965-dde7-4309-b23a-0d125b3d4f2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9725" + ], + "x-ms-request-id": [ + "33bec64b-529e-4124-bcc5-acde2eca0179" + ], + "x-ms-correlation-request-id": [ + "33bec64b-529e-4124-bcc5-acde2eca0179" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021311Z:33bec64b-529e-4124-bcc5-acde2eca0179" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f8e82bc-db77-4a08-897a-8f8ca44f7a93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9724" + ], + "x-ms-request-id": [ + "76ccd963-d514-42a5-86f5-1abe6dc7cff9" + ], + "x-ms-correlation-request-id": [ + "76ccd963-d514-42a5-86f5-1abe6dc7cff9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:76ccd963-d514-42a5-86f5-1abe6dc7cff9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e3ca81f-8d26-460b-a8e4-0562653b94d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9723" + ], + "x-ms-request-id": [ + "cee488cd-db6b-4eb4-9cd2-c22eb02a4366" + ], + "x-ms-correlation-request-id": [ + "cee488cd-db6b-4eb4-9cd2-c22eb02a4366" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:cee488cd-db6b-4eb4-9cd2-c22eb02a4366" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c885ad1a-7594-4129-a398-63445de4a115" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9722" + ], + "x-ms-request-id": [ + "f90d146b-c8d1-415e-ab98-a5fb49bfa491" + ], + "x-ms-correlation-request-id": [ + "f90d146b-c8d1-415e-ab98-a5fb49bfa491" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:f90d146b-c8d1-415e-ab98-a5fb49bfa491" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d993744e-32df-4fd6-81b5-5d901a3367a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9721" + ], + "x-ms-request-id": [ + "973f1f0a-e4ba-4303-b6a7-a7d606c24184" + ], + "x-ms-correlation-request-id": [ + "973f1f0a-e4ba-4303-b6a7-a7d606c24184" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:973f1f0a-e4ba-4303-b6a7-a7d606c24184" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce147712-d26d-4d0e-8b64-73eb8eec809e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9720" + ], + "x-ms-request-id": [ + "5d9f209a-0320-4f0f-a130-33266de361ed" + ], + "x-ms-correlation-request-id": [ + "5d9f209a-0320-4f0f-a130-33266de361ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:5d9f209a-0320-4f0f-a130-33266de361ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "231471cb-63ed-4f2d-b531-9f833d6abab3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9719" + ], + "x-ms-request-id": [ + "7ff6419f-e7e5-4596-9be1-c249e4200a9a" + ], + "x-ms-correlation-request-id": [ + "7ff6419f-e7e5-4596-9be1-c249e4200a9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021312Z:7ff6419f-e7e5-4596-9be1-c249e4200a9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1535b75b-8f04-4f46-8510-108bb16f9515" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9718" + ], + "x-ms-request-id": [ + "bfdac2b6-4ea2-4ea1-acf0-c880428aa9c2" + ], + "x-ms-correlation-request-id": [ + "bfdac2b6-4ea2-4ea1-acf0-c880428aa9c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021313Z:bfdac2b6-4ea2-4ea1-acf0-c880428aa9c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8baff106-f907-4ec0-9514-6396223b1b49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9717" + ], + "x-ms-request-id": [ + "aa64b0b3-0e46-4806-8951-294a894a8a42" + ], + "x-ms-correlation-request-id": [ + "aa64b0b3-0e46-4806-8951-294a894a8a42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021313Z:aa64b0b3-0e46-4806-8951-294a894a8a42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8450100b-e39b-4bd7-932a-25dc9447bdab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9716" + ], + "x-ms-request-id": [ + "9d6f8dff-e2c8-4910-bb92-16df353df6af" + ], + "x-ms-correlation-request-id": [ + "9d6f8dff-e2c8-4910-bb92-16df353df6af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021313Z:9d6f8dff-e2c8-4910-bb92-16df353df6af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28e67cca-45b3-40ff-9f84-eba170b96136" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9715" + ], + "x-ms-request-id": [ + "8776f0f3-111f-4e99-b9ee-a5e933b8d907" + ], + "x-ms-correlation-request-id": [ + "8776f0f3-111f-4e99-b9ee-a5e933b8d907" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021313Z:8776f0f3-111f-4e99-b9ee-a5e933b8d907" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb6a885f-afbe-4883-bde8-15b6c55efa92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9714" + ], + "x-ms-request-id": [ + "3f9abc34-0c47-433e-a047-fb26d92dae19" + ], + "x-ms-correlation-request-id": [ + "3f9abc34-0c47-433e-a047-fb26d92dae19" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021313Z:3f9abc34-0c47-433e-a047-fb26d92dae19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b09e5f4-427c-414c-9f75-0ed2ec3b88f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9713" + ], + "x-ms-request-id": [ + "6fcbd301-44ef-4de2-b70b-8b076294681c" + ], + "x-ms-correlation-request-id": [ + "6fcbd301-44ef-4de2-b70b-8b076294681c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:6fcbd301-44ef-4de2-b70b-8b076294681c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "673572ae-5fba-4806-b51c-726f132cfcc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9712" + ], + "x-ms-request-id": [ + "e4c0f3d9-ac15-4619-b797-e92758a3ec34" + ], + "x-ms-correlation-request-id": [ + "e4c0f3d9-ac15-4619-b797-e92758a3ec34" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:e4c0f3d9-ac15-4619-b797-e92758a3ec34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38742add-2a64-4b7f-bad9-42cb20990ea6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9711" + ], + "x-ms-request-id": [ + "24b72991-ebfd-42a5-8e3c-0d7b6b2f83e6" + ], + "x-ms-correlation-request-id": [ + "24b72991-ebfd-42a5-8e3c-0d7b6b2f83e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:24b72991-ebfd-42a5-8e3c-0d7b6b2f83e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "428e1551-4234-470a-88a3-e7343f8b6bf2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9710" + ], + "x-ms-request-id": [ + "bb4c1f7a-9c8f-4d1e-9c10-052463c8b308" + ], + "x-ms-correlation-request-id": [ + "bb4c1f7a-9c8f-4d1e-9c10-052463c8b308" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:bb4c1f7a-9c8f-4d1e-9c10-052463c8b308" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5190901-a6ed-410c-8a33-91f28b3614c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9709" + ], + "x-ms-request-id": [ + "0a2d2e49-2c2c-4a13-909a-8f08e80b9867" + ], + "x-ms-correlation-request-id": [ + "0a2d2e49-2c2c-4a13-909a-8f08e80b9867" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:0a2d2e49-2c2c-4a13-909a-8f08e80b9867" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc403740-932a-4eeb-bbb7-652ead048147" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9708" + ], + "x-ms-request-id": [ + "1b9e4b21-64fc-456d-93b3-6e363ea35a96" + ], + "x-ms-correlation-request-id": [ + "1b9e4b21-64fc-456d-93b3-6e363ea35a96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021314Z:1b9e4b21-64fc-456d-93b3-6e363ea35a96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa32fc88-aa54-4719-a491-b82cd02c271b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9707" + ], + "x-ms-request-id": [ + "bc6d1e20-1b53-445f-88ab-4c1f225d1dad" + ], + "x-ms-correlation-request-id": [ + "bc6d1e20-1b53-445f-88ab-4c1f225d1dad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:bc6d1e20-1b53-445f-88ab-4c1f225d1dad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804f1d20-950b-4a7e-97d3-efd8f7ef9606" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9706" + ], + "x-ms-request-id": [ + "99fa71c6-92da-4760-b79e-bae85c174c5f" + ], + "x-ms-correlation-request-id": [ + "99fa71c6-92da-4760-b79e-bae85c174c5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:99fa71c6-92da-4760-b79e-bae85c174c5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57650e4e-718e-4296-98bf-9f81326d793d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9705" + ], + "x-ms-request-id": [ + "499049a4-abfd-4ebe-abb8-2f67cb7c1eb0" + ], + "x-ms-correlation-request-id": [ + "499049a4-abfd-4ebe-abb8-2f67cb7c1eb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:499049a4-abfd-4ebe-abb8-2f67cb7c1eb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51559612-72dd-4d12-a1d0-0a521fc2e18c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9704" + ], + "x-ms-request-id": [ + "967d0324-1bf4-4fc0-ac09-fc3256fabc49" + ], + "x-ms-correlation-request-id": [ + "967d0324-1bf4-4fc0-ac09-fc3256fabc49" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:967d0324-1bf4-4fc0-ac09-fc3256fabc49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "199f045b-6312-464a-854a-47cfe6a3b126" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9703" + ], + "x-ms-request-id": [ + "3108189c-c818-4ae9-9851-67d2713dd9d0" + ], + "x-ms-correlation-request-id": [ + "3108189c-c818-4ae9-9851-67d2713dd9d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:3108189c-c818-4ae9-9851-67d2713dd9d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "921277e7-54e5-4fde-af4e-32945ed37a05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9702" + ], + "x-ms-request-id": [ + "cc4b497b-dd64-4360-a994-6fd40e9483a1" + ], + "x-ms-correlation-request-id": [ + "cc4b497b-dd64-4360-a994-6fd40e9483a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021315Z:cc4b497b-dd64-4360-a994-6fd40e9483a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a28037e-8586-46cc-a79f-a1647f9904c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9701" + ], + "x-ms-request-id": [ + "fdffbe1b-42e9-4d72-8d79-ebfab601ef5d" + ], + "x-ms-correlation-request-id": [ + "fdffbe1b-42e9-4d72-8d79-ebfab601ef5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021316Z:fdffbe1b-42e9-4d72-8d79-ebfab601ef5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b2dc600-bf43-4b54-860c-ec5c94d87fa1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9700" + ], + "x-ms-request-id": [ + "d727cfd2-d48e-460c-a5ef-67675934a7ed" + ], + "x-ms-correlation-request-id": [ + "d727cfd2-d48e-460c-a5ef-67675934a7ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021316Z:d727cfd2-d48e-460c-a5ef-67675934a7ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f65baed-9527-4b84-989f-35fa11645fcd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9699" + ], + "x-ms-request-id": [ + "6986e722-dbe9-41aa-8d3c-e6e5e4f8170a" + ], + "x-ms-correlation-request-id": [ + "6986e722-dbe9-41aa-8d3c-e6e5e4f8170a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021316Z:6986e722-dbe9-41aa-8d3c-e6e5e4f8170a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd861b64-9bb5-4c5e-8844-813471f0742c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9698" + ], + "x-ms-request-id": [ + "72b32f25-0f54-41ea-80da-e93d82310d64" + ], + "x-ms-correlation-request-id": [ + "72b32f25-0f54-41ea-80da-e93d82310d64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021316Z:72b32f25-0f54-41ea-80da-e93d82310d64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "030754db-0c2b-4fd3-9e7e-b5827164ccd8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9697" + ], + "x-ms-request-id": [ + "773cc3ef-83c5-414f-ae5a-2c19f4312771" + ], + "x-ms-correlation-request-id": [ + "773cc3ef-83c5-414f-ae5a-2c19f4312771" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021316Z:773cc3ef-83c5-414f-ae5a-2c19f4312771" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19dfa6b7-b3c6-4e2c-b87f-0b25d1748c38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9696" + ], + "x-ms-request-id": [ + "bd2c4428-03ec-467d-a9cc-ea53c8c9ecf8" + ], + "x-ms-correlation-request-id": [ + "bd2c4428-03ec-467d-a9cc-ea53c8c9ecf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:bd2c4428-03ec-467d-a9cc-ea53c8c9ecf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21b1fa4a-b5ae-4405-a6c2-9b08c8323983" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9695" + ], + "x-ms-request-id": [ + "ad0b2e06-3006-44b3-a61e-eb1e8d5fcb00" + ], + "x-ms-correlation-request-id": [ + "ad0b2e06-3006-44b3-a61e-eb1e8d5fcb00" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:ad0b2e06-3006-44b3-a61e-eb1e8d5fcb00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a949855c-ae0a-4021-bb12-5ec23f583a4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9694" + ], + "x-ms-request-id": [ + "c0b09ec5-b221-480b-b5bb-23f873298296" + ], + "x-ms-correlation-request-id": [ + "c0b09ec5-b221-480b-b5bb-23f873298296" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:c0b09ec5-b221-480b-b5bb-23f873298296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "238296b3-8ef4-49c4-86d8-0556fad28b62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9693" + ], + "x-ms-request-id": [ + "4cabc21f-6e33-475b-a1ce-03a51369f041" + ], + "x-ms-correlation-request-id": [ + "4cabc21f-6e33-475b-a1ce-03a51369f041" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:4cabc21f-6e33-475b-a1ce-03a51369f041" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "479eb223-f9dc-407e-828c-acaeeaad7ddc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9692" + ], + "x-ms-request-id": [ + "6a69ec8e-377d-4fad-be91-afc94f0ddde4" + ], + "x-ms-correlation-request-id": [ + "6a69ec8e-377d-4fad-be91-afc94f0ddde4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:6a69ec8e-377d-4fad-be91-afc94f0ddde4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b07bc69-8417-4841-abf3-7b0c7b08eb51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9691" + ], + "x-ms-request-id": [ + "7e39d7a0-4831-4ed1-a77b-668e4794db31" + ], + "x-ms-correlation-request-id": [ + "7e39d7a0-4831-4ed1-a77b-668e4794db31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021317Z:7e39d7a0-4831-4ed1-a77b-668e4794db31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e748120b-0da0-44fc-ac37-88dd6063525c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9690" + ], + "x-ms-request-id": [ + "ecd32448-57fa-4812-aff0-0abad5b51709" + ], + "x-ms-correlation-request-id": [ + "ecd32448-57fa-4812-aff0-0abad5b51709" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:ecd32448-57fa-4812-aff0-0abad5b51709" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92de11a7-3bec-4c90-91bc-15f16ede8f3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9689" + ], + "x-ms-request-id": [ + "6b1f11de-5c03-4f74-a1ec-46b2eac77658" + ], + "x-ms-correlation-request-id": [ + "6b1f11de-5c03-4f74-a1ec-46b2eac77658" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:6b1f11de-5c03-4f74-a1ec-46b2eac77658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ce26a43-3791-473f-a83c-89d1adac1f85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9688" + ], + "x-ms-request-id": [ + "ec2c66d8-b89c-4a1f-a3b7-a0429f7939b6" + ], + "x-ms-correlation-request-id": [ + "ec2c66d8-b89c-4a1f-a3b7-a0429f7939b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:ec2c66d8-b89c-4a1f-a3b7-a0429f7939b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e94542a-0510-44f0-a384-3e0792054c9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9687" + ], + "x-ms-request-id": [ + "1295d840-fa7d-4c94-b2f2-ea795b01ee0a" + ], + "x-ms-correlation-request-id": [ + "1295d840-fa7d-4c94-b2f2-ea795b01ee0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:1295d840-fa7d-4c94-b2f2-ea795b01ee0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e7bfa7f-de27-4397-9f36-9d966cf62767" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9686" + ], + "x-ms-request-id": [ + "7eaf1f21-f23f-40e2-9d53-2e9d1f7f17cf" + ], + "x-ms-correlation-request-id": [ + "7eaf1f21-f23f-40e2-9d53-2e9d1f7f17cf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:7eaf1f21-f23f-40e2-9d53-2e9d1f7f17cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b7723a5-f46c-4a35-8b3c-6c41a9c940b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9685" + ], + "x-ms-request-id": [ + "51564979-6552-4fd5-8e66-65e58a0cdd85" + ], + "x-ms-correlation-request-id": [ + "51564979-6552-4fd5-8e66-65e58a0cdd85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021318Z:51564979-6552-4fd5-8e66-65e58a0cdd85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e55efaa-10ea-45fd-98bb-e054833b49d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9684" + ], + "x-ms-request-id": [ + "e5fd9cec-15c2-4fed-ab2e-3304031661ea" + ], + "x-ms-correlation-request-id": [ + "e5fd9cec-15c2-4fed-ab2e-3304031661ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021319Z:e5fd9cec-15c2-4fed-ab2e-3304031661ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4c9bc08-a058-4bd6-9738-b114f8c8edd8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9683" + ], + "x-ms-request-id": [ + "34c31ea4-4a0f-4d61-aeef-4f5a7efc4b10" + ], + "x-ms-correlation-request-id": [ + "34c31ea4-4a0f-4d61-aeef-4f5a7efc4b10" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021319Z:34c31ea4-4a0f-4d61-aeef-4f5a7efc4b10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65708d40-6f5a-43d7-ab19-10e067f13d76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9682" + ], + "x-ms-request-id": [ + "66075686-7956-4191-8a67-adc29a3486f8" + ], + "x-ms-correlation-request-id": [ + "66075686-7956-4191-8a67-adc29a3486f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021319Z:66075686-7956-4191-8a67-adc29a3486f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f4049ab-9ccc-4cef-857a-13fb7d2dcad9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9681" + ], + "x-ms-request-id": [ + "3ea88be4-7875-43df-9d5e-82ae03cb1aaa" + ], + "x-ms-correlation-request-id": [ + "3ea88be4-7875-43df-9d5e-82ae03cb1aaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021319Z:3ea88be4-7875-43df-9d5e-82ae03cb1aaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "215bc49b-e3dc-4bf8-9ac7-f3009fe244eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9680" + ], + "x-ms-request-id": [ + "58bf0756-717a-4e32-95d8-3cefe8a499ce" + ], + "x-ms-correlation-request-id": [ + "58bf0756-717a-4e32-95d8-3cefe8a499ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021319Z:58bf0756-717a-4e32-95d8-3cefe8a499ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ef30a77-1b59-457c-aa19-64d141e4070b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9679" + ], + "x-ms-request-id": [ + "31401017-3358-4f45-a7ec-1da2d73dbe37" + ], + "x-ms-correlation-request-id": [ + "31401017-3358-4f45-a7ec-1da2d73dbe37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:31401017-3358-4f45-a7ec-1da2d73dbe37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0b87112-24ba-4559-bb18-203db1b49e8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9678" + ], + "x-ms-request-id": [ + "670d9c0d-b176-4325-a8e2-42f016c8c737" + ], + "x-ms-correlation-request-id": [ + "670d9c0d-b176-4325-a8e2-42f016c8c737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:670d9c0d-b176-4325-a8e2-42f016c8c737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30c742d2-85b7-4592-961a-cbb924350e87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9677" + ], + "x-ms-request-id": [ + "35bcf259-923e-4de0-90ef-5caf0d3e34ca" + ], + "x-ms-correlation-request-id": [ + "35bcf259-923e-4de0-90ef-5caf0d3e34ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:35bcf259-923e-4de0-90ef-5caf0d3e34ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "827fa979-0e58-4c03-a105-4a8a9ee74d3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9676" + ], + "x-ms-request-id": [ + "2a682df9-9b66-4402-a295-e69898b3160a" + ], + "x-ms-correlation-request-id": [ + "2a682df9-9b66-4402-a295-e69898b3160a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:2a682df9-9b66-4402-a295-e69898b3160a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90597764-2c4a-4456-b737-dbdd1c35f898" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9675" + ], + "x-ms-request-id": [ + "f063e577-5841-469a-b5be-98d932eee253" + ], + "x-ms-correlation-request-id": [ + "f063e577-5841-469a-b5be-98d932eee253" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:f063e577-5841-469a-b5be-98d932eee253" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6beb92fb-8514-4af4-a7c1-77dcecd7c9e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9674" + ], + "x-ms-request-id": [ + "6cf5b78e-31a1-4d49-8a66-c761efad0e31" + ], + "x-ms-correlation-request-id": [ + "6cf5b78e-31a1-4d49-8a66-c761efad0e31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021320Z:6cf5b78e-31a1-4d49-8a66-c761efad0e31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2be3f74e-d5a4-4712-93fa-5e7d81d6061b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9673" + ], + "x-ms-request-id": [ + "591ec25a-f2b2-4fd4-91e8-1fb03c4a045d" + ], + "x-ms-correlation-request-id": [ + "591ec25a-f2b2-4fd4-91e8-1fb03c4a045d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:591ec25a-f2b2-4fd4-91e8-1fb03c4a045d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e56f8f3-b8b4-4550-975b-e0b9cdef3058" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9672" + ], + "x-ms-request-id": [ + "0cbe1f14-6a92-43e2-bcb3-bf1e29da601b" + ], + "x-ms-correlation-request-id": [ + "0cbe1f14-6a92-43e2-bcb3-bf1e29da601b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:0cbe1f14-6a92-43e2-bcb3-bf1e29da601b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "670f1d8a-34b0-403f-820e-ed6f63151c28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9671" + ], + "x-ms-request-id": [ + "3992bdb2-4e11-4215-bdbe-c42e3139ace4" + ], + "x-ms-correlation-request-id": [ + "3992bdb2-4e11-4215-bdbe-c42e3139ace4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:3992bdb2-4e11-4215-bdbe-c42e3139ace4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a66444b4-9572-4b84-bfe4-1729ffcad797" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9670" + ], + "x-ms-request-id": [ + "ae7caecd-4224-4e0f-be12-6530cfade58a" + ], + "x-ms-correlation-request-id": [ + "ae7caecd-4224-4e0f-be12-6530cfade58a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:ae7caecd-4224-4e0f-be12-6530cfade58a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6287a15c-46f4-430f-9784-740ce0577008" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9669" + ], + "x-ms-request-id": [ + "220c96c7-1cd2-43ca-92b5-6dbc6808d10a" + ], + "x-ms-correlation-request-id": [ + "220c96c7-1cd2-43ca-92b5-6dbc6808d10a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:220c96c7-1cd2-43ca-92b5-6dbc6808d10a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2eadde5-f2e9-4275-b277-3500beacfb56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9668" + ], + "x-ms-request-id": [ + "37741755-8f1f-4124-a1b1-a5ff05d2a80e" + ], + "x-ms-correlation-request-id": [ + "37741755-8f1f-4124-a1b1-a5ff05d2a80e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021321Z:37741755-8f1f-4124-a1b1-a5ff05d2a80e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3173a6d7-910d-477f-98c0-401966a6526c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9667" + ], + "x-ms-request-id": [ + "cf6784be-c199-4731-96b8-57091a74158f" + ], + "x-ms-correlation-request-id": [ + "cf6784be-c199-4731-96b8-57091a74158f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:cf6784be-c199-4731-96b8-57091a74158f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "536a8889-c26e-4f97-9838-ac32e2bf3572" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9666" + ], + "x-ms-request-id": [ + "77b3fc22-32de-4069-a1e2-86603e042618" + ], + "x-ms-correlation-request-id": [ + "77b3fc22-32de-4069-a1e2-86603e042618" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:77b3fc22-32de-4069-a1e2-86603e042618" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41eaa1db-a6c3-4c58-9752-7a6a5b732fe5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9665" + ], + "x-ms-request-id": [ + "ce8b33d2-92b0-4f1f-9dc2-0b8ba2162bb2" + ], + "x-ms-correlation-request-id": [ + "ce8b33d2-92b0-4f1f-9dc2-0b8ba2162bb2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:ce8b33d2-92b0-4f1f-9dc2-0b8ba2162bb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da684556-555f-4db5-90dc-d9b4bb3048b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9664" + ], + "x-ms-request-id": [ + "a2ef5ab5-182b-4a84-9d79-15afd8b0b515" + ], + "x-ms-correlation-request-id": [ + "a2ef5ab5-182b-4a84-9d79-15afd8b0b515" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:a2ef5ab5-182b-4a84-9d79-15afd8b0b515" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff2aa14b-7545-43e0-a025-c67eeff0b678" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9663" + ], + "x-ms-request-id": [ + "ffd528a6-0faf-48cc-9b23-1730144193c7" + ], + "x-ms-correlation-request-id": [ + "ffd528a6-0faf-48cc-9b23-1730144193c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:ffd528a6-0faf-48cc-9b23-1730144193c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69e6c78f-58f0-4534-9fac-86f7473973c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9662" + ], + "x-ms-request-id": [ + "58a1f1ed-5720-4cf1-bb26-1204172ab604" + ], + "x-ms-correlation-request-id": [ + "58a1f1ed-5720-4cf1-bb26-1204172ab604" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021322Z:58a1f1ed-5720-4cf1-bb26-1204172ab604" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f574358-a710-41d2-8388-d0b288f645c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9661" + ], + "x-ms-request-id": [ + "e59a0a98-be10-42e0-b513-9f6c05a10077" + ], + "x-ms-correlation-request-id": [ + "e59a0a98-be10-42e0-b513-9f6c05a10077" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:e59a0a98-be10-42e0-b513-9f6c05a10077" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66efaf26-56fd-4a61-9286-f60e29e2c8c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9660" + ], + "x-ms-request-id": [ + "313c5beb-6e3d-4adf-9acf-b86642a45d76" + ], + "x-ms-correlation-request-id": [ + "313c5beb-6e3d-4adf-9acf-b86642a45d76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:313c5beb-6e3d-4adf-9acf-b86642a45d76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "415cc255-8691-4f3c-8025-1bc47ff52073" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9659" + ], + "x-ms-request-id": [ + "1ae623cb-347f-4b6e-bb1c-cd6783c671ec" + ], + "x-ms-correlation-request-id": [ + "1ae623cb-347f-4b6e-bb1c-cd6783c671ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:1ae623cb-347f-4b6e-bb1c-cd6783c671ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c58da2e4-081e-4c5a-aee5-d8525874dddb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9658" + ], + "x-ms-request-id": [ + "501cafdb-a77a-4916-bcc8-053c79b63c24" + ], + "x-ms-correlation-request-id": [ + "501cafdb-a77a-4916-bcc8-053c79b63c24" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:501cafdb-a77a-4916-bcc8-053c79b63c24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73824951-1248-4345-b7f8-b23157ee5851" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9657" + ], + "x-ms-request-id": [ + "eabe7f77-1528-48db-8129-aa4853970d7c" + ], + "x-ms-correlation-request-id": [ + "eabe7f77-1528-48db-8129-aa4853970d7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:eabe7f77-1528-48db-8129-aa4853970d7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5c28222-1bff-44a3-8b5b-b62d6dba1179" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9656" + ], + "x-ms-request-id": [ + "febd6ad6-8bfb-406d-ae73-e7fb1354600c" + ], + "x-ms-correlation-request-id": [ + "febd6ad6-8bfb-406d-ae73-e7fb1354600c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021323Z:febd6ad6-8bfb-406d-ae73-e7fb1354600c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3e7b9f6-b775-434f-b1a0-b4f1ace4cc4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9655" + ], + "x-ms-request-id": [ + "b98b1708-55a9-4050-be51-ae8fd7f3657f" + ], + "x-ms-correlation-request-id": [ + "b98b1708-55a9-4050-be51-ae8fd7f3657f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:b98b1708-55a9-4050-be51-ae8fd7f3657f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac8d9164-5d0c-40a3-bdfa-2eb03df56429" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9654" + ], + "x-ms-request-id": [ + "39ef7d93-c543-4c65-a465-0cd928bb4fd9" + ], + "x-ms-correlation-request-id": [ + "39ef7d93-c543-4c65-a465-0cd928bb4fd9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:39ef7d93-c543-4c65-a465-0cd928bb4fd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d480e94-9f7c-46a3-b3c0-717e2c6a0c1a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9653" + ], + "x-ms-request-id": [ + "2443cd6e-7af0-43a7-9ae5-5c18bd6c676a" + ], + "x-ms-correlation-request-id": [ + "2443cd6e-7af0-43a7-9ae5-5c18bd6c676a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:2443cd6e-7af0-43a7-9ae5-5c18bd6c676a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84e3bb87-c677-4e23-8733-749712ee394c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9652" + ], + "x-ms-request-id": [ + "1a60adf1-0978-4b54-9ea9-334b9caf155a" + ], + "x-ms-correlation-request-id": [ + "1a60adf1-0978-4b54-9ea9-334b9caf155a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:1a60adf1-0978-4b54-9ea9-334b9caf155a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eabd11ff-33d1-46a1-a685-46e00329a190" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9651" + ], + "x-ms-request-id": [ + "470b76bc-0ca4-4b91-beb5-9e3a70d61ed7" + ], + "x-ms-correlation-request-id": [ + "470b76bc-0ca4-4b91-beb5-9e3a70d61ed7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:470b76bc-0ca4-4b91-beb5-9e3a70d61ed7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc3799f5-e65b-4cd9-b14f-6d7b2e25bfae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9650" + ], + "x-ms-request-id": [ + "a9c5b633-7eb0-42b8-ba3b-8046954723c4" + ], + "x-ms-correlation-request-id": [ + "a9c5b633-7eb0-42b8-ba3b-8046954723c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021324Z:a9c5b633-7eb0-42b8-ba3b-8046954723c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84f6012a-0e25-476f-8659-242267bca1ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9649" + ], + "x-ms-request-id": [ + "9a06f613-8312-413c-9f9d-0d4a6cea61e0" + ], + "x-ms-correlation-request-id": [ + "9a06f613-8312-413c-9f9d-0d4a6cea61e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:9a06f613-8312-413c-9f9d-0d4a6cea61e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "226841ca-470d-4970-aed7-81b71001deaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9648" + ], + "x-ms-request-id": [ + "37a88a2e-5289-4eb0-910f-99efd8706e44" + ], + "x-ms-correlation-request-id": [ + "37a88a2e-5289-4eb0-910f-99efd8706e44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:37a88a2e-5289-4eb0-910f-99efd8706e44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9205f049-704e-4901-9018-b934c2008b49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9647" + ], + "x-ms-request-id": [ + "850a4490-0b25-40c9-b59a-e36df87b94c4" + ], + "x-ms-correlation-request-id": [ + "850a4490-0b25-40c9-b59a-e36df87b94c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:850a4490-0b25-40c9-b59a-e36df87b94c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dd57d18-6723-42d0-befb-d48c517a56e6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9646" + ], + "x-ms-request-id": [ + "8d5e003c-24ef-4355-b0cf-c9554c0bf8d7" + ], + "x-ms-correlation-request-id": [ + "8d5e003c-24ef-4355-b0cf-c9554c0bf8d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:8d5e003c-24ef-4355-b0cf-c9554c0bf8d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fa6a207-f7b4-49cb-8dab-bf43c49d2736" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9645" + ], + "x-ms-request-id": [ + "0d319b4b-3747-4d2f-af94-0355306d2cb9" + ], + "x-ms-correlation-request-id": [ + "0d319b4b-3747-4d2f-af94-0355306d2cb9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:0d319b4b-3747-4d2f-af94-0355306d2cb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9663d10e-6711-4f22-9433-9c7ca93808e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9644" + ], + "x-ms-request-id": [ + "d267f640-2195-4308-bc64-3c9b993e8993" + ], + "x-ms-correlation-request-id": [ + "d267f640-2195-4308-bc64-3c9b993e8993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021325Z:d267f640-2195-4308-bc64-3c9b993e8993" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c358ae72-4e11-4e30-a5f2-52ec5e73b72d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9643" + ], + "x-ms-request-id": [ + "264b6894-88a2-4a90-a2ac-dfb890edfa40" + ], + "x-ms-correlation-request-id": [ + "264b6894-88a2-4a90-a2ac-dfb890edfa40" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:264b6894-88a2-4a90-a2ac-dfb890edfa40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12c804cb-8e63-4973-97d6-141f002ac224" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9642" + ], + "x-ms-request-id": [ + "c839f3c9-06ab-428e-b786-941fde53ab0d" + ], + "x-ms-correlation-request-id": [ + "c839f3c9-06ab-428e-b786-941fde53ab0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:c839f3c9-06ab-428e-b786-941fde53ab0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb465e40-9819-444b-8866-911545da6a83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9641" + ], + "x-ms-request-id": [ + "c6856dfd-4025-4f50-8974-99fb990284af" + ], + "x-ms-correlation-request-id": [ + "c6856dfd-4025-4f50-8974-99fb990284af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:c6856dfd-4025-4f50-8974-99fb990284af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e96cc7f-4756-4f60-884a-e4c14b9f048f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9640" + ], + "x-ms-request-id": [ + "44ff598f-95ea-4ca6-9c12-ce3b81e2e0e2" + ], + "x-ms-correlation-request-id": [ + "44ff598f-95ea-4ca6-9c12-ce3b81e2e0e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:44ff598f-95ea-4ca6-9c12-ce3b81e2e0e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "330ad5a2-ec2c-4c04-bce8-c9f5d34b7735" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9639" + ], + "x-ms-request-id": [ + "3f5105b4-5d94-425e-b459-da8e19155d7f" + ], + "x-ms-correlation-request-id": [ + "3f5105b4-5d94-425e-b459-da8e19155d7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:3f5105b4-5d94-425e-b459-da8e19155d7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "747304ed-b216-4196-8bac-6cd2488f953f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9638" + ], + "x-ms-request-id": [ + "4d1c19ec-a282-4611-bad5-0a5844dc3ffd" + ], + "x-ms-correlation-request-id": [ + "4d1c19ec-a282-4611-bad5-0a5844dc3ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021326Z:4d1c19ec-a282-4611-bad5-0a5844dc3ffd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f9db9a9-8011-4114-b84b-2189dcd569ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9637" + ], + "x-ms-request-id": [ + "9f10d607-d3ff-4275-a539-4f35ee81daef" + ], + "x-ms-correlation-request-id": [ + "9f10d607-d3ff-4275-a539-4f35ee81daef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:9f10d607-d3ff-4275-a539-4f35ee81daef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f8c314f-4fb4-4289-bd64-908db2e1a4e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9636" + ], + "x-ms-request-id": [ + "c32ca1f0-a50c-4c99-ba38-bd3e777da259" + ], + "x-ms-correlation-request-id": [ + "c32ca1f0-a50c-4c99-ba38-bd3e777da259" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:c32ca1f0-a50c-4c99-ba38-bd3e777da259" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38082d49-5b8d-435c-a2aa-dc36ef94a0e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9635" + ], + "x-ms-request-id": [ + "18658a40-9d0b-4655-a277-43586337b7e0" + ], + "x-ms-correlation-request-id": [ + "18658a40-9d0b-4655-a277-43586337b7e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:18658a40-9d0b-4655-a277-43586337b7e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89d803f8-b553-49fd-a30c-367a53db593f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9634" + ], + "x-ms-request-id": [ + "e8fd22aa-2465-4029-a68a-77489ae63b41" + ], + "x-ms-correlation-request-id": [ + "e8fd22aa-2465-4029-a68a-77489ae63b41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:e8fd22aa-2465-4029-a68a-77489ae63b41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25792852-ad5f-4226-a59b-980c85c8bbc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9633" + ], + "x-ms-request-id": [ + "dbb2332f-fbb6-4719-9d38-bc3da1b29dce" + ], + "x-ms-correlation-request-id": [ + "dbb2332f-fbb6-4719-9d38-bc3da1b29dce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:dbb2332f-fbb6-4719-9d38-bc3da1b29dce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58686905-18c5-433b-ba68-f9973bd901c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9632" + ], + "x-ms-request-id": [ + "d543691f-0573-40bd-b15d-337d64bf7442" + ], + "x-ms-correlation-request-id": [ + "d543691f-0573-40bd-b15d-337d64bf7442" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021327Z:d543691f-0573-40bd-b15d-337d64bf7442" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d82b65a1-df7a-4a9b-aa48-494e802ce65f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9631" + ], + "x-ms-request-id": [ + "5b60bc1b-f951-4fcc-8f7a-d8805ceea25c" + ], + "x-ms-correlation-request-id": [ + "5b60bc1b-f951-4fcc-8f7a-d8805ceea25c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021328Z:5b60bc1b-f951-4fcc-8f7a-d8805ceea25c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6e5dfab-1b8f-4b02-b3ce-a1ae39f2dc58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9630" + ], + "x-ms-request-id": [ + "635c18c8-3f01-467c-b984-180017eeb94b" + ], + "x-ms-correlation-request-id": [ + "635c18c8-3f01-467c-b984-180017eeb94b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021328Z:635c18c8-3f01-467c-b984-180017eeb94b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64f00b30-3659-4991-a62f-3ce92a3e5044" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9629" + ], + "x-ms-request-id": [ + "407599c5-fb78-4720-b4d6-f02611c1f3fb" + ], + "x-ms-correlation-request-id": [ + "407599c5-fb78-4720-b4d6-f02611c1f3fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021328Z:407599c5-fb78-4720-b4d6-f02611c1f3fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43d6bc44-16a2-4489-983c-e00c97356fc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9628" + ], + "x-ms-request-id": [ + "31d816d6-f8f6-4821-a6f2-467cbb3811c0" + ], + "x-ms-correlation-request-id": [ + "31d816d6-f8f6-4821-a6f2-467cbb3811c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021328Z:31d816d6-f8f6-4821-a6f2-467cbb3811c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a09920f4-c66b-4bef-89e1-986f1d747bad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9627" + ], + "x-ms-request-id": [ + "a9c3be82-d918-406d-b0c4-649a834957d8" + ], + "x-ms-correlation-request-id": [ + "a9c3be82-d918-406d-b0c4-649a834957d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021328Z:a9c3be82-d918-406d-b0c4-649a834957d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b7027b1-9a2d-46e6-9b16-51b053887eaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9626" + ], + "x-ms-request-id": [ + "73046fc6-ea62-457d-85cb-f238c489f223" + ], + "x-ms-correlation-request-id": [ + "73046fc6-ea62-457d-85cb-f238c489f223" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:73046fc6-ea62-457d-85cb-f238c489f223" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f25ee65-3926-4e8c-8a3b-0d5af108b040" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9625" + ], + "x-ms-request-id": [ + "7cad3619-db31-4a48-9382-ecf916789a1d" + ], + "x-ms-correlation-request-id": [ + "7cad3619-db31-4a48-9382-ecf916789a1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:7cad3619-db31-4a48-9382-ecf916789a1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "492cc690-0bc0-4700-be49-43afcaf87ba9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9624" + ], + "x-ms-request-id": [ + "3d54f556-f8e2-4fbe-a384-8c760a74d826" + ], + "x-ms-correlation-request-id": [ + "3d54f556-f8e2-4fbe-a384-8c760a74d826" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:3d54f556-f8e2-4fbe-a384-8c760a74d826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13e0d67f-33b1-43ac-87d1-3d17f410c6ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9623" + ], + "x-ms-request-id": [ + "97cb5926-20aa-4e96-a8e6-a24771877829" + ], + "x-ms-correlation-request-id": [ + "97cb5926-20aa-4e96-a8e6-a24771877829" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:97cb5926-20aa-4e96-a8e6-a24771877829" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59412efb-4a94-49d6-bd2d-b66d01f62fc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9622" + ], + "x-ms-request-id": [ + "efd63095-3b57-418b-8ec9-7124a3171f29" + ], + "x-ms-correlation-request-id": [ + "efd63095-3b57-418b-8ec9-7124a3171f29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:efd63095-3b57-418b-8ec9-7124a3171f29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f75567ed-f9dc-4ee0-94d9-a78b2f90a3bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9621" + ], + "x-ms-request-id": [ + "d224ccb3-b1f9-4089-9ca2-1461e19901e6" + ], + "x-ms-correlation-request-id": [ + "d224ccb3-b1f9-4089-9ca2-1461e19901e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021329Z:d224ccb3-b1f9-4089-9ca2-1461e19901e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5cf1273-52d9-4243-9378-31ca8282f34b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9620" + ], + "x-ms-request-id": [ + "6d4c2a23-308f-48ac-bf5c-cf23218fa9ca" + ], + "x-ms-correlation-request-id": [ + "6d4c2a23-308f-48ac-bf5c-cf23218fa9ca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:6d4c2a23-308f-48ac-bf5c-cf23218fa9ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f9d4dbb-ebfd-4eda-a2ec-e6947bfa2261" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9619" + ], + "x-ms-request-id": [ + "29612f85-53be-4d0e-9718-ab718ffae523" + ], + "x-ms-correlation-request-id": [ + "29612f85-53be-4d0e-9718-ab718ffae523" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:29612f85-53be-4d0e-9718-ab718ffae523" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba8143f8-36bb-4fb3-b24e-f602a55c6db9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9618" + ], + "x-ms-request-id": [ + "23b05870-294c-45a7-8ba6-fb637cd4fbdc" + ], + "x-ms-correlation-request-id": [ + "23b05870-294c-45a7-8ba6-fb637cd4fbdc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:23b05870-294c-45a7-8ba6-fb637cd4fbdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c1f607d-599e-4289-bd0f-76750c897df8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9617" + ], + "x-ms-request-id": [ + "1e9cd68a-4e33-40c1-89d6-bcc9b0081364" + ], + "x-ms-correlation-request-id": [ + "1e9cd68a-4e33-40c1-89d6-bcc9b0081364" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:1e9cd68a-4e33-40c1-89d6-bcc9b0081364" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bc93579-128a-45b1-b80c-49f683668d7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9616" + ], + "x-ms-request-id": [ + "63eebdd8-3997-44a0-be89-e8e696bd2d5e" + ], + "x-ms-correlation-request-id": [ + "63eebdd8-3997-44a0-be89-e8e696bd2d5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:63eebdd8-3997-44a0-be89-e8e696bd2d5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a37d6f1-fe1d-4395-ae97-c66b99f22a2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9615" + ], + "x-ms-request-id": [ + "1f074c93-7e61-4959-89f5-fd8ebd2a28b5" + ], + "x-ms-correlation-request-id": [ + "1f074c93-7e61-4959-89f5-fd8ebd2a28b5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021330Z:1f074c93-7e61-4959-89f5-fd8ebd2a28b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15728fad-d732-4819-a08e-b1425ca15a45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9614" + ], + "x-ms-request-id": [ + "6dfdbb64-132d-46c5-9682-fbb003dbf1ae" + ], + "x-ms-correlation-request-id": [ + "6dfdbb64-132d-46c5-9682-fbb003dbf1ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:6dfdbb64-132d-46c5-9682-fbb003dbf1ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "446754c8-347a-41d8-92be-751d736c90d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9613" + ], + "x-ms-request-id": [ + "4f0f09c5-6ba0-48d9-bb24-b3c8e7659fea" + ], + "x-ms-correlation-request-id": [ + "4f0f09c5-6ba0-48d9-bb24-b3c8e7659fea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:4f0f09c5-6ba0-48d9-bb24-b3c8e7659fea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77ba0a80-3ece-48cb-a09f-230d4ee94914" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9612" + ], + "x-ms-request-id": [ + "4707b3d6-bf5f-4f70-a907-b0af041c967f" + ], + "x-ms-correlation-request-id": [ + "4707b3d6-bf5f-4f70-a907-b0af041c967f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:4707b3d6-bf5f-4f70-a907-b0af041c967f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f75cbcfc-f34a-4c82-82c8-d906661ea13c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9611" + ], + "x-ms-request-id": [ + "5851e02c-f987-433d-9612-50bf33eeb535" + ], + "x-ms-correlation-request-id": [ + "5851e02c-f987-433d-9612-50bf33eeb535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:5851e02c-f987-433d-9612-50bf33eeb535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fb2ac68-0ff9-436b-91f4-a065c18ebf71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9610" + ], + "x-ms-request-id": [ + "0b0b78aa-8740-43ca-ad52-a3e3fd36e3c8" + ], + "x-ms-correlation-request-id": [ + "0b0b78aa-8740-43ca-ad52-a3e3fd36e3c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:0b0b78aa-8740-43ca-ad52-a3e3fd36e3c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "419f16d5-e5a0-478e-9491-af695968b1af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9609" + ], + "x-ms-request-id": [ + "bc68c9a1-5333-4d73-b88d-ab01250048da" + ], + "x-ms-correlation-request-id": [ + "bc68c9a1-5333-4d73-b88d-ab01250048da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021331Z:bc68c9a1-5333-4d73-b88d-ab01250048da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5a68d8a-9894-47c8-b7a4-b0bb7d67fce9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9608" + ], + "x-ms-request-id": [ + "ae2bbed1-7e2b-4252-9adb-5d03b86504ef" + ], + "x-ms-correlation-request-id": [ + "ae2bbed1-7e2b-4252-9adb-5d03b86504ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:ae2bbed1-7e2b-4252-9adb-5d03b86504ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f53c0ab-5d59-44ed-bcd3-bb60d4f25c90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9607" + ], + "x-ms-request-id": [ + "30ef3add-16ca-4ce9-b12b-e1c35fe5aaed" + ], + "x-ms-correlation-request-id": [ + "30ef3add-16ca-4ce9-b12b-e1c35fe5aaed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:30ef3add-16ca-4ce9-b12b-e1c35fe5aaed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b724610-7871-4786-aad2-d95b1f47a54b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9606" + ], + "x-ms-request-id": [ + "826bf233-cb52-444c-b68b-808de77d9001" + ], + "x-ms-correlation-request-id": [ + "826bf233-cb52-444c-b68b-808de77d9001" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:826bf233-cb52-444c-b68b-808de77d9001" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0525cd63-a79d-4cde-89b6-8a38dcb5b597" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9605" + ], + "x-ms-request-id": [ + "5f5ac1f7-9f2b-4dc7-a3d0-370ebda6d837" + ], + "x-ms-correlation-request-id": [ + "5f5ac1f7-9f2b-4dc7-a3d0-370ebda6d837" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:5f5ac1f7-9f2b-4dc7-a3d0-370ebda6d837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02e884e5-66d0-497c-87c9-e64f5cd7fd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9604" + ], + "x-ms-request-id": [ + "19692089-ad27-4446-bf8a-634811a4f125" + ], + "x-ms-correlation-request-id": [ + "19692089-ad27-4446-bf8a-634811a4f125" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:19692089-ad27-4446-bf8a-634811a4f125" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8299ab81-20a1-4f1c-a616-3bc983b71a79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9603" + ], + "x-ms-request-id": [ + "2a9ec2ba-f624-434e-a034-d7603c18b477" + ], + "x-ms-correlation-request-id": [ + "2a9ec2ba-f624-434e-a034-d7603c18b477" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021332Z:2a9ec2ba-f624-434e-a034-d7603c18b477" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cde7346c-eb66-4d47-8f36-85db1ac3728f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9602" + ], + "x-ms-request-id": [ + "39e52db6-88b7-46ca-b039-0a72b3ede17d" + ], + "x-ms-correlation-request-id": [ + "39e52db6-88b7-46ca-b039-0a72b3ede17d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021333Z:39e52db6-88b7-46ca-b039-0a72b3ede17d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f90bd52b-15cd-4e79-95d1-b7276d7c2bcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9601" + ], + "x-ms-request-id": [ + "58c5d816-ca55-4b27-a0eb-f721c86c63a3" + ], + "x-ms-correlation-request-id": [ + "58c5d816-ca55-4b27-a0eb-f721c86c63a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021333Z:58c5d816-ca55-4b27-a0eb-f721c86c63a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28a5a013-62b8-478d-9699-bfca7dda8e12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9600" + ], + "x-ms-request-id": [ + "88dbc800-ee2a-4377-80b2-9da640c9828c" + ], + "x-ms-correlation-request-id": [ + "88dbc800-ee2a-4377-80b2-9da640c9828c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021333Z:88dbc800-ee2a-4377-80b2-9da640c9828c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f3bbd8f-5287-4b9e-b30e-519b93f2961a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9599" + ], + "x-ms-request-id": [ + "5a1f036e-c5eb-4fd1-a882-f1c60cb8cffc" + ], + "x-ms-correlation-request-id": [ + "5a1f036e-c5eb-4fd1-a882-f1c60cb8cffc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021333Z:5a1f036e-c5eb-4fd1-a882-f1c60cb8cffc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b630cd9d-e2b8-437e-9c56-887ba2182625" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9598" + ], + "x-ms-request-id": [ + "550a9b4a-7120-4c3d-843f-6fc569e9d34c" + ], + "x-ms-correlation-request-id": [ + "550a9b4a-7120-4c3d-843f-6fc569e9d34c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021333Z:550a9b4a-7120-4c3d-843f-6fc569e9d34c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "366590ad-676e-4951-b821-0ed7358e170f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9597" + ], + "x-ms-request-id": [ + "44292f48-33b4-441f-b250-8da932ed27a8" + ], + "x-ms-correlation-request-id": [ + "44292f48-33b4-441f-b250-8da932ed27a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:44292f48-33b4-441f-b250-8da932ed27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c8e820e-80e6-4fd6-b533-f940b0a6911d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9596" + ], + "x-ms-request-id": [ + "a69ea1b9-8c79-40c4-ac93-d0922b42f6a2" + ], + "x-ms-correlation-request-id": [ + "a69ea1b9-8c79-40c4-ac93-d0922b42f6a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:a69ea1b9-8c79-40c4-ac93-d0922b42f6a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aeb104ba-a77b-410c-a161-7532037666c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9595" + ], + "x-ms-request-id": [ + "8cf1394c-216d-448a-8638-30f56113f087" + ], + "x-ms-correlation-request-id": [ + "8cf1394c-216d-448a-8638-30f56113f087" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:8cf1394c-216d-448a-8638-30f56113f087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6243c5c-5d20-42fa-8053-4cd193da022f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9594" + ], + "x-ms-request-id": [ + "551f2ab8-cfc9-40b2-8da4-496f1b748aa6" + ], + "x-ms-correlation-request-id": [ + "551f2ab8-cfc9-40b2-8da4-496f1b748aa6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:551f2ab8-cfc9-40b2-8da4-496f1b748aa6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2f09d8-b12e-43a0-9c5c-7d8073a00b35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9593" + ], + "x-ms-request-id": [ + "93f80eaa-0c98-4145-9950-1b43a47134ab" + ], + "x-ms-correlation-request-id": [ + "93f80eaa-0c98-4145-9950-1b43a47134ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:93f80eaa-0c98-4145-9950-1b43a47134ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb988002-d40a-4a39-b957-f387fd4be11f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9592" + ], + "x-ms-request-id": [ + "46dfe345-e33f-4ca2-9422-87517d46af03" + ], + "x-ms-correlation-request-id": [ + "46dfe345-e33f-4ca2-9422-87517d46af03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021334Z:46dfe345-e33f-4ca2-9422-87517d46af03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a5568a-f804-4d94-889d-51eac91aac7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9591" + ], + "x-ms-request-id": [ + "201e8345-ecb9-4312-a47f-a4bd1b6be435" + ], + "x-ms-correlation-request-id": [ + "201e8345-ecb9-4312-a47f-a4bd1b6be435" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:201e8345-ecb9-4312-a47f-a4bd1b6be435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6525daec-ada3-452b-866a-bb83f898a115" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9590" + ], + "x-ms-request-id": [ + "9f4e6025-c26e-4a26-86c3-9ea04d56005e" + ], + "x-ms-correlation-request-id": [ + "9f4e6025-c26e-4a26-86c3-9ea04d56005e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:9f4e6025-c26e-4a26-86c3-9ea04d56005e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7e26343-83ac-4a3b-a963-6e1452483397" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9589" + ], + "x-ms-request-id": [ + "f7a5d0ab-38a0-4901-a210-b1e316234116" + ], + "x-ms-correlation-request-id": [ + "f7a5d0ab-38a0-4901-a210-b1e316234116" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:f7a5d0ab-38a0-4901-a210-b1e316234116" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "503cecc6-0e3f-45a8-903a-31428b169d83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9588" + ], + "x-ms-request-id": [ + "b98b14e3-f644-4ab9-a426-1c7505195d81" + ], + "x-ms-correlation-request-id": [ + "b98b14e3-f644-4ab9-a426-1c7505195d81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:b98b14e3-f644-4ab9-a426-1c7505195d81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85669e61-4c9b-4b2d-b444-f05c0ac0da24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9587" + ], + "x-ms-request-id": [ + "a875fd34-bc19-42d6-a646-a9277491e6d9" + ], + "x-ms-correlation-request-id": [ + "a875fd34-bc19-42d6-a646-a9277491e6d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:a875fd34-bc19-42d6-a646-a9277491e6d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53660141-b506-46f5-a1ef-1ccc76229920" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9586" + ], + "x-ms-request-id": [ + "cedb0f39-b8d1-4114-a234-65760b566824" + ], + "x-ms-correlation-request-id": [ + "cedb0f39-b8d1-4114-a234-65760b566824" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021335Z:cedb0f39-b8d1-4114-a234-65760b566824" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29c06070-b4eb-4e5d-8ccb-3dcee20c4f89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9585" + ], + "x-ms-request-id": [ + "d8baa8a2-43d7-45db-a3dd-0177ff14ab23" + ], + "x-ms-correlation-request-id": [ + "d8baa8a2-43d7-45db-a3dd-0177ff14ab23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:d8baa8a2-43d7-45db-a3dd-0177ff14ab23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cde5e43-2eb2-4917-9ef7-c2d473deb013" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9584" + ], + "x-ms-request-id": [ + "4cfa3702-7657-4766-adb3-bed8e5314b56" + ], + "x-ms-correlation-request-id": [ + "4cfa3702-7657-4766-adb3-bed8e5314b56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:4cfa3702-7657-4766-adb3-bed8e5314b56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0774eafe-3cf8-447a-809a-e3d58b438d8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9583" + ], + "x-ms-request-id": [ + "4779d2ea-4562-4529-9588-0d8848b60dac" + ], + "x-ms-correlation-request-id": [ + "4779d2ea-4562-4529-9588-0d8848b60dac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:4779d2ea-4562-4529-9588-0d8848b60dac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc87cd55-f6fa-4b4d-93ff-f492a26abffd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9582" + ], + "x-ms-request-id": [ + "65a8e432-feef-4cb1-8d6f-d325dd338e0e" + ], + "x-ms-correlation-request-id": [ + "65a8e432-feef-4cb1-8d6f-d325dd338e0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:65a8e432-feef-4cb1-8d6f-d325dd338e0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a76287cb-7be4-45ba-8ce2-67b8b9a474e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9581" + ], + "x-ms-request-id": [ + "b92c01f6-b5de-4129-afab-87e335e3f90e" + ], + "x-ms-correlation-request-id": [ + "b92c01f6-b5de-4129-afab-87e335e3f90e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:b92c01f6-b5de-4129-afab-87e335e3f90e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94806641-fb11-46b0-be51-116c160b3df5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9580" + ], + "x-ms-request-id": [ + "153a2f46-2516-4c12-8fd8-71ba4f5be1c8" + ], + "x-ms-correlation-request-id": [ + "153a2f46-2516-4c12-8fd8-71ba4f5be1c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021336Z:153a2f46-2516-4c12-8fd8-71ba4f5be1c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce725ef0-0db5-4f46-92ac-a837885e9494" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9579" + ], + "x-ms-request-id": [ + "35a2d70d-75d0-4eb1-b9a6-67b592cb8667" + ], + "x-ms-correlation-request-id": [ + "35a2d70d-75d0-4eb1-b9a6-67b592cb8667" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:35a2d70d-75d0-4eb1-b9a6-67b592cb8667" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34175bf4-b31a-45b2-9052-2464ad9cc503" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9578" + ], + "x-ms-request-id": [ + "c38537a1-10db-4539-907b-65dd61ec244e" + ], + "x-ms-correlation-request-id": [ + "c38537a1-10db-4539-907b-65dd61ec244e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:c38537a1-10db-4539-907b-65dd61ec244e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b98451f8-dc4d-4b72-9554-a1da80a1f287" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9577" + ], + "x-ms-request-id": [ + "edc49029-8d53-406d-9794-62097d4aaa33" + ], + "x-ms-correlation-request-id": [ + "edc49029-8d53-406d-9794-62097d4aaa33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:edc49029-8d53-406d-9794-62097d4aaa33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55356dfb-8d20-4bc3-a9b8-709e9699f852" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9576" + ], + "x-ms-request-id": [ + "56ba84e6-adca-4cf8-a516-4522f2f8eaa0" + ], + "x-ms-correlation-request-id": [ + "56ba84e6-adca-4cf8-a516-4522f2f8eaa0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:56ba84e6-adca-4cf8-a516-4522f2f8eaa0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6384012f-2b7d-492b-a69b-73236864d9ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9575" + ], + "x-ms-request-id": [ + "6adc3557-98f2-49b0-97f8-21dd80f91fe2" + ], + "x-ms-correlation-request-id": [ + "6adc3557-98f2-49b0-97f8-21dd80f91fe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:6adc3557-98f2-49b0-97f8-21dd80f91fe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3228d270-fab7-4683-b3e2-a4ade993664e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9574" + ], + "x-ms-request-id": [ + "b04e4bef-b42a-49e8-a763-4d5383ec2c4a" + ], + "x-ms-correlation-request-id": [ + "b04e4bef-b42a-49e8-a763-4d5383ec2c4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021337Z:b04e4bef-b42a-49e8-a763-4d5383ec2c4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cee5203-0420-4b04-9e21-cf5ebb0d1916" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9573" + ], + "x-ms-request-id": [ + "cbcbdebb-3d80-4a2b-ae42-b334d3a18f74" + ], + "x-ms-correlation-request-id": [ + "cbcbdebb-3d80-4a2b-ae42-b334d3a18f74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:cbcbdebb-3d80-4a2b-ae42-b334d3a18f74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c181427-e170-4135-9678-85fa10fec54e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9572" + ], + "x-ms-request-id": [ + "0910e2bb-a67d-47df-bdcc-4f45ef3d9ed6" + ], + "x-ms-correlation-request-id": [ + "0910e2bb-a67d-47df-bdcc-4f45ef3d9ed6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:0910e2bb-a67d-47df-bdcc-4f45ef3d9ed6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62d12150-c8e5-4953-b3cd-42ab825430c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9571" + ], + "x-ms-request-id": [ + "02f0537f-e5fc-4ff3-872f-e71bf4a62a5a" + ], + "x-ms-correlation-request-id": [ + "02f0537f-e5fc-4ff3-872f-e71bf4a62a5a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:02f0537f-e5fc-4ff3-872f-e71bf4a62a5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b456a36-3a80-4b60-931f-7705bce35411" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9570" + ], + "x-ms-request-id": [ + "edcad8fe-50bc-45be-823e-b798fdff4d1f" + ], + "x-ms-correlation-request-id": [ + "edcad8fe-50bc-45be-823e-b798fdff4d1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:edcad8fe-50bc-45be-823e-b798fdff4d1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58f65b65-bf90-4b94-82ea-20414ed35585" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9569" + ], + "x-ms-request-id": [ + "5753bde8-3b81-4714-9b6b-0d5d809791ba" + ], + "x-ms-correlation-request-id": [ + "5753bde8-3b81-4714-9b6b-0d5d809791ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:5753bde8-3b81-4714-9b6b-0d5d809791ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3635231d-f6e9-4024-a4c4-2e914ef3f058" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9568" + ], + "x-ms-request-id": [ + "71708ac9-be94-4d79-a087-7593ae95cee5" + ], + "x-ms-correlation-request-id": [ + "71708ac9-be94-4d79-a087-7593ae95cee5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021338Z:71708ac9-be94-4d79-a087-7593ae95cee5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55e1f22a-25a3-40d9-8363-d6e7fb74c427" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9567" + ], + "x-ms-request-id": [ + "0080c578-b735-4180-a96e-fc213c1b14c6" + ], + "x-ms-correlation-request-id": [ + "0080c578-b735-4180-a96e-fc213c1b14c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:0080c578-b735-4180-a96e-fc213c1b14c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af76147e-fdfb-40e8-ba7f-35dcb4e10ded" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9566" + ], + "x-ms-request-id": [ + "13a786ef-2c18-47e3-9f6f-3e3aaf2ead98" + ], + "x-ms-correlation-request-id": [ + "13a786ef-2c18-47e3-9f6f-3e3aaf2ead98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:13a786ef-2c18-47e3-9f6f-3e3aaf2ead98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37ea40f6-2e9e-4e90-95a4-31310c178077" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9565" + ], + "x-ms-request-id": [ + "d5ccece7-7761-42f4-941e-c2cc80437def" + ], + "x-ms-correlation-request-id": [ + "d5ccece7-7761-42f4-941e-c2cc80437def" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:d5ccece7-7761-42f4-941e-c2cc80437def" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdaa2731-d0eb-4f05-8c7c-d34fb6f08fa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9564" + ], + "x-ms-request-id": [ + "2cf54be3-c713-4b08-bf7a-0d248fa4d0e2" + ], + "x-ms-correlation-request-id": [ + "2cf54be3-c713-4b08-bf7a-0d248fa4d0e2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:2cf54be3-c713-4b08-bf7a-0d248fa4d0e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0f1620d-4440-474e-860b-da9a4c15146e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9563" + ], + "x-ms-request-id": [ + "7da13a87-562f-434a-9263-fb06f91a1922" + ], + "x-ms-correlation-request-id": [ + "7da13a87-562f-434a-9263-fb06f91a1922" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:7da13a87-562f-434a-9263-fb06f91a1922" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccbb2439-9d59-4f27-befc-85d5129d3e7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9562" + ], + "x-ms-request-id": [ + "0815e97e-df48-42c9-9478-db12dc96e6a4" + ], + "x-ms-correlation-request-id": [ + "0815e97e-df48-42c9-9478-db12dc96e6a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021339Z:0815e97e-df48-42c9-9478-db12dc96e6a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca4c8b37-4d44-4cdc-806c-f52c6adb146d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9561" + ], + "x-ms-request-id": [ + "0825e74f-f37a-4cca-a278-66193077d8fd" + ], + "x-ms-correlation-request-id": [ + "0825e74f-f37a-4cca-a278-66193077d8fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:0825e74f-f37a-4cca-a278-66193077d8fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1b9b88a-b057-43b8-906b-2655bfb17c74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9560" + ], + "x-ms-request-id": [ + "b4b9221e-14cf-48ac-9f40-0c3b67a68f36" + ], + "x-ms-correlation-request-id": [ + "b4b9221e-14cf-48ac-9f40-0c3b67a68f36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:b4b9221e-14cf-48ac-9f40-0c3b67a68f36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd9151ec-0ae5-4cd2-b76e-0026e4db4575" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9559" + ], + "x-ms-request-id": [ + "57b19b3b-77e3-4b0e-ae84-175fa547223e" + ], + "x-ms-correlation-request-id": [ + "57b19b3b-77e3-4b0e-ae84-175fa547223e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:57b19b3b-77e3-4b0e-ae84-175fa547223e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e31c90a2-f402-4ca1-86ba-c7090072e0cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9558" + ], + "x-ms-request-id": [ + "5570bfa5-1485-4ad5-a54a-75af2bbf239f" + ], + "x-ms-correlation-request-id": [ + "5570bfa5-1485-4ad5-a54a-75af2bbf239f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:5570bfa5-1485-4ad5-a54a-75af2bbf239f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6940074b-9d47-4178-9135-3019f98143ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9557" + ], + "x-ms-request-id": [ + "46bb2f6e-877d-4c73-b66d-0d9cb187d929" + ], + "x-ms-correlation-request-id": [ + "46bb2f6e-877d-4c73-b66d-0d9cb187d929" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:46bb2f6e-877d-4c73-b66d-0d9cb187d929" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e035cc64-9e79-4ec7-a279-94d17c3e9ba9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9556" + ], + "x-ms-request-id": [ + "9b1fabd2-4ba7-44db-82aa-174926f79fae" + ], + "x-ms-correlation-request-id": [ + "9b1fabd2-4ba7-44db-82aa-174926f79fae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021340Z:9b1fabd2-4ba7-44db-82aa-174926f79fae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cab8b1c-8f0c-4dfa-ac98-6899c7793635" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9555" + ], + "x-ms-request-id": [ + "aefb6d6e-e258-432a-98b4-c7652220805b" + ], + "x-ms-correlation-request-id": [ + "aefb6d6e-e258-432a-98b4-c7652220805b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:aefb6d6e-e258-432a-98b4-c7652220805b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a97ccfde-5e33-4a5c-a5c1-f0059e451d4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9554" + ], + "x-ms-request-id": [ + "684f8e0d-c658-4469-9052-39d103fbe193" + ], + "x-ms-correlation-request-id": [ + "684f8e0d-c658-4469-9052-39d103fbe193" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:684f8e0d-c658-4469-9052-39d103fbe193" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcd603af-6c05-4d8b-83b9-38fd67d59935" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9553" + ], + "x-ms-request-id": [ + "224df63c-4771-4573-9baa-e4c1b28f1ec9" + ], + "x-ms-correlation-request-id": [ + "224df63c-4771-4573-9baa-e4c1b28f1ec9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:224df63c-4771-4573-9baa-e4c1b28f1ec9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42c1a564-db79-4bb5-8f33-bd440aed8200" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9552" + ], + "x-ms-request-id": [ + "9d45eca7-3ae4-48cf-bfe6-72804eb03d07" + ], + "x-ms-correlation-request-id": [ + "9d45eca7-3ae4-48cf-bfe6-72804eb03d07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:9d45eca7-3ae4-48cf-bfe6-72804eb03d07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "571d4a16-73f5-4a07-84de-82831a0c3a9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9551" + ], + "x-ms-request-id": [ + "d117b11e-3db6-4170-abce-657691bf02a1" + ], + "x-ms-correlation-request-id": [ + "d117b11e-3db6-4170-abce-657691bf02a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:d117b11e-3db6-4170-abce-657691bf02a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "511077d8-6ff4-4c47-a1c0-dbf8b3500a61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9550" + ], + "x-ms-request-id": [ + "5e48345f-8fa0-4899-bd15-826bd12477c7" + ], + "x-ms-correlation-request-id": [ + "5e48345f-8fa0-4899-bd15-826bd12477c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021341Z:5e48345f-8fa0-4899-bd15-826bd12477c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "702aa6b8-8fbd-4f73-9ebb-9a0fab1882a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9549" + ], + "x-ms-request-id": [ + "86d664b4-d78c-423d-b9eb-7d34bd3efa26" + ], + "x-ms-correlation-request-id": [ + "86d664b4-d78c-423d-b9eb-7d34bd3efa26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:86d664b4-d78c-423d-b9eb-7d34bd3efa26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8e4b5f9-869d-422a-b785-70ae435f248f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9548" + ], + "x-ms-request-id": [ + "a42ba391-82d6-44a8-b398-7990999774a0" + ], + "x-ms-correlation-request-id": [ + "a42ba391-82d6-44a8-b398-7990999774a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:a42ba391-82d6-44a8-b398-7990999774a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4720260b-717b-4194-98ff-de7b5a69d874" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9547" + ], + "x-ms-request-id": [ + "3b14744e-2356-437e-9a63-fe60f2674e2e" + ], + "x-ms-correlation-request-id": [ + "3b14744e-2356-437e-9a63-fe60f2674e2e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:3b14744e-2356-437e-9a63-fe60f2674e2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96132baa-95b4-47ef-a908-5106e1adac24" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9546" + ], + "x-ms-request-id": [ + "6ab70a7e-c906-4b27-a538-0650e233cc08" + ], + "x-ms-correlation-request-id": [ + "6ab70a7e-c906-4b27-a538-0650e233cc08" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:6ab70a7e-c906-4b27-a538-0650e233cc08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8596eb3-f5c8-45d1-99f0-2111db85b05e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9545" + ], + "x-ms-request-id": [ + "210e85da-1da6-4a87-b660-3f9c2c1768eb" + ], + "x-ms-correlation-request-id": [ + "210e85da-1da6-4a87-b660-3f9c2c1768eb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:210e85da-1da6-4a87-b660-3f9c2c1768eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "688a2e38-835d-4c83-8358-168644e0b2bb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9544" + ], + "x-ms-request-id": [ + "ceb5df5d-c1d3-4427-a368-f70df8e2b741" + ], + "x-ms-correlation-request-id": [ + "ceb5df5d-c1d3-4427-a368-f70df8e2b741" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021342Z:ceb5df5d-c1d3-4427-a368-f70df8e2b741" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd704b25-3d64-45f4-a98d-16c3e9be85ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9543" + ], + "x-ms-request-id": [ + "c62a210b-d483-42f1-9b88-9432acd08f9f" + ], + "x-ms-correlation-request-id": [ + "c62a210b-d483-42f1-9b88-9432acd08f9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021343Z:c62a210b-d483-42f1-9b88-9432acd08f9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7096a2c5-6793-4a10-80cd-11e94256559c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9542" + ], + "x-ms-request-id": [ + "65dbe66e-d372-4c30-b2cf-0fa765bad46a" + ], + "x-ms-correlation-request-id": [ + "65dbe66e-d372-4c30-b2cf-0fa765bad46a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021343Z:65dbe66e-d372-4c30-b2cf-0fa765bad46a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "039f1654-e017-4214-918b-f0058a667e58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9541" + ], + "x-ms-request-id": [ + "a3b8b7df-7a62-42d0-b508-63b94e5000a3" + ], + "x-ms-correlation-request-id": [ + "a3b8b7df-7a62-42d0-b508-63b94e5000a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021343Z:a3b8b7df-7a62-42d0-b508-63b94e5000a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "943eae92-a9cf-4354-9565-bbc29f92185a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9540" + ], + "x-ms-request-id": [ + "9bd5d6b0-5236-4ad0-8c54-0e4dffee1cc3" + ], + "x-ms-correlation-request-id": [ + "9bd5d6b0-5236-4ad0-8c54-0e4dffee1cc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021343Z:9bd5d6b0-5236-4ad0-8c54-0e4dffee1cc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf24671-3b49-46d9-beb8-4b97e6896e11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9539" + ], + "x-ms-request-id": [ + "3a88a4e5-8877-46e5-bcd1-dab620e12b9c" + ], + "x-ms-correlation-request-id": [ + "3a88a4e5-8877-46e5-bcd1-dab620e12b9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021343Z:3a88a4e5-8877-46e5-bcd1-dab620e12b9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e5ef619-a507-4c95-b7a3-1a1ea1adadcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9538" + ], + "x-ms-request-id": [ + "6bfd4be4-1ee8-49b7-a496-5776d235183e" + ], + "x-ms-correlation-request-id": [ + "6bfd4be4-1ee8-49b7-a496-5776d235183e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:6bfd4be4-1ee8-49b7-a496-5776d235183e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6093bda-1498-4574-a082-7fcc539630e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9537" + ], + "x-ms-request-id": [ + "943f117f-4370-4e5d-8aa3-5f813604b06f" + ], + "x-ms-correlation-request-id": [ + "943f117f-4370-4e5d-8aa3-5f813604b06f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:943f117f-4370-4e5d-8aa3-5f813604b06f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "203df208-c38f-4bc1-8aea-c0eb6829e9a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9536" + ], + "x-ms-request-id": [ + "76c49c6b-416a-47ee-ae09-a1f5e7971805" + ], + "x-ms-correlation-request-id": [ + "76c49c6b-416a-47ee-ae09-a1f5e7971805" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:76c49c6b-416a-47ee-ae09-a1f5e7971805" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00fce85e-121b-4d20-80f4-505dee597e49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9535" + ], + "x-ms-request-id": [ + "4b61ac42-1ed8-4f25-b587-0d3d7fcc8d84" + ], + "x-ms-correlation-request-id": [ + "4b61ac42-1ed8-4f25-b587-0d3d7fcc8d84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:4b61ac42-1ed8-4f25-b587-0d3d7fcc8d84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8546a740-6bb6-42c5-af7f-97702cc68453" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9534" + ], + "x-ms-request-id": [ + "6759e635-b05b-4f00-a866-eb2c0968f4e0" + ], + "x-ms-correlation-request-id": [ + "6759e635-b05b-4f00-a866-eb2c0968f4e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:6759e635-b05b-4f00-a866-eb2c0968f4e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6a02af4-bcf6-4816-b081-5f28c2127cd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9533" + ], + "x-ms-request-id": [ + "1245100b-1e3b-4d3d-931d-a53bc9e33fe2" + ], + "x-ms-correlation-request-id": [ + "1245100b-1e3b-4d3d-931d-a53bc9e33fe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021344Z:1245100b-1e3b-4d3d-931d-a53bc9e33fe2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35889caf-5f35-4b46-93db-0f52de0d8a21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9532" + ], + "x-ms-request-id": [ + "3f756e35-4780-468f-b7aa-0188b24cebce" + ], + "x-ms-correlation-request-id": [ + "3f756e35-4780-468f-b7aa-0188b24cebce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:3f756e35-4780-468f-b7aa-0188b24cebce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a1ff611-5d72-4dfc-8399-11f1297c13e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9531" + ], + "x-ms-request-id": [ + "e58d3521-d4b9-4e36-8d16-14f64b173e48" + ], + "x-ms-correlation-request-id": [ + "e58d3521-d4b9-4e36-8d16-14f64b173e48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:e58d3521-d4b9-4e36-8d16-14f64b173e48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e30a664a-b69f-4361-815a-788f13709257" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9530" + ], + "x-ms-request-id": [ + "b762b74d-cf25-4cc7-8c55-af92aa7c6a61" + ], + "x-ms-correlation-request-id": [ + "b762b74d-cf25-4cc7-8c55-af92aa7c6a61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:b762b74d-cf25-4cc7-8c55-af92aa7c6a61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70be41f8-f6c5-460a-b1e1-b9591d2374ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9529" + ], + "x-ms-request-id": [ + "4be35c30-b9de-457d-8909-f13857a345db" + ], + "x-ms-correlation-request-id": [ + "4be35c30-b9de-457d-8909-f13857a345db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:4be35c30-b9de-457d-8909-f13857a345db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf92cedf-53ce-4686-b5a7-9ca216879d98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9528" + ], + "x-ms-request-id": [ + "edeb663b-cd1d-40fb-8905-7e4163f9c5cb" + ], + "x-ms-correlation-request-id": [ + "edeb663b-cd1d-40fb-8905-7e4163f9c5cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:edeb663b-cd1d-40fb-8905-7e4163f9c5cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65da6f2d-07c5-4fd2-a52f-2300d38bfc8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9527" + ], + "x-ms-request-id": [ + "20fd7049-d313-4823-b269-26cd6b722471" + ], + "x-ms-correlation-request-id": [ + "20fd7049-d313-4823-b269-26cd6b722471" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021345Z:20fd7049-d313-4823-b269-26cd6b722471" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8bd3514-c0ea-4012-a064-a4a8268cc99a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9526" + ], + "x-ms-request-id": [ + "774c2334-52a7-4d5e-81d4-22fd53dc853b" + ], + "x-ms-correlation-request-id": [ + "774c2334-52a7-4d5e-81d4-22fd53dc853b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:774c2334-52a7-4d5e-81d4-22fd53dc853b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ae7a2fb-af67-4d23-bde4-9e41456ca63e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9525" + ], + "x-ms-request-id": [ + "c68fc738-faf7-4c92-b7f6-8461764dd4ee" + ], + "x-ms-correlation-request-id": [ + "c68fc738-faf7-4c92-b7f6-8461764dd4ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:c68fc738-faf7-4c92-b7f6-8461764dd4ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a929b5a3-9560-48d8-bed4-9e6161a6e0f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9524" + ], + "x-ms-request-id": [ + "7ab09962-2656-4901-845e-678f7d6886c6" + ], + "x-ms-correlation-request-id": [ + "7ab09962-2656-4901-845e-678f7d6886c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:7ab09962-2656-4901-845e-678f7d6886c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fb15064-fdb6-47ab-99e9-774367c62c44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9523" + ], + "x-ms-request-id": [ + "a5c4c5db-8c07-4494-a99b-76ebc0c35a77" + ], + "x-ms-correlation-request-id": [ + "a5c4c5db-8c07-4494-a99b-76ebc0c35a77" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:a5c4c5db-8c07-4494-a99b-76ebc0c35a77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a29144e-fa14-422c-82e3-e156f47d5faf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9522" + ], + "x-ms-request-id": [ + "b0faa240-5f6d-49d8-9431-f6f2ba4af535" + ], + "x-ms-correlation-request-id": [ + "b0faa240-5f6d-49d8-9431-f6f2ba4af535" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:b0faa240-5f6d-49d8-9431-f6f2ba4af535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc1e2c45-b6f4-481f-8b00-522106a26e4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9521" + ], + "x-ms-request-id": [ + "393ae979-9bdf-4d97-8bf9-b9cbf584bb81" + ], + "x-ms-correlation-request-id": [ + "393ae979-9bdf-4d97-8bf9-b9cbf584bb81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021346Z:393ae979-9bdf-4d97-8bf9-b9cbf584bb81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f15b5908-74af-4866-922c-13e185c883d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9520" + ], + "x-ms-request-id": [ + "6411e863-d2e7-4002-b04d-22732e513f69" + ], + "x-ms-correlation-request-id": [ + "6411e863-d2e7-4002-b04d-22732e513f69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021347Z:6411e863-d2e7-4002-b04d-22732e513f69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c704b6aa-ee75-44fe-9417-8cd4087286d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9519" + ], + "x-ms-request-id": [ + "2a9556ea-b3f2-4865-80ee-442383643bf8" + ], + "x-ms-correlation-request-id": [ + "2a9556ea-b3f2-4865-80ee-442383643bf8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021347Z:2a9556ea-b3f2-4865-80ee-442383643bf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cfa34ef-d26b-4dd6-96f2-848e69b9fad9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9518" + ], + "x-ms-request-id": [ + "ca60b278-3bbf-42c6-b8b9-add3cc6a3486" + ], + "x-ms-correlation-request-id": [ + "ca60b278-3bbf-42c6-b8b9-add3cc6a3486" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021347Z:ca60b278-3bbf-42c6-b8b9-add3cc6a3486" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4eb41916-c6d0-4824-86ab-466d507d1875" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9517" + ], + "x-ms-request-id": [ + "2ff034f8-ee93-4227-8a91-fa3ae497c234" + ], + "x-ms-correlation-request-id": [ + "2ff034f8-ee93-4227-8a91-fa3ae497c234" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021347Z:2ff034f8-ee93-4227-8a91-fa3ae497c234" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bd599dc-199e-4332-944b-6b53e7b2b99f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9516" + ], + "x-ms-request-id": [ + "6423899d-c0a2-400c-91ca-39125a129709" + ], + "x-ms-correlation-request-id": [ + "6423899d-c0a2-400c-91ca-39125a129709" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021347Z:6423899d-c0a2-400c-91ca-39125a129709" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf560c29-66be-407a-a752-0069f61d84a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9515" + ], + "x-ms-request-id": [ + "25e37f28-6d39-46f3-8c86-7a0742f1974d" + ], + "x-ms-correlation-request-id": [ + "25e37f28-6d39-46f3-8c86-7a0742f1974d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:25e37f28-6d39-46f3-8c86-7a0742f1974d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ffcdd1b-73b5-492d-9c1b-aed7b8dd23a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9514" + ], + "x-ms-request-id": [ + "b798578c-3f56-44ea-a9ca-a14ce3453225" + ], + "x-ms-correlation-request-id": [ + "b798578c-3f56-44ea-a9ca-a14ce3453225" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:b798578c-3f56-44ea-a9ca-a14ce3453225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93d75540-fe21-4a89-b9ed-9e9a1824352c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9513" + ], + "x-ms-request-id": [ + "74a6ccf2-549b-4c78-9672-9d44b556eee7" + ], + "x-ms-correlation-request-id": [ + "74a6ccf2-549b-4c78-9672-9d44b556eee7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:74a6ccf2-549b-4c78-9672-9d44b556eee7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c65d0c8-4238-48be-a745-8fa2404d7eaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9512" + ], + "x-ms-request-id": [ + "6f70b00c-d811-4775-a26e-d4b7b847f32d" + ], + "x-ms-correlation-request-id": [ + "6f70b00c-d811-4775-a26e-d4b7b847f32d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:6f70b00c-d811-4775-a26e-d4b7b847f32d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e96309bb-189a-438d-b3b4-de0047d13428" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9511" + ], + "x-ms-request-id": [ + "52b476b6-1a29-49c0-a20f-2745f9ce580b" + ], + "x-ms-correlation-request-id": [ + "52b476b6-1a29-49c0-a20f-2745f9ce580b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:52b476b6-1a29-49c0-a20f-2745f9ce580b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f850e3e-b973-48d3-ae20-89cab8ec86a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9510" + ], + "x-ms-request-id": [ + "b53d5f50-f057-4c22-8b61-857f0ed90e39" + ], + "x-ms-correlation-request-id": [ + "b53d5f50-f057-4c22-8b61-857f0ed90e39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021348Z:b53d5f50-f057-4c22-8b61-857f0ed90e39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0313b35-432d-4012-b6d4-2afff577453f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9509" + ], + "x-ms-request-id": [ + "4aa38e4e-3656-416d-884e-1de900d311e4" + ], + "x-ms-correlation-request-id": [ + "4aa38e4e-3656-416d-884e-1de900d311e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:4aa38e4e-3656-416d-884e-1de900d311e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ad4a5a2-5af0-4983-9654-7660dd02f80f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9508" + ], + "x-ms-request-id": [ + "81d090ea-1520-463d-88ad-d39f2ee8e705" + ], + "x-ms-correlation-request-id": [ + "81d090ea-1520-463d-88ad-d39f2ee8e705" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:81d090ea-1520-463d-88ad-d39f2ee8e705" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e974a37-c133-4675-9d07-8a1aa0e42ac0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9507" + ], + "x-ms-request-id": [ + "78843be7-5e6b-40e5-b690-6bdb2f06ed12" + ], + "x-ms-correlation-request-id": [ + "78843be7-5e6b-40e5-b690-6bdb2f06ed12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:78843be7-5e6b-40e5-b690-6bdb2f06ed12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b11ca920-12f7-45d1-a1ae-f39117ca167e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9506" + ], + "x-ms-request-id": [ + "5ebd168f-ef70-42c2-bd80-d41f131fb7de" + ], + "x-ms-correlation-request-id": [ + "5ebd168f-ef70-42c2-bd80-d41f131fb7de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:5ebd168f-ef70-42c2-bd80-d41f131fb7de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3103ad5-6ce3-40d5-8e1b-2e76a30bcdd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9505" + ], + "x-ms-request-id": [ + "9fae8de3-e6fb-45fd-9670-00079f1015a9" + ], + "x-ms-correlation-request-id": [ + "9fae8de3-e6fb-45fd-9670-00079f1015a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:9fae8de3-e6fb-45fd-9670-00079f1015a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cda7c5b-b369-419d-aeac-3ac5d8dd20cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9504" + ], + "x-ms-request-id": [ + "b9248568-9d02-47fc-aa50-a2106f5d513f" + ], + "x-ms-correlation-request-id": [ + "b9248568-9d02-47fc-aa50-a2106f5d513f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021349Z:b9248568-9d02-47fc-aa50-a2106f5d513f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5195991-20b6-4e81-8bf5-5f42a58b8ef5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9503" + ], + "x-ms-request-id": [ + "539aec93-bfde-4285-800e-929e1be53a5e" + ], + "x-ms-correlation-request-id": [ + "539aec93-bfde-4285-800e-929e1be53a5e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:539aec93-bfde-4285-800e-929e1be53a5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e80d5f13-e30e-412d-a8cf-30b3523ee93e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9502" + ], + "x-ms-request-id": [ + "25712b46-a598-4f52-937a-d1f2defebdd3" + ], + "x-ms-correlation-request-id": [ + "25712b46-a598-4f52-937a-d1f2defebdd3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:25712b46-a598-4f52-937a-d1f2defebdd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48578bfe-2d02-4ce4-830d-e46438b3fbaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9501" + ], + "x-ms-request-id": [ + "a9be43ee-16bf-486f-a63b-1b6c297fc0da" + ], + "x-ms-correlation-request-id": [ + "a9be43ee-16bf-486f-a63b-1b6c297fc0da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:a9be43ee-16bf-486f-a63b-1b6c297fc0da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75f233fb-2c05-4100-be19-67d0377fc354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9500" + ], + "x-ms-request-id": [ + "ccfc82f1-27ee-46bf-b1b1-af9e37260a54" + ], + "x-ms-correlation-request-id": [ + "ccfc82f1-27ee-46bf-b1b1-af9e37260a54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:ccfc82f1-27ee-46bf-b1b1-af9e37260a54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c0f36f5-8f7e-430d-b128-a5c68818e1fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9499" + ], + "x-ms-request-id": [ + "472a495d-e1f9-4543-a946-e54db8c7c416" + ], + "x-ms-correlation-request-id": [ + "472a495d-e1f9-4543-a946-e54db8c7c416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:472a495d-e1f9-4543-a946-e54db8c7c416" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "798ca1ab-85fe-43c4-a789-ca20c2ad3386" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9498" + ], + "x-ms-request-id": [ + "5284c9cb-ce72-4d9b-8d0f-92e6013298c8" + ], + "x-ms-correlation-request-id": [ + "5284c9cb-ce72-4d9b-8d0f-92e6013298c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021350Z:5284c9cb-ce72-4d9b-8d0f-92e6013298c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c43ba04-183d-46df-b078-cc043d6ade0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9497" + ], + "x-ms-request-id": [ + "f20acb6a-188b-4313-b4e7-92b97f0dd36f" + ], + "x-ms-correlation-request-id": [ + "f20acb6a-188b-4313-b4e7-92b97f0dd36f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:f20acb6a-188b-4313-b4e7-92b97f0dd36f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "627c132a-67f4-41ab-9998-5e5cc1c97361" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9496" + ], + "x-ms-request-id": [ + "caadb05b-6eb0-4050-86d1-5f866f55dd72" + ], + "x-ms-correlation-request-id": [ + "caadb05b-6eb0-4050-86d1-5f866f55dd72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:caadb05b-6eb0-4050-86d1-5f866f55dd72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2875b6bc-ce8e-41e8-a3c4-564aab8c079a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9495" + ], + "x-ms-request-id": [ + "a0b1c763-39c7-40b9-a0e0-03c8430f6803" + ], + "x-ms-correlation-request-id": [ + "a0b1c763-39c7-40b9-a0e0-03c8430f6803" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:a0b1c763-39c7-40b9-a0e0-03c8430f6803" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4b0d8d1-a36b-4e5c-9774-76efe9b9c812" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9494" + ], + "x-ms-request-id": [ + "95aad140-ab3e-4dae-bcfc-370eb681ac64" + ], + "x-ms-correlation-request-id": [ + "95aad140-ab3e-4dae-bcfc-370eb681ac64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:95aad140-ab3e-4dae-bcfc-370eb681ac64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aac8fea7-0d26-48bf-bbf4-c791c12168ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9493" + ], + "x-ms-request-id": [ + "625d3676-a428-4c2c-b86c-9d437fb757a2" + ], + "x-ms-correlation-request-id": [ + "625d3676-a428-4c2c-b86c-9d437fb757a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:625d3676-a428-4c2c-b86c-9d437fb757a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa9ca1eb-1ab8-41f5-ab31-fcb8d9f160ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9492" + ], + "x-ms-request-id": [ + "2b84307f-09e0-4dc5-b586-e5d9d95b0e71" + ], + "x-ms-correlation-request-id": [ + "2b84307f-09e0-4dc5-b586-e5d9d95b0e71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021351Z:2b84307f-09e0-4dc5-b586-e5d9d95b0e71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2a2c23d-0338-4166-933c-b17c42da4921" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9491" + ], + "x-ms-request-id": [ + "0fce48fa-8d5d-4182-9300-e5b7630e0427" + ], + "x-ms-correlation-request-id": [ + "0fce48fa-8d5d-4182-9300-e5b7630e0427" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021352Z:0fce48fa-8d5d-4182-9300-e5b7630e0427" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:51 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4de3dbaa-2596-4f83-bb0d-cdc5ac722d44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9490" + ], + "x-ms-request-id": [ + "5bd1ec1c-f2ec-473a-809d-9a75de7dec6d" + ], + "x-ms-correlation-request-id": [ + "5bd1ec1c-f2ec-473a-809d-9a75de7dec6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021352Z:5bd1ec1c-f2ec-473a-809d-9a75de7dec6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:51 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37c10c3e-7456-4e1b-a3a4-fea226f40712" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9489" + ], + "x-ms-request-id": [ + "29f47931-2cd2-4aa0-8fcf-1afd615a7587" + ], + "x-ms-correlation-request-id": [ + "29f47931-2cd2-4aa0-8fcf-1afd615a7587" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021352Z:29f47931-2cd2-4aa0-8fcf-1afd615a7587" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4955076-082c-41d2-abae-2d690c4b74cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9488" + ], + "x-ms-request-id": [ + "d849db00-f531-489a-8832-40f34aa3fc09" + ], + "x-ms-correlation-request-id": [ + "d849db00-f531-489a-8832-40f34aa3fc09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:d849db00-f531-489a-8832-40f34aa3fc09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4b9ffa7-0ef9-404c-95a5-a8e82d9ba807" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9487" + ], + "x-ms-request-id": [ + "71d1eabd-d561-4082-9865-7d0ba6edd912" + ], + "x-ms-correlation-request-id": [ + "71d1eabd-d561-4082-9865-7d0ba6edd912" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:71d1eabd-d561-4082-9865-7d0ba6edd912" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24ae17bf-5dd3-492a-8412-e4f747bc5523" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9486" + ], + "x-ms-request-id": [ + "b685af22-e04c-4933-bf18-b4c45fd2b2d8" + ], + "x-ms-correlation-request-id": [ + "b685af22-e04c-4933-bf18-b4c45fd2b2d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:b685af22-e04c-4933-bf18-b4c45fd2b2d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d67f444-4294-4dee-94c8-1f07da4e737b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9485" + ], + "x-ms-request-id": [ + "4eab9af3-629c-47cc-9fab-346b26a5568d" + ], + "x-ms-correlation-request-id": [ + "4eab9af3-629c-47cc-9fab-346b26a5568d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:4eab9af3-629c-47cc-9fab-346b26a5568d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "235b2a5b-a6f1-4c4f-af11-fa876474b870" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9484" + ], + "x-ms-request-id": [ + "87a7e442-03da-4ad9-90eb-36465ef17526" + ], + "x-ms-correlation-request-id": [ + "87a7e442-03da-4ad9-90eb-36465ef17526" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:87a7e442-03da-4ad9-90eb-36465ef17526" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:52 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c4bb105-6e3e-463b-b101-1a64705a1ae5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9483" + ], + "x-ms-request-id": [ + "a3b3c0bb-fc9e-479a-ac53-c07b9369593b" + ], + "x-ms-correlation-request-id": [ + "a3b3c0bb-fc9e-479a-ac53-c07b9369593b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021353Z:a3b3c0bb-fc9e-479a-ac53-c07b9369593b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "379740e9-4f90-44d1-80b5-8c06e782f6c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9482" + ], + "x-ms-request-id": [ + "2032e47e-9ea5-45b9-a317-a19490a7cc37" + ], + "x-ms-correlation-request-id": [ + "2032e47e-9ea5-45b9-a317-a19490a7cc37" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021354Z:2032e47e-9ea5-45b9-a317-a19490a7cc37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3db7f79-cb2a-451f-b934-9a611f7e4ab6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9481" + ], + "x-ms-request-id": [ + "ad8bb903-7052-4c27-8be9-584a91f2599a" + ], + "x-ms-correlation-request-id": [ + "ad8bb903-7052-4c27-8be9-584a91f2599a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021354Z:ad8bb903-7052-4c27-8be9-584a91f2599a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a735965-caa5-4293-a785-ade4d9202bfc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9480" + ], + "x-ms-request-id": [ + "6ea225a0-361d-4e4b-b2d7-1059920ef4b9" + ], + "x-ms-correlation-request-id": [ + "6ea225a0-361d-4e4b-b2d7-1059920ef4b9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021354Z:6ea225a0-361d-4e4b-b2d7-1059920ef4b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ab85b36-21c2-472d-8866-250426a35045" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9479" + ], + "x-ms-request-id": [ + "ec8bc1ca-c5a1-4cc4-9ae2-337c1da20922" + ], + "x-ms-correlation-request-id": [ + "ec8bc1ca-c5a1-4cc4-9ae2-337c1da20922" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021354Z:ec8bc1ca-c5a1-4cc4-9ae2-337c1da20922" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21c158c7-2926-43cf-935a-3d21ce436cb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9478" + ], + "x-ms-request-id": [ + "55959f52-8f0e-41bc-865c-369d84b0e564" + ], + "x-ms-correlation-request-id": [ + "55959f52-8f0e-41bc-865c-369d84b0e564" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021354Z:55959f52-8f0e-41bc-865c-369d84b0e564" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:53 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e424d2f-4ec5-41af-833f-998366c34c83" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9477" + ], + "x-ms-request-id": [ + "0027d061-5f57-4951-b03c-6b6f89b01127" + ], + "x-ms-correlation-request-id": [ + "0027d061-5f57-4951-b03c-6b6f89b01127" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:0027d061-5f57-4951-b03c-6b6f89b01127" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55538bb2-7454-4f3a-8783-03bf6d7041e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9476" + ], + "x-ms-request-id": [ + "66dc2cd2-9a9c-41e7-9255-8486649ded98" + ], + "x-ms-correlation-request-id": [ + "66dc2cd2-9a9c-41e7-9255-8486649ded98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:66dc2cd2-9a9c-41e7-9255-8486649ded98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14f35607-7d44-4488-9d55-997485aafb51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9475" + ], + "x-ms-request-id": [ + "b1e01c65-d121-4718-be57-c7485751b71c" + ], + "x-ms-correlation-request-id": [ + "b1e01c65-d121-4718-be57-c7485751b71c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:b1e01c65-d121-4718-be57-c7485751b71c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e97d9d2e-ae68-44ff-a9f9-539d98636738" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9474" + ], + "x-ms-request-id": [ + "34ce50ad-040f-4367-a596-1f932c8cadaa" + ], + "x-ms-correlation-request-id": [ + "34ce50ad-040f-4367-a596-1f932c8cadaa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:34ce50ad-040f-4367-a596-1f932c8cadaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3f29470-922e-4505-8474-f122be64d8fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9473" + ], + "x-ms-request-id": [ + "ef27828c-c3a7-4bc5-b44c-93edbab42dd4" + ], + "x-ms-correlation-request-id": [ + "ef27828c-c3a7-4bc5-b44c-93edbab42dd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:ef27828c-c3a7-4bc5-b44c-93edbab42dd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "380fee04-22ca-45b6-b39a-a4e5ee36a4f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9472" + ], + "x-ms-request-id": [ + "b01c0604-070d-4c57-bc79-06b443b9b443" + ], + "x-ms-correlation-request-id": [ + "b01c0604-070d-4c57-bc79-06b443b9b443" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021355Z:b01c0604-070d-4c57-bc79-06b443b9b443" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:54 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b618441-c656-4d7d-9ed4-0f493f35a9c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9471" + ], + "x-ms-request-id": [ + "869c7b7b-5c57-42a8-98dc-0f2ced6b5047" + ], + "x-ms-correlation-request-id": [ + "869c7b7b-5c57-42a8-98dc-0f2ced6b5047" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:869c7b7b-5c57-42a8-98dc-0f2ced6b5047" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:55 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06920dc0-5b0d-4095-b8fc-79a8f0370aa4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9470" + ], + "x-ms-request-id": [ + "9097f67b-7d1c-47d0-addd-2b77cba6ccf6" + ], + "x-ms-correlation-request-id": [ + "9097f67b-7d1c-47d0-addd-2b77cba6ccf6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:9097f67b-7d1c-47d0-addd-2b77cba6ccf6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:55 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67a1b906-8a38-44e1-808a-6b61fcbbfa2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9469" + ], + "x-ms-request-id": [ + "bcddd548-c020-41fe-8488-1fafe9043ca5" + ], + "x-ms-correlation-request-id": [ + "bcddd548-c020-41fe-8488-1fafe9043ca5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:bcddd548-c020-41fe-8488-1fafe9043ca5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:55 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7157cf29-6fe2-4522-85d4-6da59cf7903a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9468" + ], + "x-ms-request-id": [ + "25a91bd3-b5e0-4552-975b-ca5359df2c09" + ], + "x-ms-correlation-request-id": [ + "25a91bd3-b5e0-4552-975b-ca5359df2c09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:25a91bd3-b5e0-4552-975b-ca5359df2c09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:55 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "144f0240-8752-4f55-950c-add1cd932848" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9467" + ], + "x-ms-request-id": [ + "696178a1-3734-4c26-9e78-0d3f0751fe9c" + ], + "x-ms-correlation-request-id": [ + "696178a1-3734-4c26-9e78-0d3f0751fe9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:696178a1-3734-4c26-9e78-0d3f0751fe9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:55 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e51b015-8df9-4b48-a652-0a9f3121ef7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9466" + ], + "x-ms-request-id": [ + "e813bcda-d92c-44e6-83ec-5914dfaee271" + ], + "x-ms-correlation-request-id": [ + "e813bcda-d92c-44e6-83ec-5914dfaee271" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021356Z:e813bcda-d92c-44e6-83ec-5914dfaee271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac9bbe25-3576-4edb-a098-63a26eaacef7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9465" + ], + "x-ms-request-id": [ + "fea6f723-cca4-4787-8c01-29e3785ed966" + ], + "x-ms-correlation-request-id": [ + "fea6f723-cca4-4787-8c01-29e3785ed966" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:fea6f723-cca4-4787-8c01-29e3785ed966" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5acaf545-99fa-4a03-97b0-6b078796b47c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9464" + ], + "x-ms-request-id": [ + "9339f338-7636-481e-b391-206712a6f399" + ], + "x-ms-correlation-request-id": [ + "9339f338-7636-481e-b391-206712a6f399" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:9339f338-7636-481e-b391-206712a6f399" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5aaa2649-5aab-4e7b-b329-ccb0d42c106b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9463" + ], + "x-ms-request-id": [ + "e4d0f712-aeeb-4e41-8883-4ad0a4f91108" + ], + "x-ms-correlation-request-id": [ + "e4d0f712-aeeb-4e41-8883-4ad0a4f91108" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:e4d0f712-aeeb-4e41-8883-4ad0a4f91108" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2804ab6-b8b2-44bc-9ab3-bbf1a6a93861" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9462" + ], + "x-ms-request-id": [ + "8db0bd58-6038-4dcc-9f07-ee5b4a63eb31" + ], + "x-ms-correlation-request-id": [ + "8db0bd58-6038-4dcc-9f07-ee5b4a63eb31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:8db0bd58-6038-4dcc-9f07-ee5b4a63eb31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98851a6d-7e65-4ecf-92e7-485f4c03f25c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9461" + ], + "x-ms-request-id": [ + "acc0cbc8-e343-49ff-ad2d-1acf083c8c25" + ], + "x-ms-correlation-request-id": [ + "acc0cbc8-e343-49ff-ad2d-1acf083c8c25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:acc0cbc8-e343-49ff-ad2d-1acf083c8c25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:56 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "089689d2-7d71-43f6-9175-947ba6a411fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9460" + ], + "x-ms-request-id": [ + "d61f473d-43ca-4f4e-82a3-3f4fd68a221a" + ], + "x-ms-correlation-request-id": [ + "d61f473d-43ca-4f4e-82a3-3f4fd68a221a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021357Z:d61f473d-43ca-4f4e-82a3-3f4fd68a221a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc6e5942-3132-4288-b720-543ebeeed102" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9459" + ], + "x-ms-request-id": [ + "2030d958-edad-490d-970e-dacb974db9a4" + ], + "x-ms-correlation-request-id": [ + "2030d958-edad-490d-970e-dacb974db9a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:2030d958-edad-490d-970e-dacb974db9a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b32262b0-90fd-42f6-a761-00cc5f88267a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9458" + ], + "x-ms-request-id": [ + "9f620f62-4458-4ee8-a03f-a5229c59464a" + ], + "x-ms-correlation-request-id": [ + "9f620f62-4458-4ee8-a03f-a5229c59464a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:9f620f62-4458-4ee8-a03f-a5229c59464a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b481e7a9-4daa-4914-9c5c-a7f511a3351e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9457" + ], + "x-ms-request-id": [ + "15001222-b7c3-4229-851f-c53d188f499a" + ], + "x-ms-correlation-request-id": [ + "15001222-b7c3-4229-851f-c53d188f499a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:15001222-b7c3-4229-851f-c53d188f499a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88eb9570-3815-4d7b-8727-e014b7f98263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9456" + ], + "x-ms-request-id": [ + "0ae7429a-b3d6-4451-8235-75bf53444cce" + ], + "x-ms-correlation-request-id": [ + "0ae7429a-b3d6-4451-8235-75bf53444cce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:0ae7429a-b3d6-4451-8235-75bf53444cce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4a43e28-fddd-4ec6-be8a-faf7419f966a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9455" + ], + "x-ms-request-id": [ + "59b1d06d-5b61-4046-8fdb-c7c637176338" + ], + "x-ms-correlation-request-id": [ + "59b1d06d-5b61-4046-8fdb-c7c637176338" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:59b1d06d-5b61-4046-8fdb-c7c637176338" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:57 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27d2adaa-f7f0-46d6-8464-9fbc50a61736" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9454" + ], + "x-ms-request-id": [ + "e5274146-87c6-4123-b29a-3230139a5057" + ], + "x-ms-correlation-request-id": [ + "e5274146-87c6-4123-b29a-3230139a5057" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021358Z:e5274146-87c6-4123-b29a-3230139a5057" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9548c23a-614b-4264-8b75-74380609b853" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9453" + ], + "x-ms-request-id": [ + "c69f9b08-030b-4a95-9b47-171395c466c8" + ], + "x-ms-correlation-request-id": [ + "c69f9b08-030b-4a95-9b47-171395c466c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021359Z:c69f9b08-030b-4a95-9b47-171395c466c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9003687-1188-4be0-aa46-117805627d28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9452" + ], + "x-ms-request-id": [ + "da65982d-e7ee-45d6-8978-b953b5c15e4f" + ], + "x-ms-correlation-request-id": [ + "da65982d-e7ee-45d6-8978-b953b5c15e4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021359Z:da65982d-e7ee-45d6-8978-b953b5c15e4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae6c8286-873e-463b-b3d8-c47fbf0e6397" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9451" + ], + "x-ms-request-id": [ + "de9b182a-1a21-4ee9-b994-947ad820c981" + ], + "x-ms-correlation-request-id": [ + "de9b182a-1a21-4ee9-b994-947ad820c981" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021359Z:de9b182a-1a21-4ee9-b994-947ad820c981" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fa080b5-c87c-48b7-b2e5-50c9aba1ab93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9450" + ], + "x-ms-request-id": [ + "f67432e4-97cc-41cf-acd4-6b11a1de63fc" + ], + "x-ms-correlation-request-id": [ + "f67432e4-97cc-41cf-acd4-6b11a1de63fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021359Z:f67432e4-97cc-41cf-acd4-6b11a1de63fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ba2d2fa-bf8e-4338-bc10-5bd22b83af9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9449" + ], + "x-ms-request-id": [ + "a2a2fdc5-cb1e-439f-9cd4-ec47069765e6" + ], + "x-ms-correlation-request-id": [ + "a2a2fdc5-cb1e-439f-9cd4-ec47069765e6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021359Z:a2a2fdc5-cb1e-439f-9cd4-ec47069765e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:58 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58ee7383-0657-482f-97e8-87dd748163d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9448" + ], + "x-ms-request-id": [ + "28eb8f66-5b11-49ef-a0ae-5e381cd9483b" + ], + "x-ms-correlation-request-id": [ + "28eb8f66-5b11-49ef-a0ae-5e381cd9483b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:28eb8f66-5b11-49ef-a0ae-5e381cd9483b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "223b58e5-911c-4274-bd47-6d644ecd617c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9447" + ], + "x-ms-request-id": [ + "e9f03f05-aefc-4325-a7cf-083ca1d4b08d" + ], + "x-ms-correlation-request-id": [ + "e9f03f05-aefc-4325-a7cf-083ca1d4b08d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:e9f03f05-aefc-4325-a7cf-083ca1d4b08d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61c0dd24-ad22-4125-8d6d-9bf27221c199" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9446" + ], + "x-ms-request-id": [ + "e0137713-cb3b-46bd-9f79-c52046f0bf6d" + ], + "x-ms-correlation-request-id": [ + "e0137713-cb3b-46bd-9f79-c52046f0bf6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:e0137713-cb3b-46bd-9f79-c52046f0bf6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f433f0f1-ee14-4c3c-8b01-6e96c30003dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9445" + ], + "x-ms-request-id": [ + "c3b4da6c-f075-4310-a842-858e8fb2f687" + ], + "x-ms-correlation-request-id": [ + "c3b4da6c-f075-4310-a842-858e8fb2f687" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:c3b4da6c-f075-4310-a842-858e8fb2f687" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43876538-8591-42ee-878b-760ace1001b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9444" + ], + "x-ms-request-id": [ + "5bec38af-4c68-4dce-b11b-259404df66e3" + ], + "x-ms-correlation-request-id": [ + "5bec38af-4c68-4dce-b11b-259404df66e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:5bec38af-4c68-4dce-b11b-259404df66e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2f199cd-cc17-4b6c-b0b9-d4bafd0ae82e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9443" + ], + "x-ms-request-id": [ + "b4cdb9de-a34c-4565-ac82-dc7927b83895" + ], + "x-ms-correlation-request-id": [ + "b4cdb9de-a34c-4565-ac82-dc7927b83895" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021400Z:b4cdb9de-a34c-4565-ac82-dc7927b83895" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:13:59 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f93ac97-0788-4a75-be55-6300a1db3866" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9442" + ], + "x-ms-request-id": [ + "32921feb-9263-4c71-a370-600d2dcaa2b0" + ], + "x-ms-correlation-request-id": [ + "32921feb-9263-4c71-a370-600d2dcaa2b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:32921feb-9263-4c71-a370-600d2dcaa2b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4276a2c7-af34-4582-9211-3fa212e4fcef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9441" + ], + "x-ms-request-id": [ + "ac56cdf4-389d-4517-85f8-71eaebee31ce" + ], + "x-ms-correlation-request-id": [ + "ac56cdf4-389d-4517-85f8-71eaebee31ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:ac56cdf4-389d-4517-85f8-71eaebee31ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6f6eb95-90cc-467e-83dd-533b2ec893cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9440" + ], + "x-ms-request-id": [ + "3dc15aa9-7507-4948-9112-86603b958292" + ], + "x-ms-correlation-request-id": [ + "3dc15aa9-7507-4948-9112-86603b958292" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:3dc15aa9-7507-4948-9112-86603b958292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c576ef8b-8564-4f3e-8910-50ccff82331d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9439" + ], + "x-ms-request-id": [ + "71be9781-7726-4fad-b577-05228ba948f1" + ], + "x-ms-correlation-request-id": [ + "71be9781-7726-4fad-b577-05228ba948f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:71be9781-7726-4fad-b577-05228ba948f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c540b410-ff55-4f0e-a11d-75d30b0ca9cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9438" + ], + "x-ms-request-id": [ + "f707fd9f-e9c5-4844-a85d-72b73ab47a2a" + ], + "x-ms-correlation-request-id": [ + "f707fd9f-e9c5-4844-a85d-72b73ab47a2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:f707fd9f-e9c5-4844-a85d-72b73ab47a2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b8847fc-126f-4a94-ab9f-66e154897108" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9437" + ], + "x-ms-request-id": [ + "8882e002-a471-42f5-bf9f-4bc563ecf9b2" + ], + "x-ms-correlation-request-id": [ + "8882e002-a471-42f5-bf9f-4bc563ecf9b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021401Z:8882e002-a471-42f5-bf9f-4bc563ecf9b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:00 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8172dc32-1854-4011-89c8-453beab45d89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9436" + ], + "x-ms-request-id": [ + "82b4123a-f1f4-4607-8ec0-de851bf7f97f" + ], + "x-ms-correlation-request-id": [ + "82b4123a-f1f4-4607-8ec0-de851bf7f97f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:82b4123a-f1f4-4607-8ec0-de851bf7f97f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2437fa1e-f4f3-4ea4-9084-1841153d89e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9435" + ], + "x-ms-request-id": [ + "c4e45c9c-f2c0-4882-b220-851360cf978a" + ], + "x-ms-correlation-request-id": [ + "c4e45c9c-f2c0-4882-b220-851360cf978a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:c4e45c9c-f2c0-4882-b220-851360cf978a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df6b2b42-d560-4bf1-8244-5a8449bf8ada" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9434" + ], + "x-ms-request-id": [ + "6acee51d-65a2-4106-95ad-df08ea3704d2" + ], + "x-ms-correlation-request-id": [ + "6acee51d-65a2-4106-95ad-df08ea3704d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:6acee51d-65a2-4106-95ad-df08ea3704d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae682b8a-e727-4a72-88e0-a33e8523ef12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9433" + ], + "x-ms-request-id": [ + "be4a8329-e718-44ea-b680-2075b57577dc" + ], + "x-ms-correlation-request-id": [ + "be4a8329-e718-44ea-b680-2075b57577dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:be4a8329-e718-44ea-b680-2075b57577dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6772558c-1b2d-4a6c-890a-7a8a65b5287a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9432" + ], + "x-ms-request-id": [ + "0eff369f-fa30-487a-ac6f-fdf0b444aa9f" + ], + "x-ms-correlation-request-id": [ + "0eff369f-fa30-487a-ac6f-fdf0b444aa9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:0eff369f-fa30-487a-ac6f-fdf0b444aa9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42f8d7ff-d033-423d-9b0b-3f24e4ef642a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9431" + ], + "x-ms-request-id": [ + "30d30fdb-1b26-43d1-b319-c51b04854201" + ], + "x-ms-correlation-request-id": [ + "30d30fdb-1b26-43d1-b319-c51b04854201" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021402Z:30d30fdb-1b26-43d1-b319-c51b04854201" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:02 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fda181be-ffc7-4272-90fc-6302cf767d6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9430" + ], + "x-ms-request-id": [ + "8b252704-fbca-4084-8ccb-fe2d4137b586" + ], + "x-ms-correlation-request-id": [ + "8b252704-fbca-4084-8ccb-fe2d4137b586" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:8b252704-fbca-4084-8ccb-fe2d4137b586" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "913c0140-d669-44db-be01-87a263e0f833" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9429" + ], + "x-ms-request-id": [ + "3b4194c8-3801-4de8-90e5-634ebd0be45d" + ], + "x-ms-correlation-request-id": [ + "3b4194c8-3801-4de8-90e5-634ebd0be45d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:3b4194c8-3801-4de8-90e5-634ebd0be45d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c0696c8-9f81-4abd-960b-f90262dcc514" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9428" + ], + "x-ms-request-id": [ + "1cd00df7-d8b1-4852-ad38-7ef2c08d1c8a" + ], + "x-ms-correlation-request-id": [ + "1cd00df7-d8b1-4852-ad38-7ef2c08d1c8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:1cd00df7-d8b1-4852-ad38-7ef2c08d1c8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f13b5f8-bc0a-4d0c-bc28-8f9469ab78b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9427" + ], + "x-ms-request-id": [ + "1311555c-c529-4058-8546-f65467209f29" + ], + "x-ms-correlation-request-id": [ + "1311555c-c529-4058-8546-f65467209f29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:1311555c-c529-4058-8546-f65467209f29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01a318d3-a8b3-462c-9b7c-77bd266fbe64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9426" + ], + "x-ms-request-id": [ + "143fd4a2-53a5-4185-b9f3-683fd1a995f7" + ], + "x-ms-correlation-request-id": [ + "143fd4a2-53a5-4185-b9f3-683fd1a995f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:143fd4a2-53a5-4185-b9f3-683fd1a995f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a5734ce-83f6-4e40-97fb-5730551fc167" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9425" + ], + "x-ms-request-id": [ + "448ee775-c3a7-4a35-ae23-094158e884f4" + ], + "x-ms-correlation-request-id": [ + "448ee775-c3a7-4a35-ae23-094158e884f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021403Z:448ee775-c3a7-4a35-ae23-094158e884f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:03 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b77a1350-c31d-4a4c-9075-a33be1a3f90e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9424" + ], + "x-ms-request-id": [ + "a6acca3c-2bbb-4c24-9ddd-037f8d03a2a6" + ], + "x-ms-correlation-request-id": [ + "a6acca3c-2bbb-4c24-9ddd-037f8d03a2a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021404Z:a6acca3c-2bbb-4c24-9ddd-037f8d03a2a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:04 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9cba06e-764f-44b9-b30e-d45d68ce7907" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9423" + ], + "x-ms-request-id": [ + "276b4b1b-69f9-4a4b-9f08-68ca25faee4f" + ], + "x-ms-correlation-request-id": [ + "276b4b1b-69f9-4a4b-9f08-68ca25faee4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021404Z:276b4b1b-69f9-4a4b-9f08-68ca25faee4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:04 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6e5c16c-f454-4d3d-bad5-7763b6e885a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9422" + ], + "x-ms-request-id": [ + "550cc450-e162-4e5c-8340-1ed4dfcce2e4" + ], + "x-ms-correlation-request-id": [ + "550cc450-e162-4e5c-8340-1ed4dfcce2e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021404Z:550cc450-e162-4e5c-8340-1ed4dfcce2e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:04 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44890aba-f5d0-409a-9f94-da5f547b7374" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9421" + ], + "x-ms-request-id": [ + "72004286-548d-4a75-9334-3367edbb260e" + ], + "x-ms-correlation-request-id": [ + "72004286-548d-4a75-9334-3367edbb260e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021404Z:72004286-548d-4a75-9334-3367edbb260e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:04 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f78e84fa-e414-40e3-8c38-7a9cb75ffa65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9420" + ], + "x-ms-request-id": [ + "d68d1e04-628d-44b3-acea-137e72ffe2dd" + ], + "x-ms-correlation-request-id": [ + "d68d1e04-628d-44b3-acea-137e72ffe2dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021404Z:d68d1e04-628d-44b3-acea-137e72ffe2dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:04 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9b550ba-b483-4d18-b81b-8ee9075586b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9419" + ], + "x-ms-request-id": [ + "2196ddd9-d052-49da-b9b2-48c451d787b0" + ], + "x-ms-correlation-request-id": [ + "2196ddd9-d052-49da-b9b2-48c451d787b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:2196ddd9-d052-49da-b9b2-48c451d787b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ad8ec99-2125-47f3-9683-7cea4979403b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9418" + ], + "x-ms-request-id": [ + "f2b4cbf5-d748-488c-98bd-77d75bb48fe8" + ], + "x-ms-correlation-request-id": [ + "f2b4cbf5-d748-488c-98bd-77d75bb48fe8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:f2b4cbf5-d748-488c-98bd-77d75bb48fe8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "806f2cdf-3603-4ebb-95f4-f1e30450814d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9417" + ], + "x-ms-request-id": [ + "ea471f32-ed36-4d22-a5d2-006f2819c4d6" + ], + "x-ms-correlation-request-id": [ + "ea471f32-ed36-4d22-a5d2-006f2819c4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:ea471f32-ed36-4d22-a5d2-006f2819c4d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08775646-db3e-48f2-bf99-64daabe4b6b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9416" + ], + "x-ms-request-id": [ + "ebc8e828-fa57-40f3-873a-3c3a411841c8" + ], + "x-ms-correlation-request-id": [ + "ebc8e828-fa57-40f3-873a-3c3a411841c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:ebc8e828-fa57-40f3-873a-3c3a411841c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68ac9d7d-a1db-4cb2-8cdc-2adf259613ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9415" + ], + "x-ms-request-id": [ + "6bdceead-20a9-4cb0-8c86-67236a5965af" + ], + "x-ms-correlation-request-id": [ + "6bdceead-20a9-4cb0-8c86-67236a5965af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:6bdceead-20a9-4cb0-8c86-67236a5965af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8c531d8-1d1f-4062-8b50-f92fb5750461" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9414" + ], + "x-ms-request-id": [ + "f1f88b99-be3b-4373-9ac8-09834586d1e7" + ], + "x-ms-correlation-request-id": [ + "f1f88b99-be3b-4373-9ac8-09834586d1e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021405Z:f1f88b99-be3b-4373-9ac8-09834586d1e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:05 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f941a638-0e16-4b41-bd79-4e80b1f3daa1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9413" + ], + "x-ms-request-id": [ + "b432c869-3683-481f-b382-a3741b181241" + ], + "x-ms-correlation-request-id": [ + "b432c869-3683-481f-b382-a3741b181241" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:b432c869-3683-481f-b382-a3741b181241" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c823b4a7-2663-4a28-a050-bd4a891fc5ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9412" + ], + "x-ms-request-id": [ + "8a6e2e21-d249-4626-b2da-a743515f8c8d" + ], + "x-ms-correlation-request-id": [ + "8a6e2e21-d249-4626-b2da-a743515f8c8d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:8a6e2e21-d249-4626-b2da-a743515f8c8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e224e231-a82a-4d60-bc2d-97ed5ac45f3e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9411" + ], + "x-ms-request-id": [ + "f07ed0cb-ccc4-422d-a707-a678b5a97fc3" + ], + "x-ms-correlation-request-id": [ + "f07ed0cb-ccc4-422d-a707-a678b5a97fc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:f07ed0cb-ccc4-422d-a707-a678b5a97fc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f9f66b2-2baf-40cc-9a40-3e09d4685603" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9410" + ], + "x-ms-request-id": [ + "2ffa501b-31c5-40ec-bf7b-61beacc84345" + ], + "x-ms-correlation-request-id": [ + "2ffa501b-31c5-40ec-bf7b-61beacc84345" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:2ffa501b-31c5-40ec-bf7b-61beacc84345" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4a81c33-a353-4f35-803f-2733920bfccf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9409" + ], + "x-ms-request-id": [ + "b038db7e-6ef4-40b6-b069-198e6adbf31d" + ], + "x-ms-correlation-request-id": [ + "b038db7e-6ef4-40b6-b069-198e6adbf31d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:b038db7e-6ef4-40b6-b069-198e6adbf31d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3feb429d-e6f2-4213-9343-c6ecfb9e3929" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9408" + ], + "x-ms-request-id": [ + "72f5c601-5593-4ecb-9def-a5146eba69d5" + ], + "x-ms-correlation-request-id": [ + "72f5c601-5593-4ecb-9def-a5146eba69d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021406Z:72f5c601-5593-4ecb-9def-a5146eba69d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:06 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60ff8fc5-954f-4022-b5fd-9543913b007d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9407" + ], + "x-ms-request-id": [ + "f32ff505-a95d-4440-8ecc-8eea849b4228" + ], + "x-ms-correlation-request-id": [ + "f32ff505-a95d-4440-8ecc-8eea849b4228" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:f32ff505-a95d-4440-8ecc-8eea849b4228" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70a4fc09-cbd3-48ed-9f43-39160aff0824" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9406" + ], + "x-ms-request-id": [ + "d67c2903-6c02-4616-b4cb-887f0ce3f412" + ], + "x-ms-correlation-request-id": [ + "d67c2903-6c02-4616-b4cb-887f0ce3f412" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:d67c2903-6c02-4616-b4cb-887f0ce3f412" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1aee75bc-b1f3-4fee-83bf-416c161e382d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9405" + ], + "x-ms-request-id": [ + "8671af2c-7c22-4d37-a99d-fae4025a7f4a" + ], + "x-ms-correlation-request-id": [ + "8671af2c-7c22-4d37-a99d-fae4025a7f4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:8671af2c-7c22-4d37-a99d-fae4025a7f4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0639ad34-0d33-4afe-9edc-cfdbe4a501b7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9404" + ], + "x-ms-request-id": [ + "bf1bf21a-2dad-458e-b4ce-d344cebd7c69" + ], + "x-ms-correlation-request-id": [ + "bf1bf21a-2dad-458e-b4ce-d344cebd7c69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:bf1bf21a-2dad-458e-b4ce-d344cebd7c69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eed090a1-197c-4505-8fbb-a3d49b8bf80e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9403" + ], + "x-ms-request-id": [ + "8b62377e-c570-4578-97f9-e48ed651b907" + ], + "x-ms-correlation-request-id": [ + "8b62377e-c570-4578-97f9-e48ed651b907" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:8b62377e-c570-4578-97f9-e48ed651b907" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8c0f00-3004-4578-89b4-e302e4f8b97b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9402" + ], + "x-ms-request-id": [ + "566ee2c2-3ce7-46a7-87a5-ffd0da3d8f99" + ], + "x-ms-correlation-request-id": [ + "566ee2c2-3ce7-46a7-87a5-ffd0da3d8f99" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021407Z:566ee2c2-3ce7-46a7-87a5-ffd0da3d8f99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:07 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e419ec0f-0afd-44c1-b151-dad273e69f6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9401" + ], + "x-ms-request-id": [ + "8d44ccd4-fa2f-40e8-a9c3-7d5c281fa4e7" + ], + "x-ms-correlation-request-id": [ + "8d44ccd4-fa2f-40e8-a9c3-7d5c281fa4e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021408Z:8d44ccd4-fa2f-40e8-a9c3-7d5c281fa4e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:08 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "102ca8db-3ba5-43aa-9e66-1b7aaac9099d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9400" + ], + "x-ms-request-id": [ + "2f965a2d-c65d-45c7-9c50-74e5250a2272" + ], + "x-ms-correlation-request-id": [ + "2f965a2d-c65d-45c7-9c50-74e5250a2272" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021408Z:2f965a2d-c65d-45c7-9c50-74e5250a2272" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:08 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2943b344-c6bf-4e9b-bc29-04a3dcd2af39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9399" + ], + "x-ms-request-id": [ + "68d998cf-0100-4cb5-96ac-5e8e29d4285d" + ], + "x-ms-correlation-request-id": [ + "68d998cf-0100-4cb5-96ac-5e8e29d4285d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021408Z:68d998cf-0100-4cb5-96ac-5e8e29d4285d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:08 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8568fe87-3934-4078-ba3a-6d0cd9af946a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9398" + ], + "x-ms-request-id": [ + "3f6c0297-db6b-4386-a117-7a99eb2cca5c" + ], + "x-ms-correlation-request-id": [ + "3f6c0297-db6b-4386-a117-7a99eb2cca5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021408Z:3f6c0297-db6b-4386-a117-7a99eb2cca5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:08 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa7855a4-7296-42da-a0af-dc2dc01edd71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9397" + ], + "x-ms-request-id": [ + "77c3ca96-9e32-4296-bafa-e6b01c346bf5" + ], + "x-ms-correlation-request-id": [ + "77c3ca96-9e32-4296-bafa-e6b01c346bf5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021409Z:77c3ca96-9e32-4296-bafa-e6b01c346bf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd13c565-fa54-4d00-81dd-f5208830e82a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9396" + ], + "x-ms-request-id": [ + "37a1b7e3-9e33-49a2-a329-7843c6b02292" + ], + "x-ms-correlation-request-id": [ + "37a1b7e3-9e33-49a2-a329-7843c6b02292" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021409Z:37a1b7e3-9e33-49a2-a329-7843c6b02292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89d3d8d5-24cb-4674-a58a-74444bf17ab9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9395" + ], + "x-ms-request-id": [ + "e31efa5c-c4ca-4d37-8cd4-abf5401ca1a9" + ], + "x-ms-correlation-request-id": [ + "e31efa5c-c4ca-4d37-8cd4-abf5401ca1a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021409Z:e31efa5c-c4ca-4d37-8cd4-abf5401ca1a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8bbef76-461d-490b-8480-82ba6d7a1f51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9394" + ], + "x-ms-request-id": [ + "92c07ed0-15ff-47e1-be3c-7d2eebd047a3" + ], + "x-ms-correlation-request-id": [ + "92c07ed0-15ff-47e1-be3c-7d2eebd047a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021409Z:92c07ed0-15ff-47e1-be3c-7d2eebd047a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6171c3ee-11b9-4bae-8a28-9beea6ca8476" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9393" + ], + "x-ms-request-id": [ + "b7c3840e-2518-4437-924b-2f16c042883d" + ], + "x-ms-correlation-request-id": [ + "b7c3840e-2518-4437-924b-2f16c042883d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021409Z:b7c3840e-2518-4437-924b-2f16c042883d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "758669bf-6eba-4f6c-95a1-ac2546f39956" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9392" + ], + "x-ms-request-id": [ + "9a937eaf-8556-49a6-975c-04cb0cdbaa67" + ], + "x-ms-correlation-request-id": [ + "9a937eaf-8556-49a6-975c-04cb0cdbaa67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:9a937eaf-8556-49a6-975c-04cb0cdbaa67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:09 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06932d78-5813-40b8-8f8a-3ae4a00b28f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9391" + ], + "x-ms-request-id": [ + "c25c1565-b484-435f-a17f-3249b269d2e9" + ], + "x-ms-correlation-request-id": [ + "c25c1565-b484-435f-a17f-3249b269d2e9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:c25c1565-b484-435f-a17f-3249b269d2e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "775e486b-7815-48ed-b81f-eb0287fad30d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9390" + ], + "x-ms-request-id": [ + "9aee2c97-721d-42de-ad3f-98511b443dea" + ], + "x-ms-correlation-request-id": [ + "9aee2c97-721d-42de-ad3f-98511b443dea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:9aee2c97-721d-42de-ad3f-98511b443dea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1136d132-d735-4c94-abc0-0820302ec2b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9389" + ], + "x-ms-request-id": [ + "9722d362-b1fa-476a-86dc-0b44880be0a9" + ], + "x-ms-correlation-request-id": [ + "9722d362-b1fa-476a-86dc-0b44880be0a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:9722d362-b1fa-476a-86dc-0b44880be0a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7044adff-2d71-447b-8a8a-b0d0c69111b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9388" + ], + "x-ms-request-id": [ + "1628b4ba-cbef-455e-80d6-c2b068dcf919" + ], + "x-ms-correlation-request-id": [ + "1628b4ba-cbef-455e-80d6-c2b068dcf919" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:1628b4ba-cbef-455e-80d6-c2b068dcf919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8565e0e3-77a5-46a3-9897-d26df4c44ca7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9387" + ], + "x-ms-request-id": [ + "02139df5-a416-4776-9acb-cfaeb248db63" + ], + "x-ms-correlation-request-id": [ + "02139df5-a416-4776-9acb-cfaeb248db63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021410Z:02139df5-a416-4776-9acb-cfaeb248db63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d70ee3d-4bbe-4168-a7ff-b769a99331be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9386" + ], + "x-ms-request-id": [ + "4097c978-511e-4d0b-a25c-e5f1ae232c9f" + ], + "x-ms-correlation-request-id": [ + "4097c978-511e-4d0b-a25c-e5f1ae232c9f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:4097c978-511e-4d0b-a25c-e5f1ae232c9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:10 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d19aa819-a0f7-4855-9e84-3d3ce01a2d60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9385" + ], + "x-ms-request-id": [ + "43eec36a-9d02-432f-95e1-bb3b78e61652" + ], + "x-ms-correlation-request-id": [ + "43eec36a-9d02-432f-95e1-bb3b78e61652" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:43eec36a-9d02-432f-95e1-bb3b78e61652" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:11 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1669dbc9-e059-4094-ab3f-4b97cd4535ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9384" + ], + "x-ms-request-id": [ + "9a70ea22-b1a3-42f3-815c-873ceb3b7033" + ], + "x-ms-correlation-request-id": [ + "9a70ea22-b1a3-42f3-815c-873ceb3b7033" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:9a70ea22-b1a3-42f3-815c-873ceb3b7033" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:11 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e0d920-86b8-45ac-9e8b-8bab72c97814" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9383" + ], + "x-ms-request-id": [ + "8dac5421-d6c6-4fb2-8c55-d54326de919f" + ], + "x-ms-correlation-request-id": [ + "8dac5421-d6c6-4fb2-8c55-d54326de919f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:8dac5421-d6c6-4fb2-8c55-d54326de919f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:11 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25f98cff-c72f-4f39-8a12-b8dee77254d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9382" + ], + "x-ms-request-id": [ + "ec415212-4b51-4a75-8f4b-8d51d9b82134" + ], + "x-ms-correlation-request-id": [ + "ec415212-4b51-4a75-8f4b-8d51d9b82134" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:ec415212-4b51-4a75-8f4b-8d51d9b82134" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:11 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c6153c8-db4c-4bec-9aa2-f67bc3edebc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9381" + ], + "x-ms-request-id": [ + "2701e94c-fcfb-422c-8189-9c4fa82c6515" + ], + "x-ms-correlation-request-id": [ + "2701e94c-fcfb-422c-8189-9c4fa82c6515" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021411Z:2701e94c-fcfb-422c-8189-9c4fa82c6515" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:11 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc5c972c-4bc8-41ff-8831-d47be2f349ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9380" + ], + "x-ms-request-id": [ + "31da6f71-21e6-4b17-8f85-c1fbfe331172" + ], + "x-ms-correlation-request-id": [ + "31da6f71-21e6-4b17-8f85-c1fbfe331172" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:31da6f71-21e6-4b17-8f85-c1fbfe331172" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3135fc8-c57a-4a28-abae-7cfe7a25f382" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9379" + ], + "x-ms-request-id": [ + "9deed7f0-0dac-486a-8cfe-686804ea0416" + ], + "x-ms-correlation-request-id": [ + "9deed7f0-0dac-486a-8cfe-686804ea0416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:9deed7f0-0dac-486a-8cfe-686804ea0416" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b38b0be2-06ab-4f44-9ff3-18016f8e77cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9378" + ], + "x-ms-request-id": [ + "54c72ba4-46fa-4124-bc8d-66926144eea1" + ], + "x-ms-correlation-request-id": [ + "54c72ba4-46fa-4124-bc8d-66926144eea1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:54c72ba4-46fa-4124-bc8d-66926144eea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47d30f11-9ef3-4447-8791-7fc4d017febd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9377" + ], + "x-ms-request-id": [ + "18d952f5-b966-40e4-8fbb-0df6e3c8eda4" + ], + "x-ms-correlation-request-id": [ + "18d952f5-b966-40e4-8fbb-0df6e3c8eda4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:18d952f5-b966-40e4-8fbb-0df6e3c8eda4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f53c6561-ec3e-407f-a914-3619c95ac9b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9376" + ], + "x-ms-request-id": [ + "219559d8-7f26-42b0-801f-54ead5a4618f" + ], + "x-ms-correlation-request-id": [ + "219559d8-7f26-42b0-801f-54ead5a4618f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:219559d8-7f26-42b0-801f-54ead5a4618f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b6552fe-4396-416e-83da-7bbe6cbbbbdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9375" + ], + "x-ms-request-id": [ + "76b687a8-de01-4b9b-8a1e-af8609f24951" + ], + "x-ms-correlation-request-id": [ + "76b687a8-de01-4b9b-8a1e-af8609f24951" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021412Z:76b687a8-de01-4b9b-8a1e-af8609f24951" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:12 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b1f36c3-44df-4909-8639-c96d10a056ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9374" + ], + "x-ms-request-id": [ + "83d524d8-0124-48ec-944f-def115b4c76b" + ], + "x-ms-correlation-request-id": [ + "83d524d8-0124-48ec-944f-def115b4c76b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:83d524d8-0124-48ec-944f-def115b4c76b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c87b060-c247-40ed-aab9-69cd2e510154" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9373" + ], + "x-ms-request-id": [ + "de96083e-e2c9-497a-8632-acef8950c8fc" + ], + "x-ms-correlation-request-id": [ + "de96083e-e2c9-497a-8632-acef8950c8fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:de96083e-e2c9-497a-8632-acef8950c8fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29b98a12-d6df-4b4b-b5fb-1ea8f6ab37d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9372" + ], + "x-ms-request-id": [ + "1e3e053b-2ee4-4993-8764-5afe4ee7f008" + ], + "x-ms-correlation-request-id": [ + "1e3e053b-2ee4-4993-8764-5afe4ee7f008" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:1e3e053b-2ee4-4993-8764-5afe4ee7f008" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc1994b2-6563-4156-9d9d-52c1e8da440c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9371" + ], + "x-ms-request-id": [ + "8249f219-65ca-4e4c-b475-d8ae0e3d772e" + ], + "x-ms-correlation-request-id": [ + "8249f219-65ca-4e4c-b475-d8ae0e3d772e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:8249f219-65ca-4e4c-b475-d8ae0e3d772e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "168e52ea-67d3-4865-89fc-ee9d94647dcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9370" + ], + "x-ms-request-id": [ + "8e43c7cd-59b1-4d49-b438-d9610b7fe1af" + ], + "x-ms-correlation-request-id": [ + "8e43c7cd-59b1-4d49-b438-d9610b7fe1af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:8e43c7cd-59b1-4d49-b438-d9610b7fe1af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b870fd57-7960-43b4-9c7d-a1238a4587c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9369" + ], + "x-ms-request-id": [ + "ecf739b4-99d9-4301-ad22-42aa86ea621c" + ], + "x-ms-correlation-request-id": [ + "ecf739b4-99d9-4301-ad22-42aa86ea621c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021413Z:ecf739b4-99d9-4301-ad22-42aa86ea621c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:13 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a4473a0-a03b-41f0-a6c3-bcd8781f125a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9368" + ], + "x-ms-request-id": [ + "c4739cf9-1e49-4266-9f4d-a34a4ea2611c" + ], + "x-ms-correlation-request-id": [ + "c4739cf9-1e49-4266-9f4d-a34a4ea2611c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:c4739cf9-1e49-4266-9f4d-a34a4ea2611c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a00002d9-53f2-475d-af6d-4c157b22a2bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9367" + ], + "x-ms-request-id": [ + "c3bb052f-cc07-45fb-b105-cfc5a1cf0628" + ], + "x-ms-correlation-request-id": [ + "c3bb052f-cc07-45fb-b105-cfc5a1cf0628" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:c3bb052f-cc07-45fb-b105-cfc5a1cf0628" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee176baf-2445-499c-ba9d-9d5f40b23343" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9366" + ], + "x-ms-request-id": [ + "0c76df99-be47-4815-a9f7-4608879dad58" + ], + "x-ms-correlation-request-id": [ + "0c76df99-be47-4815-a9f7-4608879dad58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:0c76df99-be47-4815-a9f7-4608879dad58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e4d3ae0-8be9-40de-b5e4-d1e73dea2f0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9365" + ], + "x-ms-request-id": [ + "fa1eba9b-4965-4a24-9bb2-addecbd3eed8" + ], + "x-ms-correlation-request-id": [ + "fa1eba9b-4965-4a24-9bb2-addecbd3eed8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:fa1eba9b-4965-4a24-9bb2-addecbd3eed8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4dfe479-c7fa-411a-b5a8-424a2a26cdd0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9364" + ], + "x-ms-request-id": [ + "8832b234-95ce-475c-8fa7-f57c30b83394" + ], + "x-ms-correlation-request-id": [ + "8832b234-95ce-475c-8fa7-f57c30b83394" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:8832b234-95ce-475c-8fa7-f57c30b83394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70da5078-7277-4663-9662-1b093710140d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9363" + ], + "x-ms-request-id": [ + "aeb44226-545a-4ea2-8f21-5a4f71f20261" + ], + "x-ms-correlation-request-id": [ + "aeb44226-545a-4ea2-8f21-5a4f71f20261" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021414Z:aeb44226-545a-4ea2-8f21-5a4f71f20261" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70200632-75ad-4fbe-99b5-4660a03473bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9362" + ], + "x-ms-request-id": [ + "d7824d2d-f768-4db4-9c34-17941c83e57b" + ], + "x-ms-correlation-request-id": [ + "d7824d2d-f768-4db4-9c34-17941c83e57b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021415Z:d7824d2d-f768-4db4-9c34-17941c83e57b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2157d174-6446-4f30-b653-996107271981" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9361" + ], + "x-ms-request-id": [ + "8bd39a4c-0b54-4a67-a775-6172f1590a1c" + ], + "x-ms-correlation-request-id": [ + "8bd39a4c-0b54-4a67-a775-6172f1590a1c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021415Z:8bd39a4c-0b54-4a67-a775-6172f1590a1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "455509de-10c0-482c-be19-a88fa5f91618" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9360" + ], + "x-ms-request-id": [ + "336d96c9-90f3-4d8f-ada3-1a592ad233cc" + ], + "x-ms-correlation-request-id": [ + "336d96c9-90f3-4d8f-ada3-1a592ad233cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021415Z:336d96c9-90f3-4d8f-ada3-1a592ad233cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d67f57dd-5f98-4f82-9550-3c5577006e88" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9359" + ], + "x-ms-request-id": [ + "c6733725-42a3-41e5-acc1-9544e8d952dd" + ], + "x-ms-correlation-request-id": [ + "c6733725-42a3-41e5-acc1-9544e8d952dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021415Z:c6733725-42a3-41e5-acc1-9544e8d952dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93c51c9c-1a9f-4e51-9bc5-30b968640c31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9358" + ], + "x-ms-request-id": [ + "d39eec77-bff5-4df4-8fc8-a5642fc8a629" + ], + "x-ms-correlation-request-id": [ + "d39eec77-bff5-4df4-8fc8-a5642fc8a629" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021415Z:d39eec77-bff5-4df4-8fc8-a5642fc8a629" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5792d96f-dde6-4383-836c-bc877c20abae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9357" + ], + "x-ms-request-id": [ + "5ecbd81d-3cab-486a-9775-0e89aeda3c32" + ], + "x-ms-correlation-request-id": [ + "5ecbd81d-3cab-486a-9775-0e89aeda3c32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:5ecbd81d-3cab-486a-9775-0e89aeda3c32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27789c7a-3579-4b2c-8bf1-eeda17492ad9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9356" + ], + "x-ms-request-id": [ + "4e6719bf-d6fd-40fc-8c71-fed925b6b5a9" + ], + "x-ms-correlation-request-id": [ + "4e6719bf-d6fd-40fc-8c71-fed925b6b5a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:4e6719bf-d6fd-40fc-8c71-fed925b6b5a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c909b-e895-4eee-ad8e-d725b1cd0161" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9355" + ], + "x-ms-request-id": [ + "c290f0b6-0385-45e6-b15f-3f5b6b33d781" + ], + "x-ms-correlation-request-id": [ + "c290f0b6-0385-45e6-b15f-3f5b6b33d781" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:c290f0b6-0385-45e6-b15f-3f5b6b33d781" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4aa82c5e-ba83-4b29-9524-7880c15f3e7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9354" + ], + "x-ms-request-id": [ + "a5ee7d6d-092a-4fec-8cd8-1c9d9bb01173" + ], + "x-ms-correlation-request-id": [ + "a5ee7d6d-092a-4fec-8cd8-1c9d9bb01173" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:a5ee7d6d-092a-4fec-8cd8-1c9d9bb01173" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84945f94-f0c9-421f-906d-6c9ac913276f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9353" + ], + "x-ms-request-id": [ + "64e3f7c2-5ebd-404d-9c30-aa0ca05fafdf" + ], + "x-ms-correlation-request-id": [ + "64e3f7c2-5ebd-404d-9c30-aa0ca05fafdf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:64e3f7c2-5ebd-404d-9c30-aa0ca05fafdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f34a8949-0eba-4c27-8895-dc66bf237db6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9352" + ], + "x-ms-request-id": [ + "5b7bea7c-bb70-4a33-a6d5-89c29bec49f5" + ], + "x-ms-correlation-request-id": [ + "5b7bea7c-bb70-4a33-a6d5-89c29bec49f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021416Z:5b7bea7c-bb70-4a33-a6d5-89c29bec49f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71d66bd4-75aa-4fa5-8015-56d739b662e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9351" + ], + "x-ms-request-id": [ + "de613a43-1e08-4e28-9da6-3e800247f457" + ], + "x-ms-correlation-request-id": [ + "de613a43-1e08-4e28-9da6-3e800247f457" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:de613a43-1e08-4e28-9da6-3e800247f457" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44aabc7b-b513-43c5-85d8-76273e41b3a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9350" + ], + "x-ms-request-id": [ + "808ba752-1b34-4090-9c74-8f34b3f24641" + ], + "x-ms-correlation-request-id": [ + "808ba752-1b34-4090-9c74-8f34b3f24641" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:808ba752-1b34-4090-9c74-8f34b3f24641" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32300b77-c3dd-4650-b5aa-016f1b0fbbc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9349" + ], + "x-ms-request-id": [ + "078b66d3-d66b-4562-8f48-be19adafcf15" + ], + "x-ms-correlation-request-id": [ + "078b66d3-d66b-4562-8f48-be19adafcf15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:078b66d3-d66b-4562-8f48-be19adafcf15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47cecdcd-0d7b-4fa6-b692-4efb04f41e7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9348" + ], + "x-ms-request-id": [ + "522f78ee-8646-47c6-a962-102a79e0b5f8" + ], + "x-ms-correlation-request-id": [ + "522f78ee-8646-47c6-a962-102a79e0b5f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:522f78ee-8646-47c6-a962-102a79e0b5f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de5bb892-a4ed-4cb6-a984-6a6740607150" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9347" + ], + "x-ms-request-id": [ + "6b3123c1-ba02-4c07-8971-5c418a3f48f0" + ], + "x-ms-correlation-request-id": [ + "6b3123c1-ba02-4c07-8971-5c418a3f48f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:6b3123c1-ba02-4c07-8971-5c418a3f48f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9587570-8877-44fa-9e2b-4019dc909a64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9346" + ], + "x-ms-request-id": [ + "be312a81-03c3-4502-af2d-56f0e2348521" + ], + "x-ms-correlation-request-id": [ + "be312a81-03c3-4502-af2d-56f0e2348521" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021417Z:be312a81-03c3-4502-af2d-56f0e2348521" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a28df6-e96a-40ea-9078-f6169e8a05b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9345" + ], + "x-ms-request-id": [ + "2ca95a16-c440-4169-a19d-f59bbd822d5c" + ], + "x-ms-correlation-request-id": [ + "2ca95a16-c440-4169-a19d-f59bbd822d5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:2ca95a16-c440-4169-a19d-f59bbd822d5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b47b1af2-aeb8-48ca-be9a-49fc46b80f06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9344" + ], + "x-ms-request-id": [ + "eedfead3-5182-4cc2-ae2b-de258148310a" + ], + "x-ms-correlation-request-id": [ + "eedfead3-5182-4cc2-ae2b-de258148310a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:eedfead3-5182-4cc2-ae2b-de258148310a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06f09a25-a499-4520-9743-55861aefcff0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9343" + ], + "x-ms-request-id": [ + "c8215fdc-9ac4-4a39-af56-6535a1352ab3" + ], + "x-ms-correlation-request-id": [ + "c8215fdc-9ac4-4a39-af56-6535a1352ab3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:c8215fdc-9ac4-4a39-af56-6535a1352ab3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f1d751d-04b3-4318-a756-84b085340b11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9342" + ], + "x-ms-request-id": [ + "0738d7be-8933-4076-9758-c1d767800b11" + ], + "x-ms-correlation-request-id": [ + "0738d7be-8933-4076-9758-c1d767800b11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:0738d7be-8933-4076-9758-c1d767800b11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81063c39-59a7-4a14-9ecd-b8ab4766ff48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9341" + ], + "x-ms-request-id": [ + "22834146-8909-4e73-b292-0f9c3514b51b" + ], + "x-ms-correlation-request-id": [ + "22834146-8909-4e73-b292-0f9c3514b51b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:22834146-8909-4e73-b292-0f9c3514b51b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2bf5bd82-0891-4d7b-8d34-2e3a63c7314d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9340" + ], + "x-ms-request-id": [ + "82455938-56d3-47b2-88f6-f325b7ca92cc" + ], + "x-ms-correlation-request-id": [ + "82455938-56d3-47b2-88f6-f325b7ca92cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021418Z:82455938-56d3-47b2-88f6-f325b7ca92cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90d43ef9-f57d-4277-9a5b-573f5e896b7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9339" + ], + "x-ms-request-id": [ + "82bf30f1-60fe-4504-81a7-72028c9761e7" + ], + "x-ms-correlation-request-id": [ + "82bf30f1-60fe-4504-81a7-72028c9761e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:82bf30f1-60fe-4504-81a7-72028c9761e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7471a741-1f75-4d03-8635-427d7e05deab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9338" + ], + "x-ms-request-id": [ + "709da5f9-c540-41e7-8303-e201470e2dc8" + ], + "x-ms-correlation-request-id": [ + "709da5f9-c540-41e7-8303-e201470e2dc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:709da5f9-c540-41e7-8303-e201470e2dc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fdbbb37-5040-4ce6-b2d6-673b96c76664" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9337" + ], + "x-ms-request-id": [ + "e14e861d-6fb8-40a4-83d6-df437920e49d" + ], + "x-ms-correlation-request-id": [ + "e14e861d-6fb8-40a4-83d6-df437920e49d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:e14e861d-6fb8-40a4-83d6-df437920e49d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75949882-d2f6-4851-ae6b-1e8b55ac8b65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9336" + ], + "x-ms-request-id": [ + "2620acf6-a9a7-481d-8f4d-c82199a72a8c" + ], + "x-ms-correlation-request-id": [ + "2620acf6-a9a7-481d-8f4d-c82199a72a8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:2620acf6-a9a7-481d-8f4d-c82199a72a8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4bafae9-d045-4467-9ba1-fd5b1c95fe40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9335" + ], + "x-ms-request-id": [ + "8afb256b-76c6-4bab-ad07-97d03f95fe45" + ], + "x-ms-correlation-request-id": [ + "8afb256b-76c6-4bab-ad07-97d03f95fe45" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:8afb256b-76c6-4bab-ad07-97d03f95fe45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ff66d7-357e-441e-b915-006dce8b9d98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9334" + ], + "x-ms-request-id": [ + "2b8389c2-9ae7-4a40-9913-b47ae1c56f2d" + ], + "x-ms-correlation-request-id": [ + "2b8389c2-9ae7-4a40-9913-b47ae1c56f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021419Z:2b8389c2-9ae7-4a40-9913-b47ae1c56f2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab4e3a6-ce6d-47bc-936c-0942f15292bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9333" + ], + "x-ms-request-id": [ + "1877aa3c-43a1-4c54-9d9e-09f575440be8" + ], + "x-ms-correlation-request-id": [ + "1877aa3c-43a1-4c54-9d9e-09f575440be8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:1877aa3c-43a1-4c54-9d9e-09f575440be8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b659aa85-088c-458d-905a-2bf87fc0e0ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9332" + ], + "x-ms-request-id": [ + "f4950d6e-ec8b-4c50-a355-313ac5ac5e7d" + ], + "x-ms-correlation-request-id": [ + "f4950d6e-ec8b-4c50-a355-313ac5ac5e7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:f4950d6e-ec8b-4c50-a355-313ac5ac5e7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6375b249-c61d-43bb-95c7-1499c502ef79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9331" + ], + "x-ms-request-id": [ + "5704e985-cc09-4a6e-b43f-a26438070125" + ], + "x-ms-correlation-request-id": [ + "5704e985-cc09-4a6e-b43f-a26438070125" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:5704e985-cc09-4a6e-b43f-a26438070125" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41236737-0328-4bc3-847a-52da931775bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9330" + ], + "x-ms-request-id": [ + "d0e200bb-0a8c-40bd-a518-b71d6bce437e" + ], + "x-ms-correlation-request-id": [ + "d0e200bb-0a8c-40bd-a518-b71d6bce437e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:d0e200bb-0a8c-40bd-a518-b71d6bce437e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47db9bb8-5221-4452-8258-4cb960c92682" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9329" + ], + "x-ms-request-id": [ + "5f8ebfb7-e26b-4295-847c-6dfe0cafd515" + ], + "x-ms-correlation-request-id": [ + "5f8ebfb7-e26b-4295-847c-6dfe0cafd515" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:5f8ebfb7-e26b-4295-847c-6dfe0cafd515" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4014df83-1e2f-4344-a319-5c4301fe7582" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9328" + ], + "x-ms-request-id": [ + "cb739a32-1bf5-42fc-b104-a88d69459166" + ], + "x-ms-correlation-request-id": [ + "cb739a32-1bf5-42fc-b104-a88d69459166" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021420Z:cb739a32-1bf5-42fc-b104-a88d69459166" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21a82d62-313e-4247-993b-d470b2e1ae8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9327" + ], + "x-ms-request-id": [ + "2c2cfb50-6564-4f2a-b638-3990cd0dceff" + ], + "x-ms-correlation-request-id": [ + "2c2cfb50-6564-4f2a-b638-3990cd0dceff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:2c2cfb50-6564-4f2a-b638-3990cd0dceff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5da8c0f1-6c2a-4fe7-9caa-aa877fbe693a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9326" + ], + "x-ms-request-id": [ + "57a3fdd7-ec76-478d-94c5-e88664b3f4a3" + ], + "x-ms-correlation-request-id": [ + "57a3fdd7-ec76-478d-94c5-e88664b3f4a3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:57a3fdd7-ec76-478d-94c5-e88664b3f4a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9044d14-2614-47f8-bf69-bf0b8090cd0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9325" + ], + "x-ms-request-id": [ + "2e5d7bc5-b45f-40a7-b841-10dce8cdd442" + ], + "x-ms-correlation-request-id": [ + "2e5d7bc5-b45f-40a7-b841-10dce8cdd442" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:2e5d7bc5-b45f-40a7-b841-10dce8cdd442" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cda435a-1b19-4cba-a26a-6b290caf4d92" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9324" + ], + "x-ms-request-id": [ + "f530fb09-5604-4b73-baec-d288f3e0eb9e" + ], + "x-ms-correlation-request-id": [ + "f530fb09-5604-4b73-baec-d288f3e0eb9e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:f530fb09-5604-4b73-baec-d288f3e0eb9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "691209f6-09eb-4ffd-84fa-fecc7ae709a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9323" + ], + "x-ms-request-id": [ + "d27b87c8-2424-44d1-85cd-11f815ea9e57" + ], + "x-ms-correlation-request-id": [ + "d27b87c8-2424-44d1-85cd-11f815ea9e57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:d27b87c8-2424-44d1-85cd-11f815ea9e57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "711ae2e3-7b49-44fe-92e9-346faeea69a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9322" + ], + "x-ms-request-id": [ + "483bcc0f-4032-4de0-aaa1-0a8f5ced3e44" + ], + "x-ms-correlation-request-id": [ + "483bcc0f-4032-4de0-aaa1-0a8f5ced3e44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021421Z:483bcc0f-4032-4de0-aaa1-0a8f5ced3e44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8339d2f5-8a72-491c-9433-ef3c07b259ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9321" + ], + "x-ms-request-id": [ + "66d04b30-c93b-4ea8-9228-cfe0319006ff" + ], + "x-ms-correlation-request-id": [ + "66d04b30-c93b-4ea8-9228-cfe0319006ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:66d04b30-c93b-4ea8-9228-cfe0319006ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bed7511e-7903-41df-b562-87957266f141" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9320" + ], + "x-ms-request-id": [ + "f063d12f-87f0-4178-b5a6-7c5e83f9cba8" + ], + "x-ms-correlation-request-id": [ + "f063d12f-87f0-4178-b5a6-7c5e83f9cba8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:f063d12f-87f0-4178-b5a6-7c5e83f9cba8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bf492f7-ddb3-4b25-8b84-f75988cdb29c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9319" + ], + "x-ms-request-id": [ + "91826d9d-f930-4d60-a898-5e67840d9b4b" + ], + "x-ms-correlation-request-id": [ + "91826d9d-f930-4d60-a898-5e67840d9b4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:91826d9d-f930-4d60-a898-5e67840d9b4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed85b909-1cb4-4ad5-8777-3fca79a4101d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9318" + ], + "x-ms-request-id": [ + "0d393649-d68e-43b6-a5fa-209bace107c4" + ], + "x-ms-correlation-request-id": [ + "0d393649-d68e-43b6-a5fa-209bace107c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:0d393649-d68e-43b6-a5fa-209bace107c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2a2f29c-8ad2-4322-b92d-540a99c3746c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9317" + ], + "x-ms-request-id": [ + "d0709836-1a98-4f89-8ef0-e02c6a484445" + ], + "x-ms-correlation-request-id": [ + "d0709836-1a98-4f89-8ef0-e02c6a484445" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:d0709836-1a98-4f89-8ef0-e02c6a484445" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b96a0c35-039c-4adf-95ef-a0ee57788d18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9316" + ], + "x-ms-request-id": [ + "12eac326-e376-4786-b7e9-a0c2d00954dc" + ], + "x-ms-correlation-request-id": [ + "12eac326-e376-4786-b7e9-a0c2d00954dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021422Z:12eac326-e376-4786-b7e9-a0c2d00954dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56ef4288-e03e-4f1a-9b8f-622ede7c743a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9315" + ], + "x-ms-request-id": [ + "5d77cb7e-2639-4ebe-a848-2accfdae9927" + ], + "x-ms-correlation-request-id": [ + "5d77cb7e-2639-4ebe-a848-2accfdae9927" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021423Z:5d77cb7e-2639-4ebe-a848-2accfdae9927" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f76a50a3-78cc-4896-a434-a8b9313f8cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9314" + ], + "x-ms-request-id": [ + "61609033-de0f-42fb-bb39-b3706685633c" + ], + "x-ms-correlation-request-id": [ + "61609033-de0f-42fb-bb39-b3706685633c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021423Z:61609033-de0f-42fb-bb39-b3706685633c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51b358a3-21f6-48ac-8c62-41c502381905" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9313" + ], + "x-ms-request-id": [ + "a7ca1121-e98a-4510-948c-0da464786230" + ], + "x-ms-correlation-request-id": [ + "a7ca1121-e98a-4510-948c-0da464786230" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021423Z:a7ca1121-e98a-4510-948c-0da464786230" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b579046f-d8d4-4d44-aa3d-d14831b4c597" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9312" + ], + "x-ms-request-id": [ + "e6b059dd-3999-4285-ae0a-c16022834046" + ], + "x-ms-correlation-request-id": [ + "e6b059dd-3999-4285-ae0a-c16022834046" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021423Z:e6b059dd-3999-4285-ae0a-c16022834046" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc4d79ed-bedf-4ada-80d0-8b0dc9b421a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9311" + ], + "x-ms-request-id": [ + "206e0432-82dc-4590-a7fe-e29439ea4c5f" + ], + "x-ms-correlation-request-id": [ + "206e0432-82dc-4590-a7fe-e29439ea4c5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021423Z:206e0432-82dc-4590-a7fe-e29439ea4c5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f83534e9-f1b4-4b10-8595-07548587790c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9310" + ], + "x-ms-request-id": [ + "e2ca41ce-4730-43bf-b523-52a5dcace71e" + ], + "x-ms-correlation-request-id": [ + "e2ca41ce-4730-43bf-b523-52a5dcace71e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:e2ca41ce-4730-43bf-b523-52a5dcace71e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c657b26c-8d25-44d5-a4fd-f42307c84b4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9309" + ], + "x-ms-request-id": [ + "638d654b-554c-4099-8c24-830ac544ee30" + ], + "x-ms-correlation-request-id": [ + "638d654b-554c-4099-8c24-830ac544ee30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:638d654b-554c-4099-8c24-830ac544ee30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94a85a28-98fc-44d5-8bce-c6e0f772793e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9308" + ], + "x-ms-request-id": [ + "64df574f-1b14-4799-b522-4f4416ebd454" + ], + "x-ms-correlation-request-id": [ + "64df574f-1b14-4799-b522-4f4416ebd454" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:64df574f-1b14-4799-b522-4f4416ebd454" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1efe5f20-6697-4eb8-8c28-22cc401ff42e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9307" + ], + "x-ms-request-id": [ + "bc1a6b23-fd24-4680-9bf4-75c6b4f3f0d2" + ], + "x-ms-correlation-request-id": [ + "bc1a6b23-fd24-4680-9bf4-75c6b4f3f0d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:bc1a6b23-fd24-4680-9bf4-75c6b4f3f0d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94b87d93-d067-44d9-bca9-5930803c718d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9306" + ], + "x-ms-request-id": [ + "a4962dce-8113-4600-a85b-060670976cca" + ], + "x-ms-correlation-request-id": [ + "a4962dce-8113-4600-a85b-060670976cca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:a4962dce-8113-4600-a85b-060670976cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e4f4da0-f83a-4eac-85e4-3043546291a0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9305" + ], + "x-ms-request-id": [ + "121459be-37cf-4095-b6f6-9d323f41fc8a" + ], + "x-ms-correlation-request-id": [ + "121459be-37cf-4095-b6f6-9d323f41fc8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021424Z:121459be-37cf-4095-b6f6-9d323f41fc8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bcc295d4-bac1-483c-9dfb-7bdd35bcaf0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9304" + ], + "x-ms-request-id": [ + "caa5586a-8e26-4c6d-9e9a-1d54fb5b2038" + ], + "x-ms-correlation-request-id": [ + "caa5586a-8e26-4c6d-9e9a-1d54fb5b2038" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:caa5586a-8e26-4c6d-9e9a-1d54fb5b2038" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ae6a4ee-be3d-4aa0-8420-76aad93ffb1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9303" + ], + "x-ms-request-id": [ + "59c91e4b-77b6-43b9-9bb9-f63fc8b10158" + ], + "x-ms-correlation-request-id": [ + "59c91e4b-77b6-43b9-9bb9-f63fc8b10158" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:59c91e4b-77b6-43b9-9bb9-f63fc8b10158" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f538d7f6-1037-4dc3-9e97-f2c6181a0578" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9302" + ], + "x-ms-request-id": [ + "65315bb3-64b2-4911-b6de-3f22aeaba2bd" + ], + "x-ms-correlation-request-id": [ + "65315bb3-64b2-4911-b6de-3f22aeaba2bd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:65315bb3-64b2-4911-b6de-3f22aeaba2bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06736a24-21ad-4dc4-95d1-3779754d34f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9301" + ], + "x-ms-request-id": [ + "649fee03-5bab-425e-ba05-d2dadb8f3092" + ], + "x-ms-correlation-request-id": [ + "649fee03-5bab-425e-ba05-d2dadb8f3092" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:649fee03-5bab-425e-ba05-d2dadb8f3092" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b219e2f8-6e37-49bc-8def-7b9f6004e4f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9300" + ], + "x-ms-request-id": [ + "b939a0d7-9b68-427c-94a7-b8ef44020a4f" + ], + "x-ms-correlation-request-id": [ + "b939a0d7-9b68-427c-94a7-b8ef44020a4f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:b939a0d7-9b68-427c-94a7-b8ef44020a4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c6f167e-01dd-4b59-bfd0-8f544a9ebee9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9299" + ], + "x-ms-request-id": [ + "57815a57-f67d-44e5-8a54-369e9f9e780a" + ], + "x-ms-correlation-request-id": [ + "57815a57-f67d-44e5-8a54-369e9f9e780a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021425Z:57815a57-f67d-44e5-8a54-369e9f9e780a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41fa26ad-a3de-447e-b768-057bceb53be0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9298" + ], + "x-ms-request-id": [ + "aceaab1a-118f-416c-8429-0e7e132cbfc1" + ], + "x-ms-correlation-request-id": [ + "aceaab1a-118f-416c-8429-0e7e132cbfc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:aceaab1a-118f-416c-8429-0e7e132cbfc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31fee325-a3d6-4fbf-aaa3-139191771e1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9297" + ], + "x-ms-request-id": [ + "0ed30c5c-552e-4cfa-ad7d-ec28e4069b20" + ], + "x-ms-correlation-request-id": [ + "0ed30c5c-552e-4cfa-ad7d-ec28e4069b20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:0ed30c5c-552e-4cfa-ad7d-ec28e4069b20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff4223db-f168-49a9-8b4f-3c239deb765f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9296" + ], + "x-ms-request-id": [ + "e63b0391-31ee-4cc9-aea3-837c192cc379" + ], + "x-ms-correlation-request-id": [ + "e63b0391-31ee-4cc9-aea3-837c192cc379" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:e63b0391-31ee-4cc9-aea3-837c192cc379" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd65f925-64cf-429f-aa7a-d6ea8f43a797" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9295" + ], + "x-ms-request-id": [ + "ab5870a9-fc66-46a8-8e19-228c351f71f7" + ], + "x-ms-correlation-request-id": [ + "ab5870a9-fc66-46a8-8e19-228c351f71f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:ab5870a9-fc66-46a8-8e19-228c351f71f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ca6e371-6265-49d4-8a9e-8b6d5ab871d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9294" + ], + "x-ms-request-id": [ + "0eeaa905-8be7-4f4a-80fe-6d42a4256c1f" + ], + "x-ms-correlation-request-id": [ + "0eeaa905-8be7-4f4a-80fe-6d42a4256c1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:0eeaa905-8be7-4f4a-80fe-6d42a4256c1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc48f93e-b0e2-4421-a2fa-1b213570f063" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9293" + ], + "x-ms-request-id": [ + "9fd5eae2-f3e0-4771-88fe-5b96c23fca26" + ], + "x-ms-correlation-request-id": [ + "9fd5eae2-f3e0-4771-88fe-5b96c23fca26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021426Z:9fd5eae2-f3e0-4771-88fe-5b96c23fca26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f946054-b0b4-4f6a-a630-4ad46bf8faf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9292" + ], + "x-ms-request-id": [ + "559e0487-7a6f-4453-b8cb-0ad365640bfe" + ], + "x-ms-correlation-request-id": [ + "559e0487-7a6f-4453-b8cb-0ad365640bfe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:559e0487-7a6f-4453-b8cb-0ad365640bfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61c9378b-93f4-4aa8-86ec-15948a153446" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9291" + ], + "x-ms-request-id": [ + "495f62e7-294e-4a46-8906-49293885eb03" + ], + "x-ms-correlation-request-id": [ + "495f62e7-294e-4a46-8906-49293885eb03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:495f62e7-294e-4a46-8906-49293885eb03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e65f02d4-3555-4ca4-b134-c1936a4f9bda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9290" + ], + "x-ms-request-id": [ + "39bdbd69-18b9-479f-94d0-ce3d11b7c72e" + ], + "x-ms-correlation-request-id": [ + "39bdbd69-18b9-479f-94d0-ce3d11b7c72e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:39bdbd69-18b9-479f-94d0-ce3d11b7c72e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8838ecf5-07e3-4c4f-8de6-eb61028ac71f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9289" + ], + "x-ms-request-id": [ + "7b5eea3c-5031-4565-9573-9c14e449bc96" + ], + "x-ms-correlation-request-id": [ + "7b5eea3c-5031-4565-9573-9c14e449bc96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:7b5eea3c-5031-4565-9573-9c14e449bc96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3228105c-8d93-4fdf-b063-5640aa35888e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9288" + ], + "x-ms-request-id": [ + "e2fea8e4-6d0c-488e-8af4-306a965ae8ba" + ], + "x-ms-correlation-request-id": [ + "e2fea8e4-6d0c-488e-8af4-306a965ae8ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:e2fea8e4-6d0c-488e-8af4-306a965ae8ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a6366ba-422d-4021-98df-90faa6df42a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9287" + ], + "x-ms-request-id": [ + "7482e9a9-8f05-495e-b0cc-e9f16def8a39" + ], + "x-ms-correlation-request-id": [ + "7482e9a9-8f05-495e-b0cc-e9f16def8a39" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021427Z:7482e9a9-8f05-495e-b0cc-e9f16def8a39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d46e4e12-5199-45c1-8618-2d99e41371e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9286" + ], + "x-ms-request-id": [ + "cae67e10-c959-4d9e-ae69-a73a642e6874" + ], + "x-ms-correlation-request-id": [ + "cae67e10-c959-4d9e-ae69-a73a642e6874" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:cae67e10-c959-4d9e-ae69-a73a642e6874" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff00f2d8-aed4-4df6-b565-4686c9a34e20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9285" + ], + "x-ms-request-id": [ + "577afb21-d516-4c3c-bca6-3c05e906aa67" + ], + "x-ms-correlation-request-id": [ + "577afb21-d516-4c3c-bca6-3c05e906aa67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:577afb21-d516-4c3c-bca6-3c05e906aa67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6acab7ce-9744-450b-9431-67b7c0803639" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9284" + ], + "x-ms-request-id": [ + "412f2cd4-6558-4f39-ba34-64e83dbd92fb" + ], + "x-ms-correlation-request-id": [ + "412f2cd4-6558-4f39-ba34-64e83dbd92fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:412f2cd4-6558-4f39-ba34-64e83dbd92fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa84c1b7-447f-4ae0-a68e-9867d38e9380" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9283" + ], + "x-ms-request-id": [ + "5be5445a-4749-4ed2-aaf2-7eb680c14abf" + ], + "x-ms-correlation-request-id": [ + "5be5445a-4749-4ed2-aaf2-7eb680c14abf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:5be5445a-4749-4ed2-aaf2-7eb680c14abf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac6359df-df58-48d1-ac79-262850258079" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9282" + ], + "x-ms-request-id": [ + "a07d6f03-5688-44fb-8f48-f79fbdc10e3b" + ], + "x-ms-correlation-request-id": [ + "a07d6f03-5688-44fb-8f48-f79fbdc10e3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:a07d6f03-5688-44fb-8f48-f79fbdc10e3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abeca76e-cf74-40f8-8132-8b6c3ada6a5a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9281" + ], + "x-ms-request-id": [ + "ce6fa455-5067-488c-a280-ffc44c864334" + ], + "x-ms-correlation-request-id": [ + "ce6fa455-5067-488c-a280-ffc44c864334" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021428Z:ce6fa455-5067-488c-a280-ffc44c864334" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "497d13fc-351a-4af5-a5af-4ad9e0d609c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9280" + ], + "x-ms-request-id": [ + "bd660754-265e-467d-9fdf-95c6d79bd053" + ], + "x-ms-correlation-request-id": [ + "bd660754-265e-467d-9fdf-95c6d79bd053" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021429Z:bd660754-265e-467d-9fdf-95c6d79bd053" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49e8010a-3705-446c-80e8-afedce790d06" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9279" + ], + "x-ms-request-id": [ + "8e19bccd-1dc5-429f-95cf-952b0544797d" + ], + "x-ms-correlation-request-id": [ + "8e19bccd-1dc5-429f-95cf-952b0544797d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021429Z:8e19bccd-1dc5-429f-95cf-952b0544797d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3989264f-6e67-48ab-8dd4-b8a3a9706289" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9278" + ], + "x-ms-request-id": [ + "00e48329-5052-4938-af47-f823bd4ea14b" + ], + "x-ms-correlation-request-id": [ + "00e48329-5052-4938-af47-f823bd4ea14b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021429Z:00e48329-5052-4938-af47-f823bd4ea14b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "528ae0ea-64d4-42ba-a0c0-a3e3049c83a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9277" + ], + "x-ms-request-id": [ + "cc8fba78-085f-4409-b904-189ca85854c7" + ], + "x-ms-correlation-request-id": [ + "cc8fba78-085f-4409-b904-189ca85854c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021429Z:cc8fba78-085f-4409-b904-189ca85854c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ed44480-87a2-4d0c-be05-50c29541bc2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9276" + ], + "x-ms-request-id": [ + "dd832c8f-a968-4c8a-8ca9-a6f40a46dd42" + ], + "x-ms-correlation-request-id": [ + "dd832c8f-a968-4c8a-8ca9-a6f40a46dd42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021429Z:dd832c8f-a968-4c8a-8ca9-a6f40a46dd42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2b7134f-2821-42b4-8f5e-dd5e9164f0f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9275" + ], + "x-ms-request-id": [ + "5b2ce1b5-0abd-4eaa-a0fe-54d52bdcb54c" + ], + "x-ms-correlation-request-id": [ + "5b2ce1b5-0abd-4eaa-a0fe-54d52bdcb54c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:5b2ce1b5-0abd-4eaa-a0fe-54d52bdcb54c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de2afe41-727c-4847-8120-6e3085dfbb12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9274" + ], + "x-ms-request-id": [ + "298239b0-c66a-48ad-b56b-1605e1c63741" + ], + "x-ms-correlation-request-id": [ + "298239b0-c66a-48ad-b56b-1605e1c63741" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:298239b0-c66a-48ad-b56b-1605e1c63741" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe1c1505-ab91-4c48-8d27-e7a4b48221aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9273" + ], + "x-ms-request-id": [ + "ecc4155f-b6fc-402d-aeac-502064485c18" + ], + "x-ms-correlation-request-id": [ + "ecc4155f-b6fc-402d-aeac-502064485c18" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:ecc4155f-b6fc-402d-aeac-502064485c18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b9d9aee-a42d-4539-8640-f562ab9f6d7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9272" + ], + "x-ms-request-id": [ + "a4bf4681-3a80-42bb-be19-6b62e4f171b6" + ], + "x-ms-correlation-request-id": [ + "a4bf4681-3a80-42bb-be19-6b62e4f171b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:a4bf4681-3a80-42bb-be19-6b62e4f171b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c46fd905-af5e-44eb-848e-1b3315b3a098" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9271" + ], + "x-ms-request-id": [ + "62eed092-d49d-4809-856f-85ceae742f78" + ], + "x-ms-correlation-request-id": [ + "62eed092-d49d-4809-856f-85ceae742f78" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:62eed092-d49d-4809-856f-85ceae742f78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80f8e6a4-e285-4506-bf66-3b10b3557a00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9270" + ], + "x-ms-request-id": [ + "3ac5b3f1-1609-4617-b83f-4e6274851cc0" + ], + "x-ms-correlation-request-id": [ + "3ac5b3f1-1609-4617-b83f-4e6274851cc0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021430Z:3ac5b3f1-1609-4617-b83f-4e6274851cc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "074bc465-ca71-4966-b2c3-512463defc62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9269" + ], + "x-ms-request-id": [ + "0d62fbeb-fc8e-4fb2-92b1-961e57859ff4" + ], + "x-ms-correlation-request-id": [ + "0d62fbeb-fc8e-4fb2-92b1-961e57859ff4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:0d62fbeb-fc8e-4fb2-92b1-961e57859ff4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f87b5deb-6d9c-405d-8668-8f784ec4218b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9268" + ], + "x-ms-request-id": [ + "4f28eb54-0497-44aa-9967-4df33980cbc9" + ], + "x-ms-correlation-request-id": [ + "4f28eb54-0497-44aa-9967-4df33980cbc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:4f28eb54-0497-44aa-9967-4df33980cbc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e2b9944-30b7-429c-9a11-b1be5359da70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9267" + ], + "x-ms-request-id": [ + "5e727a4d-c812-4d19-b85e-b547d0e3c6af" + ], + "x-ms-correlation-request-id": [ + "5e727a4d-c812-4d19-b85e-b547d0e3c6af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:5e727a4d-c812-4d19-b85e-b547d0e3c6af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b890c77-b885-4533-84bb-f5756aaa09a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9266" + ], + "x-ms-request-id": [ + "7327575e-de87-4958-9d9c-fbbaac4026ac" + ], + "x-ms-correlation-request-id": [ + "7327575e-de87-4958-9d9c-fbbaac4026ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:7327575e-de87-4958-9d9c-fbbaac4026ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "480091fa-be96-4c14-ae34-2de9d2e139fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9265" + ], + "x-ms-request-id": [ + "73ace3a9-1323-42e0-b324-213ae4e9f909" + ], + "x-ms-correlation-request-id": [ + "73ace3a9-1323-42e0-b324-213ae4e9f909" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:73ace3a9-1323-42e0-b324-213ae4e9f909" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adda5cf6-d3ab-4c01-ad33-633451eb319e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9264" + ], + "x-ms-request-id": [ + "69ea3f84-1cec-42c4-a739-3f8e0e804caa" + ], + "x-ms-correlation-request-id": [ + "69ea3f84-1cec-42c4-a739-3f8e0e804caa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021431Z:69ea3f84-1cec-42c4-a739-3f8e0e804caa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f41956a1-e6e6-4b74-bb08-84012e42065b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9263" + ], + "x-ms-request-id": [ + "10b474bc-8491-478c-af1f-9b18e283266b" + ], + "x-ms-correlation-request-id": [ + "10b474bc-8491-478c-af1f-9b18e283266b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:10b474bc-8491-478c-af1f-9b18e283266b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ae9fff4-19d6-4dfd-90c3-78251b825a39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9262" + ], + "x-ms-request-id": [ + "430df61e-c8df-4845-a54d-b37bb29ffc1d" + ], + "x-ms-correlation-request-id": [ + "430df61e-c8df-4845-a54d-b37bb29ffc1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:430df61e-c8df-4845-a54d-b37bb29ffc1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "079d962f-6922-42c0-b198-87d411f6d93a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9261" + ], + "x-ms-request-id": [ + "d24535d9-89fe-47ab-b51b-ebc37d23ff55" + ], + "x-ms-correlation-request-id": [ + "d24535d9-89fe-47ab-b51b-ebc37d23ff55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:d24535d9-89fe-47ab-b51b-ebc37d23ff55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c04d135b-9089-4851-8755-e7c403973126" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9260" + ], + "x-ms-request-id": [ + "480bc521-fbee-40f1-90d4-52d724511c23" + ], + "x-ms-correlation-request-id": [ + "480bc521-fbee-40f1-90d4-52d724511c23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:480bc521-fbee-40f1-90d4-52d724511c23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae7ed985-4cf5-4516-a146-78ae3e96f3b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9259" + ], + "x-ms-request-id": [ + "adee2960-80da-457b-87bc-f0f46785e934" + ], + "x-ms-correlation-request-id": [ + "adee2960-80da-457b-87bc-f0f46785e934" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:adee2960-80da-457b-87bc-f0f46785e934" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4390dc90-728d-47f9-8960-8623f01b2d04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9258" + ], + "x-ms-request-id": [ + "56deec71-77cb-4c95-a6a4-bfc245af740d" + ], + "x-ms-correlation-request-id": [ + "56deec71-77cb-4c95-a6a4-bfc245af740d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021432Z:56deec71-77cb-4c95-a6a4-bfc245af740d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05c0c1fd-b3cb-4314-8069-9b272e9f800f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9257" + ], + "x-ms-request-id": [ + "4669f541-780c-4d5c-8ed4-69533c77806b" + ], + "x-ms-correlation-request-id": [ + "4669f541-780c-4d5c-8ed4-69533c77806b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:4669f541-780c-4d5c-8ed4-69533c77806b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b0a7894-da42-4b92-be81-87b5593b4e6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9256" + ], + "x-ms-request-id": [ + "d93a8b9b-d5b2-4e01-88b1-be1e9b46aaca" + ], + "x-ms-correlation-request-id": [ + "d93a8b9b-d5b2-4e01-88b1-be1e9b46aaca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:d93a8b9b-d5b2-4e01-88b1-be1e9b46aaca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03fb25d5-cdc9-4ddd-a740-5f1c5db76787" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9255" + ], + "x-ms-request-id": [ + "b8d7180c-daa4-4a78-ad25-0d1b73a739aa" + ], + "x-ms-correlation-request-id": [ + "b8d7180c-daa4-4a78-ad25-0d1b73a739aa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:b8d7180c-daa4-4a78-ad25-0d1b73a739aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f5530b9-cb13-4382-bcc3-1578e56614f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9254" + ], + "x-ms-request-id": [ + "62de98e9-f28c-40eb-92b7-4f1ac46f29e8" + ], + "x-ms-correlation-request-id": [ + "62de98e9-f28c-40eb-92b7-4f1ac46f29e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:62de98e9-f28c-40eb-92b7-4f1ac46f29e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e99ee565-edd1-4f56-a287-38380fd85e89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9253" + ], + "x-ms-request-id": [ + "b6d7864f-305c-41ac-86bc-b5090677125e" + ], + "x-ms-correlation-request-id": [ + "b6d7864f-305c-41ac-86bc-b5090677125e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:b6d7864f-305c-41ac-86bc-b5090677125e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aaf5878b-a0c3-4264-9ddb-7f3d13dec834" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9252" + ], + "x-ms-request-id": [ + "65ec5a4e-3b50-4550-8d25-108017f5071e" + ], + "x-ms-correlation-request-id": [ + "65ec5a4e-3b50-4550-8d25-108017f5071e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021433Z:65ec5a4e-3b50-4550-8d25-108017f5071e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae08f731-5d62-4289-bf19-8a49e16e7f4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9251" + ], + "x-ms-request-id": [ + "7ed1267b-744a-452b-b0ac-a0fc84fdafd4" + ], + "x-ms-correlation-request-id": [ + "7ed1267b-744a-452b-b0ac-a0fc84fdafd4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:7ed1267b-744a-452b-b0ac-a0fc84fdafd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0b6b04a-5ed3-4649-8420-6b0f29ae1f35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9250" + ], + "x-ms-request-id": [ + "aceca9c0-b861-44a9-8ff5-f8fee53ff6d6" + ], + "x-ms-correlation-request-id": [ + "aceca9c0-b861-44a9-8ff5-f8fee53ff6d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:aceca9c0-b861-44a9-8ff5-f8fee53ff6d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48af9cd9-3436-48c8-abf8-c11ced4b96c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9249" + ], + "x-ms-request-id": [ + "e4ae3eed-a0f9-419f-ad8a-a27d7b8bb1cd" + ], + "x-ms-correlation-request-id": [ + "e4ae3eed-a0f9-419f-ad8a-a27d7b8bb1cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:e4ae3eed-a0f9-419f-ad8a-a27d7b8bb1cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68d51d29-785e-4711-a337-7344ed6d4018" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9248" + ], + "x-ms-request-id": [ + "b278faaf-b229-45a9-ba0d-1d6075a7da23" + ], + "x-ms-correlation-request-id": [ + "b278faaf-b229-45a9-ba0d-1d6075a7da23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:b278faaf-b229-45a9-ba0d-1d6075a7da23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "008230a2-9a3a-4758-9fef-02f1bb4a0309" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9247" + ], + "x-ms-request-id": [ + "42c467df-4e21-48e4-a864-732eefbac236" + ], + "x-ms-correlation-request-id": [ + "42c467df-4e21-48e4-a864-732eefbac236" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:42c467df-4e21-48e4-a864-732eefbac236" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93a0357e-cdf1-4ba5-be29-40008a5bd908" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9246" + ], + "x-ms-request-id": [ + "82d08e7f-d353-4d50-9f4c-ffac94d7faec" + ], + "x-ms-correlation-request-id": [ + "82d08e7f-d353-4d50-9f4c-ffac94d7faec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021434Z:82d08e7f-d353-4d50-9f4c-ffac94d7faec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41bc99e4-8459-4d9c-80b9-5c59ebc21d7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9245" + ], + "x-ms-request-id": [ + "bb683803-4851-4e7f-94d2-5419638487ed" + ], + "x-ms-correlation-request-id": [ + "bb683803-4851-4e7f-94d2-5419638487ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:bb683803-4851-4e7f-94d2-5419638487ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc2be728-f529-4804-917b-1f0ba8060cd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9244" + ], + "x-ms-request-id": [ + "8cd1cac8-4127-48c6-bf4f-6b22da53aa81" + ], + "x-ms-correlation-request-id": [ + "8cd1cac8-4127-48c6-bf4f-6b22da53aa81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:8cd1cac8-4127-48c6-bf4f-6b22da53aa81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34e6f961-db94-4ff5-9a0e-af9abbee4a78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9243" + ], + "x-ms-request-id": [ + "2da24593-92a1-4a77-a2a7-ad4f66599a86" + ], + "x-ms-correlation-request-id": [ + "2da24593-92a1-4a77-a2a7-ad4f66599a86" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:2da24593-92a1-4a77-a2a7-ad4f66599a86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "213c26b1-2081-4687-905b-e98209496491" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9242" + ], + "x-ms-request-id": [ + "e84b1acd-2818-40b8-b02d-4e9390402cfc" + ], + "x-ms-correlation-request-id": [ + "e84b1acd-2818-40b8-b02d-4e9390402cfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:e84b1acd-2818-40b8-b02d-4e9390402cfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0836eff-7dde-4ac1-aee7-e053949e971b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9241" + ], + "x-ms-request-id": [ + "c58d12f5-85ab-4186-b5cd-e5eb6cdd1cef" + ], + "x-ms-correlation-request-id": [ + "c58d12f5-85ab-4186-b5cd-e5eb6cdd1cef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:c58d12f5-85ab-4186-b5cd-e5eb6cdd1cef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9852836-c93e-4d3d-8937-4ff19fb01872" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9240" + ], + "x-ms-request-id": [ + "714191dc-382d-4fee-b750-0bb87f81e9f2" + ], + "x-ms-correlation-request-id": [ + "714191dc-382d-4fee-b750-0bb87f81e9f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021435Z:714191dc-382d-4fee-b750-0bb87f81e9f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "904cefde-3eae-448b-8ced-1c27b9fe2132" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9239" + ], + "x-ms-request-id": [ + "cdf83494-04b5-4105-8dcf-668c10dfa291" + ], + "x-ms-correlation-request-id": [ + "cdf83494-04b5-4105-8dcf-668c10dfa291" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:cdf83494-04b5-4105-8dcf-668c10dfa291" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "645ecf9d-0327-426f-b9c8-c9fccf066f63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9238" + ], + "x-ms-request-id": [ + "2f074085-7052-40c5-9145-67d1a90ed545" + ], + "x-ms-correlation-request-id": [ + "2f074085-7052-40c5-9145-67d1a90ed545" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:2f074085-7052-40c5-9145-67d1a90ed545" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6be2e041-6155-4acd-a1ea-d16609afb96e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9237" + ], + "x-ms-request-id": [ + "3fcb171c-4306-4020-973e-b9f68c9ed1d8" + ], + "x-ms-correlation-request-id": [ + "3fcb171c-4306-4020-973e-b9f68c9ed1d8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:3fcb171c-4306-4020-973e-b9f68c9ed1d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8be126ca-ef26-4ce1-acf0-dc5edfd35f65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9236" + ], + "x-ms-request-id": [ + "401b8bdf-4b1a-43dd-9739-43ccb04191fc" + ], + "x-ms-correlation-request-id": [ + "401b8bdf-4b1a-43dd-9739-43ccb04191fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:401b8bdf-4b1a-43dd-9739-43ccb04191fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1da1058-802f-4beb-a010-459303833a46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9235" + ], + "x-ms-request-id": [ + "261802b3-e36f-4079-ab69-29f05aa4f7a7" + ], + "x-ms-correlation-request-id": [ + "261802b3-e36f-4079-ab69-29f05aa4f7a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:261802b3-e36f-4079-ab69-29f05aa4f7a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcaed6b1-26ec-4993-a7b4-498b1fbe814f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9234" + ], + "x-ms-request-id": [ + "0d1a38d8-2890-4297-86f5-9553ab109008" + ], + "x-ms-correlation-request-id": [ + "0d1a38d8-2890-4297-86f5-9553ab109008" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021436Z:0d1a38d8-2890-4297-86f5-9553ab109008" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75251de9-ebeb-4fe2-a8c0-5ae2a8c1e49e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9233" + ], + "x-ms-request-id": [ + "37b4061a-6b2f-4838-9482-cd6159b34273" + ], + "x-ms-correlation-request-id": [ + "37b4061a-6b2f-4838-9482-cd6159b34273" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:37b4061a-6b2f-4838-9482-cd6159b34273" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a94e754-e1e3-4a69-872c-f6dffa966083" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9232" + ], + "x-ms-request-id": [ + "3e528e3c-7e83-498a-81aa-4dfb70dc04cc" + ], + "x-ms-correlation-request-id": [ + "3e528e3c-7e83-498a-81aa-4dfb70dc04cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:3e528e3c-7e83-498a-81aa-4dfb70dc04cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85b1b58f-a176-4f5e-ae13-e0e14e8b4893" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9231" + ], + "x-ms-request-id": [ + "7dbf5b97-06fa-4c37-9315-c43238a91c59" + ], + "x-ms-correlation-request-id": [ + "7dbf5b97-06fa-4c37-9315-c43238a91c59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:7dbf5b97-06fa-4c37-9315-c43238a91c59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6900ca05-7a9c-4a97-a438-c6efbcbda342" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9230" + ], + "x-ms-request-id": [ + "2c2bb05f-8220-4abe-8a17-515365b56f83" + ], + "x-ms-correlation-request-id": [ + "2c2bb05f-8220-4abe-8a17-515365b56f83" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:2c2bb05f-8220-4abe-8a17-515365b56f83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7b60981-3f34-43fc-ad1c-872f50f91390" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9229" + ], + "x-ms-request-id": [ + "11a32e03-fdeb-4231-aecf-8644dbe6f545" + ], + "x-ms-correlation-request-id": [ + "11a32e03-fdeb-4231-aecf-8644dbe6f545" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:11a32e03-fdeb-4231-aecf-8644dbe6f545" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "661aa2d0-0e4f-406d-9206-28d447aa0890" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9228" + ], + "x-ms-request-id": [ + "caac17d7-09d4-4a81-8ab0-4ec8d0fb4f29" + ], + "x-ms-correlation-request-id": [ + "caac17d7-09d4-4a81-8ab0-4ec8d0fb4f29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021437Z:caac17d7-09d4-4a81-8ab0-4ec8d0fb4f29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cf1384d-5e45-4644-bb11-735356e9e93d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9227" + ], + "x-ms-request-id": [ + "ab7004fd-5223-492b-8c0c-f012545b57d9" + ], + "x-ms-correlation-request-id": [ + "ab7004fd-5223-492b-8c0c-f012545b57d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:ab7004fd-5223-492b-8c0c-f012545b57d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "033f025a-67bb-4474-9446-db30bbb8150b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9226" + ], + "x-ms-request-id": [ + "b6c93456-f3a3-466a-87ab-558c8b1444ab" + ], + "x-ms-correlation-request-id": [ + "b6c93456-f3a3-466a-87ab-558c8b1444ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:b6c93456-f3a3-466a-87ab-558c8b1444ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aeb28ba0-86b5-4ca4-a6d8-e41a27ec5e46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9225" + ], + "x-ms-request-id": [ + "62fce725-883f-4301-bc39-6dee1b790db0" + ], + "x-ms-correlation-request-id": [ + "62fce725-883f-4301-bc39-6dee1b790db0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:62fce725-883f-4301-bc39-6dee1b790db0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:37 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f84665a-5e99-4219-b255-feac2ed7233f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9224" + ], + "x-ms-request-id": [ + "91ab256d-c5bd-4f21-9e64-adc3612c171e" + ], + "x-ms-correlation-request-id": [ + "91ab256d-c5bd-4f21-9e64-adc3612c171e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:91ab256d-c5bd-4f21-9e64-adc3612c171e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2f49779-2aea-4296-ab89-ff5b6728f357" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9223" + ], + "x-ms-request-id": [ + "7430e0bb-4656-43d7-8079-e02042d20814" + ], + "x-ms-correlation-request-id": [ + "7430e0bb-4656-43d7-8079-e02042d20814" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:7430e0bb-4656-43d7-8079-e02042d20814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91c3c4c1-1584-4d44-9118-0bbc6d1bad3e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9222" + ], + "x-ms-request-id": [ + "480e7127-c7fe-4bf6-ae4b-1e33753ece0d" + ], + "x-ms-correlation-request-id": [ + "480e7127-c7fe-4bf6-ae4b-1e33753ece0d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021438Z:480e7127-c7fe-4bf6-ae4b-1e33753ece0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61c05ae9-8c6e-4431-8a46-db2fc2df502c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9221" + ], + "x-ms-request-id": [ + "ba9abc09-aefc-4a31-9f66-a86a2ac0d14c" + ], + "x-ms-correlation-request-id": [ + "ba9abc09-aefc-4a31-9f66-a86a2ac0d14c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021439Z:ba9abc09-aefc-4a31-9f66-a86a2ac0d14c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7912a190-0a50-448e-877b-584ab14a0e78" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9220" ], "x-ms-request-id": [ - "71fe8351-e7fc-4501-b8e3-d6c0d56bcda2" + "e41a6f47-ea48-46a3-bd4e-e14b59ccea07" ], "x-ms-correlation-request-id": [ - "71fe8351-e7fc-4501-b8e3-d6c0d56bcda2" + "e41a6f47-ea48-46a3-bd4e-e14b59ccea07" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:71fe8351-e7fc-4501-b8e3-d6c0d56bcda2" + "WESTUS2:20210213T021439Z:e41a6f47-ea48-46a3-bd4e-e14b59ccea07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:37 GMT" + "Sat, 13 Feb 2021 02:14: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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42abe5fc-1745-4006-8be8-782b1503ad51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9219" + ], + "x-ms-request-id": [ + "3dbc13a4-611e-422e-bdb3-dfabcfbe9a87" + ], + "x-ms-correlation-request-id": [ + "3dbc13a4-611e-422e-bdb3-dfabcfbe9a87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021439Z:3dbc13a4-611e-422e-bdb3-dfabcfbe9a87" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", @@ -36843,16 +175900,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f79ee-c63c-4333-b496-a1f9975b147c" + "2d243a04-ec4b-49ba-ba57-938dcbcbe237" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36872,31 +175929,91 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11453" + "9218" ], "x-ms-request-id": [ - "aa8f651c-e8a7-43c6-99aa-1fccebb742b0" + "3dc52ddb-584d-4731-80ec-a78488892e67" ], "x-ms-correlation-request-id": [ - "aa8f651c-e8a7-43c6-99aa-1fccebb742b0" + "3dc52ddb-584d-4731-80ec-a78488892e67" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:aa8f651c-e8a7-43c6-99aa-1fccebb742b0" + "WESTUS2:20210213T021439Z:3dc52ddb-584d-4731-80ec-a78488892e67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:37 GMT" + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2388eaf9-2c42-4aaa-aff4-fda3c952f277" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9217" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "x-ms-request-id": [ + "0905c242-44c5-4bb0-bf5c-13e2e3e0a24b" + ], + "x-ms-correlation-request-id": [ + "0905c242-44c5-4bb0-bf5c-13e2e3e0a24b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021439Z:0905c242-44c5-4bb0-bf5c-13e2e3e0a24b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", @@ -36909,16 +176026,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28acf11f-0096-4e19-b822-2d2ef4181765" + "76791b83-00b8-4e6e-9490-cd09cc4c414f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -36938,31 +176055,154 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11452" + "9216" + ], + "x-ms-request-id": [ + "c7096e8e-4317-455c-b133-35810812db61" + ], + "x-ms-correlation-request-id": [ + "c7096e8e-4317-455c-b133-35810812db61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021440Z:c7096e8e-4317-455c-b133-35810812db61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe773431-8663-4206-83eb-962adeb513bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9215" ], "x-ms-request-id": [ - "eb75346e-9d2f-4cee-afd5-8139ef95dadc" + "03d646f2-199a-4735-a658-2d921e0fc4da" ], "x-ms-correlation-request-id": [ - "eb75346e-9d2f-4cee-afd5-8139ef95dadc" + "03d646f2-199a-4735-a658-2d921e0fc4da" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204237Z:eb75346e-9d2f-4cee-afd5-8139ef95dadc" + "WESTUS2:20210213T021440Z:03d646f2-199a-4735-a658-2d921e0fc4da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:37 GMT" + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0ecbee4-f8a5-435f-b8e4-6421fe2b1988" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9214" + ], + "x-ms-request-id": [ + "5d1cb0d1-07fd-4cd1-9f67-d1861aa059a2" + ], + "x-ms-correlation-request-id": [ + "5d1cb0d1-07fd-4cd1-9f67-d1861aa059a2" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021440Z:5d1cb0d1-07fd-4cd1-9f67-d1861aa059a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:39 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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}", @@ -36975,16 +176215,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dfddec4-5af6-4647-b594-0162315594d8" + "408abf24-334a-4efa-840b-8f3162742921" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -37004,31 +176244,343 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11451" + "9213" ], "x-ms-request-id": [ - "b0bc257f-4d20-43c7-8cc6-eb342a787bf0" + "698ce39c-592a-491d-8f50-8e69e83f2c67" ], "x-ms-correlation-request-id": [ - "b0bc257f-4d20-43c7-8cc6-eb342a787bf0" + "698ce39c-592a-491d-8f50-8e69e83f2c67" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204238Z:b0bc257f-4d20-43c7-8cc6-eb342a787bf0" + "WESTUS2:20210213T021440Z:698ce39c-592a-491d-8f50-8e69e83f2c67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:37 GMT" + "Sat, 13 Feb 2021 02:14:40 GMT" ], "Content-Length": [ - "12" + "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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a289f7c-903c-431b-bb57-5c26c87f5dde" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9212" + ], + "x-ms-request-id": [ + "d084f9d5-9fcf-4ae6-8555-7ce810b2b497" + ], + "x-ms-correlation-request-id": [ + "d084f9d5-9fcf-4ae6-8555-7ce810b2b497" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021440Z:d084f9d5-9fcf-4ae6-8555-7ce810b2b497" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:40 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e94bb2d-967a-48ca-bed4-b70ceb0529f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9211" + ], + "x-ms-request-id": [ + "e2bf3db8-eed9-467a-9d0c-17cc7a005ffa" + ], + "x-ms-correlation-request-id": [ + "e2bf3db8-eed9-467a-9d0c-17cc7a005ffa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021440Z:e2bf3db8-eed9-467a-9d0c-17cc7a005ffa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:40 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccf83b96-4837-4914-ba36-9f8507ae18b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9210" + ], + "x-ms-request-id": [ + "1e47bec6-2a06-4b88-a373-d93ad6151f4d" + ], + "x-ms-correlation-request-id": [ + "1e47bec6-2a06-4b88-a373-d93ad6151f4d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021441Z:1e47bec6-2a06-4b88-a373-d93ad6151f4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:40 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6ae7963-a464-498b-aa9d-f078e0658845" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9209" + ], + "x-ms-request-id": [ + "96720721-5928-4a5b-be94-b5b47b23af90" + ], + "x-ms-correlation-request-id": [ + "96720721-5928-4a5b-be94-b5b47b23af90" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021441Z:96720721-5928-4a5b-be94-b5b47b23af90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:40 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/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\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/db945/privateEndpointConnections?api-version=2019-08-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGI5NDUvcHJpdmF0ZUVuZHBvaW50Q29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wOC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33028387-8d81-43ee-88f2-7a48627944ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "9208" + ], + "x-ms-request-id": [ + "c3d05141-1b24-47fa-b211-bd849583d349" + ], + "x-ms-correlation-request-id": [ + "c3d05141-1b24-47fa-b211-bd849583d349" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections?api-version=2019-08-01-preview" + "x-ms-routing-request-id": [ + "WESTUS2:20210213T021441Z:c3d05141-1b24-47fa-b211-bd849583d349" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 02:14:40 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -37041,16 +176593,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "429d3cf8-0aa7-41f1-a600-a3aaeb824f64" + "d3c94ea6-be98-46fa-b8b1-022a82d1b80e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -37073,28 +176625,25 @@ "11998" ], "x-ms-request-id": [ - "7bcc65ae-52e6-4073-939c-4387480906d5" + "2686e7fa-37f4-457e-a1a5-ab5b1a5425b0" ], "x-ms-correlation-request-id": [ - "7bcc65ae-52e6-4073-939c-4387480906d5" + "2686e7fa-37f4-457e-a1a5-ab5b1a5425b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204115Z:7bcc65ae-52e6-4073-939c-4387480906d5" + "WESTUS2:20210213T020644Z:2686e7fa-37f4-457e-a1a5-ab5b1a5425b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:14 GMT" + "Sat, 13 Feb 2021 02:06:43 GMT" ], "Content-Length": [ "590" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n}", @@ -37107,16 +176656,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63f5085f-c9ca-4373-8615-6b7b2605afee" + "d3c94ea6-be98-46fa-b8b1-022a82d1b80e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -37139,28 +176688,25 @@ "11997" ], "x-ms-request-id": [ - "e16ae795-9d37-4d29-9d09-d653a0f5abbf" + "73637937-347c-4365-a938-bd2987cc1760" ], "x-ms-correlation-request-id": [ - "e16ae795-9d37-4d29-9d09-d653a0f5abbf" + "73637937-347c-4365-a938-bd2987cc1760" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204116Z:e16ae795-9d37-4d29-9d09-d653a0f5abbf" + "WESTUS2:20210213T020645Z:73637937-347c-4365-a938-bd2987cc1760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:15 GMT" + "Sat, 13 Feb 2021 02:06:44 GMT" ], "Content-Length": [ "590" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"name\": \"mype\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections\",\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"groupId\": \"Sql\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n}", @@ -37173,16 +176719,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": [ - "145dd051-221a-4f50-a446-12849ce4bb39" + "d3c94ea6-be98-46fa-b8b1-022a82d1b80e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37199,13 +176745,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype/operationResults/2cbc3707-6632-4348-b029-90cf79972941?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype/operationResults/e59c4169-5a30-4700-b9d0-5e26c556e147?api-version=2019-08-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2cbc3707-6632-4348-b029-90cf79972941?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e59c4169-5a30-4700-b9d0-5e26c556e147?api-version=2019-08-01-preview" ], "x-ms-request-id": [ - "2cbc3707-6632-4348-b029-90cf79972941" + "e59c4169-5a30-4700-b9d0-5e26c556e147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37220,25 +176766,22 @@ "1199" ], "x-ms-correlation-request-id": [ - "f3163932-4f0e-46d2-ac51-200f720de703" + "543fdc5c-6d44-4a82-a828-301c11ebbedc" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204116Z:f3163932-4f0e-46d2-ac51-200f720de703" + "WESTUS2:20210213T020645Z:543fdc5c-6d44-4a82-a828-301c11ebbedc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:15 GMT" + "Sat, 13 Feb 2021 02:06:44 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", @@ -37251,16 +176794,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9972a2e-e066-436f-8660-03c6ef1582a4" + "1e1f05df-af7b-46be-8b92-bb9c68edc7b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.31" ] }, "ResponseHeaders": { @@ -37271,13 +176814,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype/operationResults/80d3dce4-e3b6-42d6-ab83-743bbb357284?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype/operationResults/f3883735-17c7-4902-9ee5-bad24aebec78?api-version=2019-08-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80d3dce4-e3b6-42d6-ab83-743bbb357284?api-version=2019-08-01-preview" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f3883735-17c7-4902-9ee5-bad24aebec78?api-version=2019-08-01-preview" ], "x-ms-request-id": [ - "80d3dce4-e3b6-42d6-ab83-743bbb357284" + "f3883735-17c7-4902-9ee5-bad24aebec78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37292,47 +176835,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "a2584878-c15f-4b15-adbe-8d98425eb284" + "85fc60e2-8920-48e7-9993-6f9057a26102" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204157Z:a2584878-c15f-4b15-adbe-8d98425eb284" + "WESTUS2:20210213T021352Z:85fc60e2-8920-48e7-9993-6f9057a26102" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:41:56 GMT" + "Sat, 13 Feb 2021 02:13:51 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.DocumentDB/databaseAccounts/db945/privateEndpointConnections/mype?api-version=2019-08-01-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/privateEndpoints/mype?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ByaXZhdGVFbmRwb2ludHMvbXlwZT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "995d0c35-7aeb-484f-9ce5-a505f3df930a" + "4f802b89-8d16-4db2-9367-fa788fa0d812" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37343,25 +176883,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "c39a92b9-0fd1-4637-b80a-ebfdc9d80da5" + "82c7ee2d-12c6-49dc-8234-71439b6141c3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "8949b7c2-1741-4f1c-9cdd-346c83d4b17e" + "57f65aee-7503-462b-a845-449588b5e1af" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "5f8d8c8b-55a5-4058-a5dd-d849f89a091c" + "155c042f-ef65-4214-b040-d5e7f2d72753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37374,13 +176914,13 @@ "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204238Z:8949b7c2-1741-4f1c-9cdd-346c83d4b17e" + "WESTUS2:20210213T021442Z:57f65aee-7503-462b-a845-449588b5e1af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:37 GMT" + "Sat, 13 Feb 2021 02:14:41 GMT" ], "Expires": [ "-1" @@ -37393,16 +176933,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYzM5YTkyYjktMGZkMS00NjM3LWI4MGEtZWJmZGM5ZDgwZGE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODJjN2VlMmQtMTJjNi00OWRjLTgyMzQtNzE0MzliNjE0MWMzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4f802b89-8d16-4db2-9367-fa788fa0d812" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37413,13 +176956,13 @@ "no-cache" ], "x-ms-request-id": [ - "c6a571a0-b218-495d-97b0-7c9fc129e01c" + "4953a4df-d94f-4ab3-bbf8-78b44759ba27" ], "x-ms-correlation-request-id": [ - "839fab90-2ef8-4950-91f0-3c6b2732c7dc" + "7e71d894-8a41-4ba6-a2a5-f8f8ad5cc919" ], "x-ms-arm-service-request-id": [ - "0a15d30f-de91-45f6-a662-0ed81aa6cfdb" + "4478b12a-dc87-48d3-9520-fb4bad081455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37429,16 +176972,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204248Z:839fab90-2ef8-4950-91f0-3c6b2732c7dc" + "WESTUS2:20210213T021452Z:7e71d894-8a41-4ba6-a2a5-f8f8ad5cc919" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:48 GMT" + "Sat, 13 Feb 2021 02:14:51 GMT" ], "Content-Length": [ "29" @@ -37454,16 +176997,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvYzM5YTkyYjktMGZkMS00NjM3LWI4MGEtZWJmZGM5ZDgwZGE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvODJjN2VlMmQtMTJjNi00OWRjLTgyMzQtNzE0MzliNjE0MWMzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4f802b89-8d16-4db2-9367-fa788fa0d812" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37474,22 +177020,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01" ], "x-ms-request-id": [ - "c39a92b9-0fd1-4637-b80a-ebfdc9d80da5" + "82c7ee2d-12c6-49dc-8234-71439b6141c3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/c39a92b9-0fd1-4637-b80a-ebfdc9d80da5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/82c7ee2d-12c6-49dc-8234-71439b6141c3?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "8949b7c2-1741-4f1c-9cdd-346c83d4b17e" + "57f65aee-7503-462b-a845-449588b5e1af" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "5f8d8c8b-55a5-4058-a5dd-d849f89a091c" + "155c042f-ef65-4214-b040-d5e7f2d72753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37499,16 +177045,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204249Z:de042576-4aaa-4a8a-8ddb-33e42a288d66" + "WESTUS2:20210213T021452Z:5c05f6f7-6694-4945-be3c-9c81744e9183" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:48 GMT" + "Sat, 13 Feb 2021 02:14:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37521,22 +177067,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup9507/providers/Microsoft.Network/virtualNetworks/MyVnetPE?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDk1MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9NeVZuZXRQRT9hcGktdmVyc2lvbj0yMDIwLTA4LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fcdf8ca-87a0-47cd-98ff-e21b7d4f7128" + "d7dac6d0-af44-4607-b3b4-060318d19546" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37547,25 +177093,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "eef7824a-70a5-4f3f-80b2-55e592c89767" + "ceabbe8c-3f58-40f5-9083-0b0c166efb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "0639f48f-4839-4281-b8aa-72a7bf76ec22" + "92e32940-6a56-4b15-aecf-98427f1d3e7c" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "426f30a5-9ec2-4835-bd3f-e2ad9079aa7a" + "471d8091-01b7-43f1-8f4b-bf92ddf691dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37578,13 +177124,13 @@ "14998" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204249Z:0639f48f-4839-4281-b8aa-72a7bf76ec22" + "WESTUS2:20210213T021453Z:92e32940-6a56-4b15-aecf-98427f1d3e7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:48 GMT" + "Sat, 13 Feb 2021 02:14:52 GMT" ], "Expires": [ "-1" @@ -37597,16 +177143,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWVmNzgyNGEtNzBhNS00ZjNmLTgwYjItNTVlNTkyYzg5NzY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2VhYmJlOGMtM2Y1OC00MGY1LTkwODMtMGIwYzE2NmVmYjE0P2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7dac6d0-af44-4607-b3b4-060318d19546" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37617,13 +177166,13 @@ "no-cache" ], "x-ms-request-id": [ - "62c1ff8c-2a59-4e99-b936-7c25b48394b4" + "51a91dae-c003-49c3-b726-9a70415ce144" ], "x-ms-correlation-request-id": [ - "383c5fee-23d4-4c3a-894f-0be54f556afd" + "1cfd209f-283a-47fd-b945-6d414d9f90a0" ], "x-ms-arm-service-request-id": [ - "4201a025-be39-4b47-ab03-699d864fa212" + "9d393535-f406-401c-b646-2b0fd4b25d57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37633,16 +177182,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204259Z:383c5fee-23d4-4c3a-894f-0be54f556afd" + "WESTUS2:20210213T021503Z:1cfd209f-283a-47fd-b945-6d414d9f90a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:58 GMT" + "Sat, 13 Feb 2021 02:15:02 GMT" ], "Content-Length": [ "29" @@ -37658,16 +177207,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZWVmNzgyNGEtNzBhNS00ZjNmLTgwYjItNTVlNTkyYzg5NzY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvY2VhYmJlOGMtM2Y1OC00MGY1LTkwODMtMGIwYzE2NmVmYjE0P2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d7dac6d0-af44-4607-b3b4-060318d19546" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.3.0.0" ] }, "ResponseHeaders": { @@ -37678,22 +177230,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operationResults/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01" ], "x-ms-request-id": [ - "eef7824a-70a5-4f3f-80b2-55e592c89767" + "ceabbe8c-3f58-40f5-9083-0b0c166efb14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/eef7824a-70a5-4f3f-80b2-55e592c89767?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.Network/locations/eastus/operations/ceabbe8c-3f58-40f5-9083-0b0c166efb14?api-version=2020-08-01" ], "x-ms-correlation-request-id": [ - "0639f48f-4839-4281-b8aa-72a7bf76ec22" + "92e32940-6a56-4b15-aecf-98427f1d3e7c" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "426f30a5-9ec2-4835-bd3f-e2ad9079aa7a" + "471d8091-01b7-43f1-8f4b-bf92ddf691dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -37703,16 +177255,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200611T204259Z:90a772b1-eb7f-4bfc-97b0-a4b1b771cb4b" + "WESTUS2:20210213T021503Z:6cfae5ea-ccd7-43f7-9c8a-6ccafd593da1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jun 2020 20:42:59 GMT" + "Sat, 13 Feb 2021 02:15:03 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 b69a27272e58..cb5c3b1a0104 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f29a0ca5-3897-44e4-81c2-226dad4c41a5" + "924f6721-6fb8-4cbe-ba94-9157ab470889" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "e493207e-721e-46f0-92c5-393e46b29a60" + "c9c181f3-1130-4611-9b61-35862330290a" ], "x-ms-correlation-request-id": [ - "e493207e-721e-46f0-92c5-393e46b29a60" + "c9c181f3-1130-4611-9b61-35862330290a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025112Z:e493207e-721e-46f0-92c5-393e46b29a60" + "WESTUS2:20210213T033212Z:c9c181f3-1130-4611-9b61-35862330290a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:12 GMT" + "Sat, 13 Feb 2021 03:32:11 GMT" ], "Content-Length": [ - "1712" + "1781" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: f29a0ca5-3897-44e4-81c2-226dad4c41a5, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:51:12.7475458Z, RequestEndTime: 2020-06-10T02:51:12.7475458Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:51:12.7475458Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 619, GlobalCommittedLsn: 619, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#619, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:51:12.7475458Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, LSN: 619, GlobalCommittedLsn: 619, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#619, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 924f6721-6fb8-4cbe-ba94-9157ab470889, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:32:12.0347868Z, RequestEndTime: 2021-02-13T03:32:12.0447878Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:32:12.0447878Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2128, GlobalCommittedLsn: 2128, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2128, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:32:12.0447878Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2128, GlobalCommittedLsn: 2128, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2128, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "924f6721-6fb8-4cbe-ba94-9157ab470889" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "e8ee88dc-e928-4bde-acb5-98ee94c17e87" + "f85b8418-925a-44f7-a32c-4083f884ed0e" ], "x-ms-correlation-request-id": [ - "e8ee88dc-e928-4bde-acb5-98ee94c17e87" + "f85b8418-925a-44f7-a32c-4083f884ed0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025144Z:e8ee88dc-e928-4bde-acb5-98ee94c17e87" + "WESTUS2:20210213T033247Z:f85b8418-925a-44f7-a32c-4083f884ed0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:44 GMT" + "Sat, 13 Feb 2021 03:32:47 GMT" ], "Content-Length": [ "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84c2e609-f203-4e73-80dc-42542d5f0494" + "9822d898-d45a-41db-b1b7-7f2624fd0f77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "cab756a7-f43e-4515-9769-01f75bff457d" + "3d553915-05ec-46e2-a431-417b944210e1" ], "x-ms-correlation-request-id": [ - "cab756a7-f43e-4515-9769-01f75bff457d" + "3d553915-05ec-46e2-a431-417b944210e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025144Z:cab756a7-f43e-4515-9769-01f75bff457d" + "WESTUS2:20210213T033249Z:3d553915-05ec-46e2-a431-417b944210e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:44 GMT" + "Sat, 13 Feb 2021 03:32:49 GMT" ], "Content-Length": [ "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88f355ba-ff27-4cda-9c4c-006b62559c70" + "1ab7a49b-4ad1-49ac-b2a2-15b0759152ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,50 +225,47 @@ "11991" ], "x-ms-request-id": [ - "a75a9978-4e17-45c3-abb0-b936f942c1ba" + "cb103f18-4363-41b3-89d1-36992540895a" ], "x-ms-correlation-request-id": [ - "a75a9978-4e17-45c3-abb0-b936f942c1ba" + "cb103f18-4363-41b3-89d1-36992540895a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025218Z:a75a9978-4e17-45c3-abb0-b936f942c1ba" + "WESTUS2:20210213T033329Z:cb103f18-4363-41b3-89d1-36992540895a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:17 GMT" + "Sat, 13 Feb 2021 03:33:28 GMT" ], "Content-Length": [ "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22c163d2-4ef9-4958-8c6f-dcc6715c2277" + "50e4ffef-4086-4904-b9ad-11f1fa0fc1c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -297,44 +288,44 @@ "11987" ], "x-ms-request-id": [ - "f1fcde44-29e0-4018-a127-691c320d6019" + "df7d405a-7013-4891-8beb-fd2c9b5190d5" ], "x-ms-correlation-request-id": [ - "f1fcde44-29e0-4018-a127-691c320d6019" + "df7d405a-7013-4891-8beb-fd2c9b5190d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025219Z:f1fcde44-29e0-4018-a127-691c320d6019" + "WESTUS2:20210213T033336Z:df7d405a-7013-4891-8beb-fd2c9b5190d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:19 GMT" + "Sat, 13 Feb 2021 03:33:36 GMT" ], "Content-Length": [ "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50e4ffef-4086-4904-b9ad-11f1fa0fc1c9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,50 +348,47 @@ "11985" ], "x-ms-request-id": [ - "94b94537-0b42-4132-a7ab-00716abbe8ad" + "382bdb38-9fb5-494a-afef-e7afe836204a" ], "x-ms-correlation-request-id": [ - "94b94537-0b42-4132-a7ab-00716abbe8ad" + "382bdb38-9fb5-494a-afef-e7afe836204a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025251Z:94b94537-0b42-4132-a7ab-00716abbe8ad" + "WESTUS2:20210213T033411Z:382bdb38-9fb5-494a-afef-e7afe836204a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:51 GMT" + "Sat, 13 Feb 2021 03:34:10 GMT" ], "Content-Length": [ "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "ca244a0a-a17e-41a1-b64e-6645ccae91e0" + "924f6721-6fb8-4cbe-ba94-9157ab470889" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/75040634-2717-4190-86c8-a374f7f0aaa6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/e5429081-1288-4d82-8970-cc3f108eee56?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/75040634-2717-4190-86c8-a374f7f0aaa6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e5429081-1288-4d82-8970-cc3f108eee56?api-version=2021-01-15" ], "x-ms-request-id": [ - "75040634-2717-4190-86c8-a374f7f0aaa6" + "e5429081-1288-4d82-8970-cc3f108eee56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,47 +426,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "65b31ddd-e744-4064-bc4a-404c96805a4d" + "551dccd7-b4c1-402a-8075-248fdfa0f311" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025113Z:65b31ddd-e744-4064-bc4a-404c96805a4d" + "WESTUS2:20210213T033215Z:551dccd7-b4c1-402a-8075-248fdfa0f311" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:12 GMT" + "Sat, 13 Feb 2021 03:32:14 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "c8f5bf5d-3df2-426a-a5c5-eab17bebfb93" + "50e4ffef-4086-4904-b9ad-11f1fa0fc1c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,13 +480,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/16703cbb-d9fa-4fe7-aadf-692ac7c2ec3c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/2c3f3ffb-9b49-4e06-bcb0-808559eb66bb?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/16703cbb-d9fa-4fe7-aadf-692ac7c2ec3c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/2c3f3ffb-9b49-4e06-bcb0-808559eb66bb?api-version=2021-01-15" ], "x-ms-request-id": [ - "16703cbb-d9fa-4fe7-aadf-692ac7c2ec3c" + "2c3f3ffb-9b49-4e06-bcb0-808559eb66bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,41 +501,41 @@ "1197" ], "x-ms-correlation-request-id": [ - "a44d49b4-8c03-4f19-932e-d08528759e2f" + "8e2ab271-84cc-4c26-b82f-c9fc50ed853a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025220Z:a44d49b4-8c03-4f19-932e-d08528759e2f" + "WESTUS2:20210213T033339Z:8e2ab271-84cc-4c26-b82f-c9fc50ed853a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:19 GMT" + "Sat, 13 Feb 2021 03:33:39 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/75040634-2717-4190-86c8-a374f7f0aaa6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83NTA0MDYzNC0yNzE3LTQxOTAtODZjOC1hMzc0ZjdmMGFhYTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e5429081-1288-4d82-8970-cc3f108eee56?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9lNTQyOTA4MS0xMjg4LTRkODItODk3MC1jYzNmMTA4ZWVlNTY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "924f6721-6fb8-4cbe-ba94-9157ab470889" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -573,50 +558,47 @@ "11998" ], "x-ms-request-id": [ - "00ffc7bd-bd73-4b0f-b5e3-86f6f60c5b39" + "6a29630c-22d2-4f1a-9766-b0da3920c6c2" ], "x-ms-correlation-request-id": [ - "00ffc7bd-bd73-4b0f-b5e3-86f6f60c5b39" + "6a29630c-22d2-4f1a-9766-b0da3920c6c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025143Z:00ffc7bd-bd73-4b0f-b5e3-86f6f60c5b39" + "WESTUS2:20210213T033246Z:6a29630c-22d2-4f1a-9766-b0da3920c6c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:43 GMT" + "Sat, 13 Feb 2021 03:32:45 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/75040634-2717-4190-86c8-a374f7f0aaa6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fb322c7-f886-427a-b43e-17274b91ece0" + "eb0375ea-7181-4867-897e-6610d7be904c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -639,44 +621,44 @@ "11995" ], "x-ms-request-id": [ - "e4632cbc-34da-4b7b-88a7-e3b37c1c4090" + "3bd6545f-15cb-41e8-b6e2-bbb0d1daf99e" ], "x-ms-correlation-request-id": [ - "e4632cbc-34da-4b7b-88a7-e3b37c1c4090" + "3bd6545f-15cb-41e8-b6e2-bbb0d1daf99e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025145Z:e4632cbc-34da-4b7b-88a7-e3b37c1c4090" + "WESTUS2:20210213T033250Z:3bd6545f-15cb-41e8-b6e2-bbb0d1daf99e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:45 GMT" + "Sat, 13 Feb 2021 03:32:50 GMT" ], "Content-Length": [ - "1728" + "1797" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 8fb322c7-f886-427a-b43e-17274b91ece0, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:51:45.2536850Z, RequestEndTime: 2020-06-10T02:51:45.2536850Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:51:45.2536850Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 620, GlobalCommittedLsn: 620, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#620, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:51:45.2536850Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 620, GlobalCommittedLsn: 620, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#620, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: eb0375ea-7181-4867-897e-6610d7be904c, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:32:50.7545761Z, RequestEndTime: 2021-02-13T03:32:50.7545761Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:32:50.7545761Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2129, GlobalCommittedLsn: 2129, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2129, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:32:50.7545761Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132570095928778117s, LSN: 2129, GlobalCommittedLsn: 2129, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2129, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0375ea-7181-4867-897e-6610d7be904c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -699,50 +681,47 @@ "11993" ], "x-ms-request-id": [ - "552bd32c-5288-489a-b7c7-2e0baa6f70fe" + "4f7c1b1a-cd1a-4c10-bf02-c913b04c9aa4" ], "x-ms-correlation-request-id": [ - "552bd32c-5288-489a-b7c7-2e0baa6f70fe" + "4f7c1b1a-cd1a-4c10-bf02-c913b04c9aa4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025217Z:552bd32c-5288-489a-b7c7-2e0baa6f70fe" + "WESTUS2:20210213T033326Z:4f7c1b1a-cd1a-4c10-bf02-c913b04c9aa4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:16 GMT" + "Sat, 13 Feb 2021 03:33:25 GMT" ], "Content-Length": [ "610" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001500-0000-3200-0000-5ee04ac60000\\\"\",\r\n \"_ts\": 1591757510,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000c80b-0000-3200-0000-602748710000\\\"\",\r\n \"_ts\": 1613187185,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4fb7bf2-021b-4298-9e9f-3a2b053ef68c" + "33522899-2824-4e12-92f3-fd255e13346a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -765,50 +744,47 @@ "11992" ], "x-ms-request-id": [ - "e4e49796-05ec-4a53-8abb-27db2264002d" + "f026b419-7e06-476c-a39e-5ab545d7f4ca" ], "x-ms-correlation-request-id": [ - "e4e49796-05ec-4a53-8abb-27db2264002d" + "f026b419-7e06-476c-a39e-5ab545d7f4ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025217Z:e4e49796-05ec-4a53-8abb-27db2264002d" + "WESTUS2:20210213T033328Z:f026b419-7e06-476c-a39e-5ab545d7f4ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:17 GMT" + "Sat, 13 Feb 2021 03:33:27 GMT" ], "Content-Length": [ "610" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001500-0000-3200-0000-5ee04ac60000\\\"\",\r\n \"_ts\": 1591757510,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000c80b-0000-3200-0000-602748710000\\\"\",\r\n \"_ts\": 1613187185,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b5d5255-324e-4547-81db-88ce4e6d8bc9" + "60a26714-4575-475e-bd80-865c81e53490" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -831,50 +807,47 @@ "11990" ], "x-ms-request-id": [ - "44edcc33-0c3e-4f44-8e67-db5eb6902721" + "f6ed3649-0f6f-4bf0-9538-3172813b9326" ], "x-ms-correlation-request-id": [ - "44edcc33-0c3e-4f44-8e67-db5eb6902721" + "f6ed3649-0f6f-4bf0-9538-3172813b9326" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025218Z:44edcc33-0c3e-4f44-8e67-db5eb6902721" + "WESTUS2:20210213T033331Z:f6ed3649-0f6f-4bf0-9538-3172813b9326" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:18 GMT" + "Sat, 13 Feb 2021 03:33:30 GMT" ], "Content-Length": [ "610" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001500-0000-3200-0000-5ee04ac60000\\\"\",\r\n \"_ts\": 1591757510,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000c80b-0000-3200-0000-602748710000\\\"\",\r\n \"_ts\": 1613187185,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94255bcf-1826-4f7c-9d23-54ddc9cf5ff3" + "b4d3cefb-8ecf-4165-979c-2decc2eefabc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -897,44 +870,44 @@ "11983" ], "x-ms-request-id": [ - "38a27605-6220-4a41-b3cb-0f3262c7ae9c" + "c5112661-4577-497a-8723-55a46e6220ab" ], "x-ms-correlation-request-id": [ - "38a27605-6220-4a41-b3cb-0f3262c7ae9c" + "c5112661-4577-497a-8723-55a46e6220ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025253Z:38a27605-6220-4a41-b3cb-0f3262c7ae9c" + "WESTUS2:20210213T033414Z:c5112661-4577-497a-8723-55a46e6220ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:53 GMT" + "Sat, 13 Feb 2021 03:34:14 GMT" ], "Content-Length": [ "610" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001500-0000-3200-0000-5ee04ac60000\\\"\",\r\n \"_ts\": 1591757510,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000c80b-0000-3200-0000-602748710000\\\"\",\r\n \"_ts\": 1613187185,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b4d3cefb-8ecf-4165-979c-2decc2eefabc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -957,50 +930,47 @@ "11981" ], "x-ms-request-id": [ - "bd1a1d9f-59e2-4b1e-a627-c0de3d212230" + "e56a2fcf-fa07-4ff1-bcd7-b3a6c2fcd738" ], "x-ms-correlation-request-id": [ - "bd1a1d9f-59e2-4b1e-a627-c0de3d212230" + "e56a2fcf-fa07-4ff1-bcd7-b3a6c2fcd738" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025325Z:bd1a1d9f-59e2-4b1e-a627-c0de3d212230" + "WESTUS2:20210213T033450Z:e56a2fcf-fa07-4ff1-bcd7-b3a6c2fcd738" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:25 GMT" + "Sat, 13 Feb 2021 03:34:49 GMT" ], "Content-Length": [ "676" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001b00-0000-3200-0000-5ee04b0a0000\\\"\",\r\n \"_ts\": 1591757578,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000d10b-0000-3200-0000-602748c40000\\\"\",\r\n \"_ts\": 1613187268,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "73bfe55d-c59b-4664-af93-4a54739dd7d5" + "eb0375ea-7181-4867-897e-6610d7be904c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,13 +987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/7cb206a8-a166-47d8-b36e-b6f3eb65cc04?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/efdf3e5c-c5b1-4a55-adf9-e909d704a946?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7cb206a8-a166-47d8-b36e-b6f3eb65cc04?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/efdf3e5c-c5b1-4a55-adf9-e909d704a946?api-version=2021-01-15" ], "x-ms-request-id": [ - "7cb206a8-a166-47d8-b36e-b6f3eb65cc04" + "efdf3e5c-c5b1-4a55-adf9-e909d704a946" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,47 +1008,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "a5593eb1-09cb-41a0-8abf-a3a3e9fb8b13" + "86b54d91-7252-4023-9a10-29d483e5468c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025146Z:a5593eb1-09cb-41a0-8abf-a3a3e9fb8b13" + "WESTUS2:20210213T033254Z:86b54d91-7252-4023-9a10-29d483e5468c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:45 GMT" + "Sat, 13 Feb 2021 03:32:54 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": -1,\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": [ - "23401c9d-f86c-4669-bef7-57e5ba1596f5" + "b4d3cefb-8ecf-4165-979c-2decc2eefabc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1095,13 +1062,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/758d442f-63dc-436a-a2ce-45fb1ba21375?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/b7dc0555-7318-4d0b-9c5d-aef248b9da15?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/758d442f-63dc-436a-a2ce-45fb1ba21375?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b7dc0555-7318-4d0b-9c5d-aef248b9da15?api-version=2021-01-15" ], "x-ms-request-id": [ - "758d442f-63dc-436a-a2ce-45fb1ba21375" + "b7dc0555-7318-4d0b-9c5d-aef248b9da15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,41 +1083,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "cc54ed46-19b7-4691-acf8-701662a98887" + "5745e6b1-dcbd-466b-8bcf-d34bbc901a70" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025254Z:cc54ed46-19b7-4691-acf8-701662a98887" + "WESTUS2:20210213T033418Z:5745e6b1-dcbd-466b-8bcf-d34bbc901a70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:54 GMT" + "Sat, 13 Feb 2021 03:34:17 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7cb206a8-a166-47d8-b36e-b6f3eb65cc04?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83Y2IyMDZhOC1hMTY2LTQ3ZDgtYjM2ZS1iNmYzZWI2NWNjMDQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/efdf3e5c-c5b1-4a55-adf9-e909d704a946?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9lZmRmM2U1Yy1jNWIxLTRhNTUtYWRmOS1lOTA5ZDcwNGE5NDY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0375ea-7181-4867-897e-6610d7be904c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1173,50 +1140,47 @@ "11994" ], "x-ms-request-id": [ - "18e47a1f-8ae4-4124-9593-5646b9347409" + "28ad0551-dd15-488d-96d4-82f69cf2d0ce" ], "x-ms-correlation-request-id": [ - "18e47a1f-8ae4-4124-9593-5646b9347409" + "28ad0551-dd15-488d-96d4-82f69cf2d0ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025216Z:18e47a1f-8ae4-4124-9593-5646b9347409" + "WESTUS2:20210213T033324Z:28ad0551-dd15-488d-96d4-82f69cf2d0ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:15 GMT" + "Sat, 13 Feb 2021 03:33:24 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7cb206a8-a166-47d8-b36e-b6f3eb65cc04?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72671dfc-8fff-4d3b-8e7e-5ac9179bfa49" + "6d00faed-180c-4495-99b1-67b015fede25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1239,50 +1203,47 @@ "11989" ], "x-ms-request-id": [ - "40061f07-d562-45eb-8cbe-f812b6c27dd8" + "2a8d0e16-2575-4c75-8c16-a0442fd96f27" ], "x-ms-correlation-request-id": [ - "40061f07-d562-45eb-8cbe-f812b6c27dd8" + "2a8d0e16-2575-4c75-8c16-a0442fd96f27" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025218Z:40061f07-d562-45eb-8cbe-f812b6c27dd8" + "WESTUS2:20210213T033332Z:2a8d0e16-2575-4c75-8c16-a0442fd96f27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:18 GMT" + "Sat, 13 Feb 2021 03:33:31 GMT" ], "Content-Length": [ - "1712" + "1781" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 72671dfc-8fff-4d3b-8e7e-5ac9179bfa49, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:52:18.8374536Z, RequestEndTime: 2020-06-10T02:52:18.8374536Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:52:18.8374536Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, LSN: 621, GlobalCommittedLsn: 621, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#621, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:52:18.8374536Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 621, GlobalCommittedLsn: 621, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#621, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 6d00faed-180c-4495-99b1-67b015fede25, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:33:32.8443378Z, RequestEndTime: 2021-02-13T03:33:32.8443378Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:33:32.8443378Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2130, GlobalCommittedLsn: 2130, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2130, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:33:32.8443378Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132570095928778117s, LSN: 2130, GlobalCommittedLsn: 2130, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2130, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d2e93ca-cf8a-49d8-b59f-32cbddb0af3e" + "aa936c87-8638-4dc2-8835-a61d5b98b088" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1305,44 +1266,44 @@ "11988" ], "x-ms-request-id": [ - "b969df31-12d4-4829-a0aa-5540be2ce9b7" + "cefbf57e-4654-4f41-b079-41ba058b4fa1" ], "x-ms-correlation-request-id": [ - "b969df31-12d4-4829-a0aa-5540be2ce9b7" + "cefbf57e-4654-4f41-b079-41ba058b4fa1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025219Z:b969df31-12d4-4829-a0aa-5540be2ce9b7" + "WESTUS2:20210213T033334Z:cefbf57e-4654-4f41-b079-41ba058b4fa1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:18 GMT" + "Sat, 13 Feb 2021 03:33:34 GMT" ], "Content-Length": [ - "1729" + "1798" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 4d2e93ca-cf8a-49d8-b59f-32cbddb0af3e, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:52:19.2274051Z, RequestEndTime: 2020-06-10T02:52:19.2274051Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:52:19.2274051Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 621, GlobalCommittedLsn: 621, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#621, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:52:19.2274051Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 621, GlobalCommittedLsn: 621, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#621, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: aa936c87-8638-4dc2-8835-a61d5b98b088, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132570095928778117s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:33:34.4243479Z, RequestEndTime: 2021-02-13T03:33:34.4243479Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:33:34.4243479Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132570095928778117s, LSN: 2130, GlobalCommittedLsn: 2130, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2130, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:33:34.4243479Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2130, GlobalCommittedLsn: 2130, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2130, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/keyspace1/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/16703cbb-d9fa-4fe7-aadf-692ac7c2ec3c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xNjcwM2NiYi1kOWZhLTRmZTctYWFkZi02OTJhYzdjMmVjM2M/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/2c3f3ffb-9b49-4e06-bcb0-808559eb66bb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8yYzNmM2ZmYi05YjQ5LTRlMDYtYmNiMC04MDg1NTllYjY2YmI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50e4ffef-4086-4904-b9ad-11f1fa0fc1c9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1365,50 +1326,47 @@ "11986" ], "x-ms-request-id": [ - "f5d5c937-f598-4af0-bd88-16e579b5a6e9" + "c0f5ba9c-0613-4ca3-a1c7-fecd10fdeba0" ], "x-ms-correlation-request-id": [ - "f5d5c937-f598-4af0-bd88-16e579b5a6e9" + "c0f5ba9c-0613-4ca3-a1c7-fecd10fdeba0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025250Z:f5d5c937-f598-4af0-bd88-16e579b5a6e9" + "WESTUS2:20210213T033409Z:c0f5ba9c-0613-4ca3-a1c7-fecd10fdeba0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:49 GMT" + "Sat, 13 Feb 2021 03:34:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/16703cbb-d9fa-4fe7-aadf-692ac7c2ec3c?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f28d2f2c-7157-4087-97a1-fd2fc320c287" + "711bc1fb-10bc-4136-8265-a004ca7e1607" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1431,44 +1389,44 @@ "11984" ], "x-ms-request-id": [ - "98bb4a8b-2d73-45bc-8d71-6c61a60dbd70" + "3d8eda29-f40e-482f-9d80-e882105d3159" ], "x-ms-correlation-request-id": [ - "98bb4a8b-2d73-45bc-8d71-6c61a60dbd70" + "3d8eda29-f40e-482f-9d80-e882105d3159" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025253Z:98bb4a8b-2d73-45bc-8d71-6c61a60dbd70" + "WESTUS2:20210213T033413Z:3d8eda29-f40e-482f-9d80-e882105d3159" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:52:53 GMT" + "Sat, 13 Feb 2021 03:34:12 GMT" ], "Content-Length": [ "382" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"M3fd\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"-lpt\",\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/uaenorth/operationsStatus/758d442f-63dc-436a-a2ce-45fb1ba21375?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83NThkNDQyZi02M2RjLTQzNmEtYTJjZS00NWZiMWJhMjEzNzU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b7dc0555-7318-4d0b-9c5d-aef248b9da15?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9iN2RjMDU1NS03MzE4LTRkMGItOWM1ZC1hZWYyNDhiOWRhMTU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b4d3cefb-8ecf-4165-979c-2decc2eefabc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1491,50 +1449,47 @@ "11982" ], "x-ms-request-id": [ - "6327ced6-adf9-4dbe-9cdd-1834a6ac8f2a" + "078f2e9a-4926-45ad-88eb-5c74d43c0f97" ], "x-ms-correlation-request-id": [ - "6327ced6-adf9-4dbe-9cdd-1834a6ac8f2a" + "078f2e9a-4926-45ad-88eb-5c74d43c0f97" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025324Z:6327ced6-adf9-4dbe-9cdd-1834a6ac8f2a" + "WESTUS2:20210213T033448Z:078f2e9a-4926-45ad-88eb-5c74d43c0f97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:24 GMT" + "Sat, 13 Feb 2021 03:34:48 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/758d442f-63dc-436a-a2ce-45fb1ba21375?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60c2c8b1-5b4a-411d-8a8f-122f4041df34" + "c705b785-1b96-4fc8-8905-2a4b3cbc35a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1557,50 +1512,47 @@ "11980" ], "x-ms-request-id": [ - "1a50675d-917a-4d9b-af95-5cc548e8d39b" + "1d9f3172-b4e3-405f-aa9c-72e55c30b6c2" ], "x-ms-correlation-request-id": [ - "1a50675d-917a-4d9b-af95-5cc548e8d39b" + "1d9f3172-b4e3-405f-aa9c-72e55c30b6c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025326Z:1a50675d-917a-4d9b-af95-5cc548e8d39b" + "WESTUS2:20210213T033451Z:1d9f3172-b4e3-405f-aa9c-72e55c30b6c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:26 GMT" + "Sat, 13 Feb 2021 03:34:51 GMT" ], "Content-Length": [ "688" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAKAJcII=\",\r\n \"_etag\": \"\\\"00001b00-0000-3200-0000-5ee04b0a0000\\\"\",\r\n \"_ts\": 1591757578,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAIyP06w=\",\r\n \"_etag\": \"\\\"0000d10b-0000-3200-0000-602748c40000\\\"\",\r\n \"_ts\": 1613187268,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76587758-42e9-4bd4-a50b-062e5a92e252" + "826ceb58-e4ef-4838-8445-b8f70cc20091" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1623,50 +1575,47 @@ "11979" ], "x-ms-request-id": [ - "32245aab-0a07-4df1-a613-1b64b425c9db" + "bae0450b-8d25-4c99-99e2-f9fb4ccc2f18" ], "x-ms-correlation-request-id": [ - "32245aab-0a07-4df1-a613-1b64b425c9db" + "bae0450b-8d25-4c99-99e2-f9fb4ccc2f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025326Z:32245aab-0a07-4df1-a613-1b64b425c9db" + "WESTUS2:20210213T033453Z:bae0450b-8d25-4c99-99e2-f9fb4ccc2f18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:26 GMT" + "Sat, 13 Feb 2021 03:34:52 GMT" ], "Content-Length": [ - "413" + "806" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"U0wLAA==\",\r\n \"_etag\": \"\\\"00001100-0000-3200-0000-5ee04aa70000\\\"\",\r\n \"_ts\": 1591757479\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/table2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"table2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table2\",\r\n \"_rid\": \"E+FFAA==\",\r\n \"_etag\": \"\\\"00000e04-0000-3200-0000-601bb05f0000\\\"\",\r\n \"_ts\": 1612427359\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"rb5bAA==\",\r\n \"_etag\": \"\\\"0000c40b-0000-3200-0000-6027484c0000\\\"\",\r\n \"_ts\": 1613187148\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b5cc726-9446-405c-92fc-c03b086179c1" + "7e84b1a8-b453-46dc-b85a-bd51bbf069a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1677,13 +1626,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/db4d1f92-fce5-4102-ba38-77eb8ed064c6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/db4d1f92-fce5-4102-ba38-77eb8ed064c6?api-version=2021-01-15" ], "x-ms-request-id": [ - "af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9" + "db4d1f92-fce5-4102-ba38-77eb8ed064c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,47 +1647,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "bc936470-0467-4d53-91ea-32d5b67ced2e" + "14c5d889-c9c2-4fd6-9afb-3eb9d9904d08" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025327Z:bc936470-0467-4d53-91ea-32d5b67ced2e" + "WESTUS2:20210213T033457Z:14c5d889-c9c2-4fd6-9afb-3eb9d9904d08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:26 GMT" + "Sat, 13 Feb 2021 03:34:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "338b02cf-1574-4867-84aa-44dccdaddbfd" + "b96ded32-0de5-4c40-ba4d-92c71e2f804a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1749,13 +1695,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/4c6d6bc5-caf0-4bc6-902d-508a9f2da1f3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/4c6d6bc5-caf0-4bc6-902d-508a9f2da1f3?api-version=2021-01-15" ], "x-ms-request-id": [ - "7972212f-31a4-44e9-ba25-7789205138a7" + "4c6d6bc5-caf0-4bc6-902d-508a9f2da1f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,44 +1713,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "724bd485-28c8-4783-b4e5-a4c91f0600f3" + "4d13d808-7bea-4251-a190-98ee9721e466" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025430Z:724bd485-28c8-4783-b4e5-a4c91f0600f3" + "WESTUS2:20210213T033609Z:4d13d808-7bea-4251-a190-98ee9721e466" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:54:29 GMT" + "Sat, 13 Feb 2021 03:36:08 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hZjBjYjdmNC1lNWNiLTRjZjktOWQxMy00MmViNDgzZmM1Yzk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/db4d1f92-fce5-4102-ba38-77eb8ed064c6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9kYjRkMWY5Mi1mY2U1LTQxMDItYmEzOC03N2ViOGVkMDY0YzY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7e84b1a8-b453-46dc-b85a-bd51bbf069a8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1827,44 +1773,44 @@ "11978" ], "x-ms-request-id": [ - "6b4825d6-5bbc-4d52-b149-1757943ac9b0" + "2408ac39-d08d-4d1a-8d62-538fa013b655" ], "x-ms-correlation-request-id": [ - "6b4825d6-5bbc-4d52-b149-1757943ac9b0" + "2408ac39-d08d-4d1a-8d62-538fa013b655" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025357Z:6b4825d6-5bbc-4d52-b149-1757943ac9b0" + "WESTUS2:20210213T033527Z:2408ac39-d08d-4d1a-8d62-538fa013b655" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:56 GMT" + "Sat, 13 Feb 2021 03:35:27 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvYWYwY2I3ZjQtZTVjYi00Y2Y5LTlkMTMtNDJlYjQ4M2ZjNWM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/db4d1f92-fce5-4102-ba38-77eb8ed064c6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvZGI0ZDFmOTItZmNlNS00MTAyLWJhMzgtNzdlYjhlZDA2NGM2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7e84b1a8-b453-46dc-b85a-bd51bbf069a8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1887,47 +1833,44 @@ "11977" ], "x-ms-request-id": [ - "19291023-5f31-49f8-99a9-1d45ff711ec8" + "5f5dbbc7-6448-40de-8f66-86c823c6d1f0" ], "x-ms-correlation-request-id": [ - "19291023-5f31-49f8-99a9-1d45ff711ec8" + "5f5dbbc7-6448-40de-8f66-86c823c6d1f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025357Z:19291023-5f31-49f8-99a9-1d45ff711ec8" + "WESTUS2:20210213T033528Z:5f5dbbc7-6448-40de-8f66-86c823c6d1f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:56 GMT" + "Sat, 13 Feb 2021 03:35:28 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/af0cb7f4-e5cb-4cf9-9d13-42eb483fc5c9?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e42a2ed-3933-4eb8-b781-ce6ed7a98584" + "605921d9-5f2d-4793-9317-ee13d006b9c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1938,13 +1881,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/bcd5281f-34f9-4c0b-867e-7feda4a8e0e0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/bcd5281f-34f9-4c0b-867e-7feda4a8e0e0?api-version=2021-01-15" ], "x-ms-request-id": [ - "414017a1-fa47-44f1-8a3e-c4884f603111" + "bcd5281f-34f9-4c0b-867e-7feda4a8e0e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,47 +1902,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "eef716fc-4597-4de1-ab04-192ed00b940b" + "1d799a89-1ef0-4ad7-a1fe-8357974f7716" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025358Z:eef716fc-4597-4de1-ab04-192ed00b940b" + "WESTUS2:20210213T033533Z:1d799a89-1ef0-4ad7-a1fe-8357974f7716" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:53:57 GMT" + "Sat, 13 Feb 2021 03:35:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f5ea1e4-b75c-4db3-a7ca-b2f4d2eb866a" + "6f1edd75-070b-41c2-8085-3b6a5057adb2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2010,13 +1950,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/8741dac9-cbd5-4f2a-9ad1-8ad77c4c3ccc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8741dac9-cbd5-4f2a-9ad1-8ad77c4c3ccc?api-version=2021-01-15" ], "x-ms-request-id": [ - "b18395cd-c7cb-4ab1-b5bb-9d926ea39b98" + "8741dac9-cbd5-4f2a-9ad1-8ad77c4c3ccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2028,44 +1968,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "0b9d9723-a43c-47df-a859-9b0ad29defec" + "9ece2c81-250f-4a8c-8307-8a19fc9bd365" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025501Z:0b9d9723-a43c-47df-a859-9b0ad29defec" + "WESTUS2:20210213T033645Z:9ece2c81-250f-4a8c-8307-8a19fc9bd365" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:55:01 GMT" + "Sat, 13 Feb 2021 03:36:44 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy80MTQwMTdhMS1mYTQ3LTQ0ZjEtOGEzZS1jNDg4NGY2MDMxMTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/bcd5281f-34f9-4c0b-867e-7feda4a8e0e0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9iY2Q1MjgxZi0zNGY5LTRjMGItODY3ZS03ZmVkYTRhOGUwZTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "605921d9-5f2d-4793-9317-ee13d006b9c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,44 +2028,44 @@ "11999" ], "x-ms-request-id": [ - "9ecec04c-1ca1-44f3-9f49-52aa05a4e4fa" + "9d0f2449-1052-4044-bddd-70d1606a61bd" ], "x-ms-correlation-request-id": [ - "9ecec04c-1ca1-44f3-9f49-52aa05a4e4fa" + "9d0f2449-1052-4044-bddd-70d1606a61bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025429Z:9ecec04c-1ca1-44f3-9f49-52aa05a4e4fa" + "WESTUS2:20210213T033603Z:9d0f2449-1052-4044-bddd-70d1606a61bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:54:28 GMT" + "Sat, 13 Feb 2021 03:36:03 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvb3BlcmF0aW9uUmVzdWx0cy80MTQwMTdhMS1mYTQ3LTQ0ZjEtOGEzZS1jNDg4NGY2MDMxMTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/bcd5281f-34f9-4c0b-867e-7feda4a8e0e0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvb3BlcmF0aW9uUmVzdWx0cy9iY2Q1MjgxZi0zNGY5LTRjMGItODY3ZS03ZmVkYTRhOGUwZTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "605921d9-5f2d-4793-9317-ee13d006b9c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,41 +2088,41 @@ "11998" ], "x-ms-request-id": [ - "a194508d-bbc0-4256-a654-1eeafc641040" + "e4893d01-6db2-4312-8623-c08c5327117f" ], "x-ms-correlation-request-id": [ - "a194508d-bbc0-4256-a654-1eeafc641040" + "e4893d01-6db2-4312-8623-c08c5327117f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025429Z:a194508d-bbc0-4256-a654-1eeafc641040" + "WESTUS2:20210213T033604Z:e4893d01-6db2-4312-8623-c08c5327117f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:54:28 GMT" + "Sat, 13 Feb 2021 03:36:04 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/414017a1-fa47-44f1-8a3e-c4884f603111?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83OTcyMjEyZi0zMWE0LTQ0ZTktYmEyNS03Nzg5MjA1MTM4YTc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/4c6d6bc5-caf0-4bc6-902d-508a9f2da1f3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy80YzZkNmJjNS1jYWYwLTRiYzYtOTAyZC01MDhhOWYyZGExZjM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b96ded32-0de5-4c40-ba4d-92c71e2f804a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,47 +2142,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "d79c732e-7c37-4af6-8a86-3b4c89653c97" + "70c66571-8357-4897-a9a2-95b4893fb063" ], "x-ms-correlation-request-id": [ - "d79c732e-7c37-4af6-8a86-3b4c89653c97" + "70c66571-8357-4897-a9a2-95b4893fb063" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025500Z:d79c732e-7c37-4af6-8a86-3b4c89653c97" + "WESTUS2:20210213T033639Z:70c66571-8357-4897-a9a2-95b4893fb063" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:55:00 GMT" + "Sat, 13 Feb 2021 03:36:39 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvNzk3MjIxMmYtMzFhNC00NGU5LWJhMjUtNzc4OTIwNTEzOGE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/4c6d6bc5-caf0-4bc6-902d-508a9f2da1f3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvNGM2ZDZiYzUtY2FmMC00YmM2LTkwMmQtNTA4YTlmMmRhMWYzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b96ded32-0de5-4c40-ba4d-92c71e2f804a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2262,44 +2202,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "51a65cfb-4657-4e52-9a1c-0c1e21227203" + "57972fd5-2c98-4404-8ad4-b8d0c6c0cadb" ], "x-ms-correlation-request-id": [ - "51a65cfb-4657-4e52-9a1c-0c1e21227203" + "57972fd5-2c98-4404-8ad4-b8d0c6c0cadb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025500Z:51a65cfb-4657-4e52-9a1c-0c1e21227203" + "WESTUS2:20210213T033640Z:57972fd5-2c98-4404-8ad4-b8d0c6c0cadb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:55:00 GMT" + "Sat, 13 Feb 2021 03:36:39 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/tables/table/operationResults/7972212f-31a4-44e9-ba25-7789205138a7?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9iMTgzOTVjZC1jN2NiLTRhYjEtYjViYi05ZDkyNmVhMzliOTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8741dac9-cbd5-4f2a-9ad1-8ad77c4c3ccc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84NzQxZGFjOS1jYmQ1LTRmMmEtOWFkMS04YWQ3N2M0YzNjY2M/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6f1edd75-070b-41c2-8085-3b6a5057adb2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2319,47 +2259,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11997" ], "x-ms-request-id": [ - "7a4ab327-e09c-4734-ab7e-2cdf3dda71ce" + "29442824-eec6-4244-a7de-af92079ca923" ], "x-ms-correlation-request-id": [ - "7a4ab327-e09c-4734-ab7e-2cdf3dda71ce" + "29442824-eec6-4244-a7de-af92079ca923" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025532Z:7a4ab327-e09c-4734-ab7e-2cdf3dda71ce" + "WESTUS2:20210213T033715Z:29442824-eec6-4244-a7de-af92079ca923" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:55:31 GMT" + "Sat, 13 Feb 2021 03:37:15 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvb3BlcmF0aW9uUmVzdWx0cy9iMTgzOTVjZC1jN2NiLTRhYjEtYjViYi05ZDkyNmVhMzliOTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/8741dac9-cbd5-4f2a-9ad1-8ad77c4c3ccc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9rZXlzcGFjZTEvb3BlcmF0aW9uUmVzdWx0cy84NzQxZGFjOS1jYmQ1LTRmMmEtOWFkMS04YWQ3N2M0YzNjY2M/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6f1edd75-070b-41c2-8085-3b6a5057adb2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2379,28 +2319,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11996" ], "x-ms-request-id": [ - "c9b0b944-263e-41cb-811d-f13c09cce324" + "18b8eb31-8b6c-4e4c-bce5-afccd4caebe6" ], "x-ms-correlation-request-id": [ - "c9b0b944-263e-41cb-811d-f13c09cce324" + "18b8eb31-8b6c-4e4c-bce5-afccd4caebe6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025532Z:c9b0b944-263e-41cb-811d-f13c09cce324" + "WESTUS2:20210213T033716Z:18b8eb31-8b6c-4e4c-bce5-afccd4caebe6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:55:31 GMT" + "Sat, 13 Feb 2021 03:37:15 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/keyspace1/operationResults/b18395cd-c7cb-4ab1-b5bb-9d926ea39b98?api-version=2020-04-01" ] }, "ResponseBody": "", 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 b4423e26142e..7ee29e6fc0de 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48ebf91-021c-4100-8b20-e50b604381b2" + "c081a7d3-226c-45b7-b7ab-71817ad89864" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,53 +36,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "0a6b1b1c-5602-4d30-92be-af7203f1c68a" + "369cf23a-041e-42d8-9403-7b2747bc0424" ], "x-ms-correlation-request-id": [ - "0a6b1b1c-5602-4d30-92be-af7203f1c68a" + "369cf23a-041e-42d8-9403-7b2747bc0424" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024544Z:0a6b1b1c-5602-4d30-92be-af7203f1c68a" + "WESTUS2:20210213T032553Z:369cf23a-041e-42d8-9403-7b2747bc0424" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:45:44 GMT" + "Sat, 13 Feb 2021 03:25:53 GMT" ], "Content-Length": [ - "1848" + "2217" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:23:23.4455861Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"instanceId\": \"28cb40a4-c88f-40ca-bacf-bbac92ea4a65\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dab24609-b971-4781-bd16-d6ec665b9880" + "50524f3a-6db0-4323-96a9-e828710d4101" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -102,47 +99,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "42ecbfca-4929-4070-9fbe-bd2856d077a0" + "98f3206c-b203-4915-b1fb-b2650bb02911" ], "x-ms-correlation-request-id": [ - "42ecbfca-4929-4070-9fbe-bd2856d077a0" + "98f3206c-b203-4915-b1fb-b2650bb02911" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024545Z:42ecbfca-4929-4070-9fbe-bd2856d077a0" + "WESTUS2:20210213T032555Z:98f3206c-b203-4915-b1fb-b2650bb02911" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:45:45 GMT" + "Sat, 13 Feb 2021 03:25:55 GMT" ], "Content-Length": [ - "1706" + "1775" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: dab24609-b971-4781-bd16-d6ec665b9880, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:45:45.5936292Z, RequestEndTime: 2020-06-10T02:45:45.5936292Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:45:45.5936292Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 610, GlobalCommittedLsn: 610, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#610, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:45:45.5936292Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 610, GlobalCommittedLsn: 610, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#610, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/db2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 50524f3a-6db0-4323-96a9-e828710d4101, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:25:55.1445559Z, RequestEndTime: 2021-02-13T03:25:55.1545647Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:25:55.1545647Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2119, GlobalCommittedLsn: 2119, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2119, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:25:55.1545647Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2119, GlobalCommittedLsn: 2119, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2119, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/db2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50524f3a-6db0-4323-96a9-e828710d4101" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -162,53 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "927e5901-41e2-4ddb-80d8-6ea5199a98f1" + "e48c3be9-8f3d-4d6b-bd96-2fb00359770d" ], "x-ms-correlation-request-id": [ - "927e5901-41e2-4ddb-80d8-6ea5199a98f1" + "e48c3be9-8f3d-4d6b-bd96-2fb00359770d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024617Z:927e5901-41e2-4ddb-80d8-6ea5199a98f1" + "WESTUS2:20210213T032630Z:e48c3be9-8f3d-4d6b-bd96-2fb00359770d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:16 GMT" + "Sat, 13 Feb 2021 03:26:29 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f10772e-a51d-44d9-a298-cd3585748da6" + "23b2b752-6a28-4466-b3d4-374019521f60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,47 +222,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "7b14225c-4a07-48a6-a7da-124b89f1d065" + "ee366438-37a6-4dc4-a954-acde15ea7f14" ], "x-ms-correlation-request-id": [ - "7b14225c-4a07-48a6-a7da-124b89f1d065" + "ee366438-37a6-4dc4-a954-acde15ea7f14" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024617Z:7b14225c-4a07-48a6-a7da-124b89f1d065" + "WESTUS2:20210213T032632Z:ee366438-37a6-4dc4-a954-acde15ea7f14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:17 GMT" + "Sat, 13 Feb 2021 03:26:31 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "23b2b752-6a28-4466-b3d4-374019521f60" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -288,53 +282,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "26525120-d2bf-450b-9df2-70890c2b4c8a" + "c527c43c-1f31-47cc-b716-1ad79b87eee6" ], "x-ms-correlation-request-id": [ - "26525120-d2bf-450b-9df2-70890c2b4c8a" + "c527c43c-1f31-47cc-b716-1ad79b87eee6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024649Z:26525120-d2bf-450b-9df2-70890c2b4c8a" + "WESTUS2:20210213T032707Z:c527c43c-1f31-47cc-b716-1ad79b87eee6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:48 GMT" + "Sat, 13 Feb 2021 03:27:06 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b15c88da-bac4-452e-a497-7d7d695197eb" + "511ad0d7-42e0-4c4d-997b-91da278e6099" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -354,47 +345,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "68e41dab-6946-40f7-ba11-b8809a7f2a89" + "2d96f3b5-6405-48d3-9ac7-6ff2d4d6d3f0" ], "x-ms-correlation-request-id": [ - "68e41dab-6946-40f7-ba11-b8809a7f2a89" + "2d96f3b5-6405-48d3-9ac7-6ff2d4d6d3f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024649Z:68e41dab-6946-40f7-ba11-b8809a7f2a89" + "WESTUS2:20210213T032709Z:2d96f3b5-6405-48d3-9ac7-6ff2d4d6d3f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:49 GMT" + "Sat, 13 Feb 2021 03:27:08 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "511ad0d7-42e0-4c4d-997b-91da278e6099" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -414,53 +405,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "52a434d9-3b62-45bd-a200-390027984705" + "f13b0da9-4146-4614-8544-8eeed2be8542" ], "x-ms-correlation-request-id": [ - "52a434d9-3b62-45bd-a200-390027984705" + "f13b0da9-4146-4614-8544-8eeed2be8542" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024721Z:52a434d9-3b62-45bd-a200-390027984705" + "WESTUS2:20210213T032744Z:f13b0da9-4146-4614-8544-8eeed2be8542" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:20 GMT" + "Sat, 13 Feb 2021 03:27:43 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54990bbb-9f65-4a36-b4a7-c2686704afb8" + "1307a146-ec33-4ed7-80bc-d119bf00f543" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -480,53 +468,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-request-id": [ - "29190eeb-5e1d-493d-af4d-02f34df67036" + "089c5f08-2969-4f28-9d69-d28508d17f09" ], "x-ms-correlation-request-id": [ - "29190eeb-5e1d-493d-af4d-02f34df67036" + "089c5f08-2969-4f28-9d69-d28508d17f09" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024901Z:29190eeb-5e1d-493d-af4d-02f34df67036" + "WESTUS2:20210213T032937Z:089c5f08-2969-4f28-9d69-d28508d17f09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:00 GMT" + "Sat, 13 Feb 2021 03:29:37 GMT" ], "Content-Length": [ "383" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "ec42743b-6ed3-44ba-8c97-19b06f5761f6" + "50524f3a-6db0-4323-96a9-e828710d4101" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +528,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/32f19074-bfd3-41a3-a9dc-9a01b201f29f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/72513de1-dd2c-4e05-b72b-8c1451065194?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/32f19074-bfd3-41a3-a9dc-9a01b201f29f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/72513de1-dd2c-4e05-b72b-8c1451065194?api-version=2021-01-15" ], "x-ms-request-id": [ - "32f19074-bfd3-41a3-a9dc-9a01b201f29f" + "72513de1-dd2c-4e05-b72b-8c1451065194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +549,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "ede2c06c-723a-4925-8373-2b809cef703c" + "f1a04f19-ab7a-4175-b434-d54db3a24849" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024546Z:ede2c06c-723a-4925-8373-2b809cef703c" + "WESTUS2:20210213T032558Z:f1a04f19-ab7a-4175-b434-d54db3a24849" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:45:46 GMT" + "Sat, 13 Feb 2021 03:25:58 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "be322bbb-f69a-4088-ab3f-659b0d9a3fd2" + "23b2b752-6a28-4466-b3d4-374019521f60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +603,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/a6c20ca6-6c2e-4eeb-8ff1-4a1195d876f3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/13790879-078f-4b6e-9c59-02b5d73cc32d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a6c20ca6-6c2e-4eeb-8ff1-4a1195d876f3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/13790879-078f-4b6e-9c59-02b5d73cc32d?api-version=2021-01-15" ], "x-ms-request-id": [ - "a6c20ca6-6c2e-4eeb-8ff1-4a1195d876f3" + "13790879-078f-4b6e-9c59-02b5d73cc32d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +624,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "ba32a410-d031-444d-a65a-93811c58b27f" + "1625944a-36f4-47d6-a939-03430fd934c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024618Z:ba32a410-d031-444d-a65a-93811c58b27f" + "WESTUS2:20210213T032635Z:1625944a-36f4-47d6-a939-03430fd934c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:17 GMT" + "Sat, 13 Feb 2021 03:26:34 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "0f417c3e-0a67-448f-8467-55d7afb4bcf6" + "511ad0d7-42e0-4c4d-997b-91da278e6099" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +678,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/b12eb844-e660-45da-881d-eaee56e4d957?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/75a018b0-5e9c-48d2-884f-8c0814eb408f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b12eb844-e660-45da-881d-eaee56e4d957?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/75a018b0-5e9c-48d2-884f-8c0814eb408f?api-version=2021-01-15" ], "x-ms-request-id": [ - "b12eb844-e660-45da-881d-eaee56e4d957" + "75a018b0-5e9c-48d2-884f-8c0814eb408f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +699,41 @@ "1197" ], "x-ms-correlation-request-id": [ - "62d85da9-f147-4eb9-a1e1-d81a0ff1a19d" + "aa91b3d9-9232-4a3f-994f-cb5e770bdf1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024650Z:62d85da9-f147-4eb9-a1e1-d81a0ff1a19d" + "WESTUS2:20210213T032712Z:aa91b3d9-9232-4a3f-994f-cb5e770bdf1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:49 GMT" + "Sat, 13 Feb 2021 03:27:11 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/32f19074-bfd3-41a3-a9dc-9a01b201f29f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8zMmYxOTA3NC1iZmQzLTQxYTMtYTlkYy05YTAxYjIwMWYyOWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/72513de1-dd2c-4e05-b72b-8c1451065194?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83MjUxM2RlMS1kZDJjLTRlMDUtYjcyYi04YzE0NTEwNjUxOTQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50524f3a-6db0-4323-96a9-e828710d4101" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -774,47 +753,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "260da1f8-8e72-4341-b9f2-87bf28296905" + "17342f31-b027-4eed-94cc-f0a0ca6df976" ], "x-ms-correlation-request-id": [ - "260da1f8-8e72-4341-b9f2-87bf28296905" + "17342f31-b027-4eed-94cc-f0a0ca6df976" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024616Z:260da1f8-8e72-4341-b9f2-87bf28296905" + "WESTUS2:20210213T032629Z:17342f31-b027-4eed-94cc-f0a0ca6df976" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:15 GMT" + "Sat, 13 Feb 2021 03:26:28 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/32f19074-bfd3-41a3-a9dc-9a01b201f29f?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a6c20ca6-6c2e-4eeb-8ff1-4a1195d876f3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hNmMyMGNhNi02YzJlLTRlZWItOGZmMS00YTExOTVkODc2ZjM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/13790879-078f-4b6e-9c59-02b5d73cc32d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xMzc5MDg3OS0wNzhmLTRiNmUtOWM1OS0wMmI1ZDczY2MzMmQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "23b2b752-6a28-4466-b3d4-374019521f60" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -834,47 +813,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "2e9069ca-c740-44b5-84da-fecdc50df783" + "c9e651c0-a198-4888-b450-0df5d75e5589" ], "x-ms-correlation-request-id": [ - "2e9069ca-c740-44b5-84da-fecdc50df783" + "c9e651c0-a198-4888-b450-0df5d75e5589" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024648Z:2e9069ca-c740-44b5-84da-fecdc50df783" + "WESTUS2:20210213T032705Z:c9e651c0-a198-4888-b450-0df5d75e5589" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:46:47 GMT" + "Sat, 13 Feb 2021 03:27:05 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a6c20ca6-6c2e-4eeb-8ff1-4a1195d876f3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b12eb844-e660-45da-881d-eaee56e4d957?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9iMTJlYjg0NC1lNjYwLTQ1ZGEtODgxZC1lYWVlNTZlNGQ5NTc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/75a018b0-5e9c-48d2-884f-8c0814eb408f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83NWEwMThiMC01ZTljLTQ4ZDItODg0Zi04YzA4MTRlYjQwOGY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "511ad0d7-42e0-4c4d-997b-91da278e6099" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -894,53 +873,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "998da474-17a6-494e-85b4-60ba57da4735" + "cd30b840-38c2-4caf-b284-8b5fbb8368ed" ], "x-ms-correlation-request-id": [ - "998da474-17a6-494e-85b4-60ba57da4735" + "cd30b840-38c2-4caf-b284-8b5fbb8368ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024720Z:998da474-17a6-494e-85b4-60ba57da4735" + "WESTUS2:20210213T032742Z:cd30b840-38c2-4caf-b284-8b5fbb8368ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:19 GMT" + "Sat, 13 Feb 2021 03:27:42 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b12eb844-e660-45da-881d-eaee56e4d957?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df95d9b7-7efc-4d03-8fce-b066ea1dd163" + "cae6ff25-a6f4-4056-8b2d-9dc514da673a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -960,47 +936,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "b528bdaf-dd48-4db5-9284-622b0598ba45" + "646f810a-3f8c-4522-8902-e4620a37be26" ], "x-ms-correlation-request-id": [ - "b528bdaf-dd48-4db5-9284-622b0598ba45" + "646f810a-3f8c-4522-8902-e4620a37be26" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024722Z:b528bdaf-dd48-4db5-9284-622b0598ba45" + "WESTUS2:20210213T032746Z:646f810a-3f8c-4522-8902-e4620a37be26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:22 GMT" + "Sat, 13 Feb 2021 03:27:45 GMT" ], "Content-Length": [ - "1722" + "1791" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: df95d9b7-7efc-4d03-8fce-b066ea1dd163, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T02:47:22.8093403Z, RequestEndTime: 2020-06-10T02:47:22.8193510Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T02:47:22.8193510Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 611, GlobalCommittedLsn: 611, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#611, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T02:47:22.8193510Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, LSN: 611, GlobalCommittedLsn: 611, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#611, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/db2/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: cae6ff25-a6f4-4056-8b2d-9dc514da673a, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:27:46.0938591Z, RequestEndTime: 2021-02-13T03:27:46.0938591Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:27:46.0938591Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2120, GlobalCommittedLsn: 2120, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2120, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:27:46.0938591Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2120, GlobalCommittedLsn: 2120, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2120, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/db2/colls/table, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cae6ff25-a6f4-4056-8b2d-9dc514da673a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1020,53 +996,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "a0dfd126-0127-4bfb-9fe6-18ce58b1b00e" + "bc213f48-ce6c-42d9-8805-75d82255a314" ], "x-ms-correlation-request-id": [ - "a0dfd126-0127-4bfb-9fe6-18ce58b1b00e" + "bc213f48-ce6c-42d9-8805-75d82255a314" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024754Z:a0dfd126-0127-4bfb-9fe6-18ce58b1b00e" + "WESTUS2:20210213T032821Z:bc213f48-ce6c-42d9-8805-75d82255a314" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:54 GMT" + "Sat, 13 Feb 2021 03:28:21 GMT" ], "Content-Length": [ "604" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000a00-0000-3200-0000-5ee049bf0000\\\"\",\r\n \"_ts\": 1591757247,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000ba0b-0000-3200-0000-6027473c0000\\\"\",\r\n \"_ts\": 1613186876,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a119182d-5b86-4a51-a821-02bad918d544" + "5fabad83-0838-4746-a335-09e738c9430b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1086,47 +1059,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "a1551de4-627d-4bb4-945d-b2198db21845" + "a193ef85-fed3-4fe1-be9a-88ef103dc7f6" ], "x-ms-correlation-request-id": [ - "a1551de4-627d-4bb4-945d-b2198db21845" + "a193ef85-fed3-4fe1-be9a-88ef103dc7f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024755Z:a1551de4-627d-4bb4-945d-b2198db21845" + "WESTUS2:20210213T032823Z:a193ef85-fed3-4fe1-be9a-88ef103dc7f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:54 GMT" + "Sat, 13 Feb 2021 03:28:22 GMT" ], "Content-Length": [ "604" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000a00-0000-3200-0000-5ee049bf0000\\\"\",\r\n \"_ts\": 1591757247,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000ba0b-0000-3200-0000-6027473c0000\\\"\",\r\n \"_ts\": 1613186876,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5fabad83-0838-4746-a335-09e738c9430b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1146,53 +1119,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "c1f827a3-6027-474a-89f8-c4323e495f37" + "1e4ba383-a120-4b0a-9e95-4ea3d2cb94e8" ], "x-ms-correlation-request-id": [ - "c1f827a3-6027-474a-89f8-c4323e495f37" + "1e4ba383-a120-4b0a-9e95-4ea3d2cb94e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024827Z:c1f827a3-6027-474a-89f8-c4323e495f37" + "WESTUS2:20210213T032859Z:1e4ba383-a120-4b0a-9e95-4ea3d2cb94e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:48:27 GMT" + "Sat, 13 Feb 2021 03:28:58 GMT" ], "Content-Length": [ "670" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000d00-0000-3200-0000-5ee049e00000\\\"\",\r\n \"_ts\": 1591757280,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000bd0b-0000-3200-0000-602747650000\\\"\",\r\n \"_ts\": 1613186917,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85463896-b75a-4d65-a096-512aaae24b44" + "6e393973-db96-474a-96fc-e6638c4506fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1212,47 +1182,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "6c3b7ecf-5164-4c9e-b512-f4c30f75c173" + "be7bd4d8-6d87-423f-aa39-413bcf45c07d" ], "x-ms-correlation-request-id": [ - "6c3b7ecf-5164-4c9e-b512-f4c30f75c173" + "be7bd4d8-6d87-423f-aa39-413bcf45c07d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024828Z:6c3b7ecf-5164-4c9e-b512-f4c30f75c173" + "WESTUS2:20210213T032900Z:be7bd4d8-6d87-423f-aa39-413bcf45c07d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:48:28 GMT" + "Sat, 13 Feb 2021 03:29:00 GMT" ], "Content-Length": [ "670" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000d00-0000-3200-0000-5ee049e00000\\\"\",\r\n \"_ts\": 1591757280,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000bd0b-0000-3200-0000-602747650000\\\"\",\r\n \"_ts\": 1613186917,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e393973-db96-474a-96fc-e6638c4506fe" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1272,53 +1242,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "4cc550d6-3604-4fce-b4f5-44d796648b5f" + "76a8e8ed-dbbe-40a8-9e2b-492658fa9e57" ], "x-ms-correlation-request-id": [ - "4cc550d6-3604-4fce-b4f5-44d796648b5f" + "76a8e8ed-dbbe-40a8-9e2b-492658fa9e57" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024901Z:4cc550d6-3604-4fce-b4f5-44d796648b5f" + "WESTUS2:20210213T032936Z:76a8e8ed-dbbe-40a8-9e2b-492658fa9e57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:00 GMT" + "Sat, 13 Feb 2021 03:29:35 GMT" ], "Content-Length": [ "670" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000d00-0000-3200-0000-5ee049e00000\\\"\",\r\n \"_ts\": 1591757280,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000bd0b-0000-3200-0000-602747650000\\\"\",\r\n \"_ts\": 1613186917,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c263cc-7e9f-4537-be85-6a0673e8b157" + "dfd04fec-b5b4-459a-abf4-af0afe10ae07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1338,53 +1305,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "121624d5-5ae3-498f-b3ea-00e08d7a6d5f" + "8c286ab4-fc49-4f30-a535-0718557f69f1" ], "x-ms-correlation-request-id": [ - "121624d5-5ae3-498f-b3ea-00e08d7a6d5f" + "8c286ab4-fc49-4f30-a535-0718557f69f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024902Z:121624d5-5ae3-498f-b3ea-00e08d7a6d5f" + "WESTUS2:20210213T032939Z:8c286ab4-fc49-4f30-a535-0718557f69f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:01 GMT" + "Sat, 13 Feb 2021 03:29:38 GMT" ], "Content-Length": [ "670" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000d00-0000-3200-0000-5ee049e00000\\\"\",\r\n \"_ts\": 1591757280,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000bd0b-0000-3200-0000-602747650000\\\"\",\r\n \"_ts\": 1613186917,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "85eccd7c-bad0-4506-b961-48873c86c5ef" + "cae6ff25-a6f4-4056-8b2d-9dc514da673a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,13 +1365,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/883dd498-cbf2-4a75-b34c-7014b9a665a8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/a2ba2cee-cc3e-4cc1-8c4b-4b4a9785555c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/883dd498-cbf2-4a75-b34c-7014b9a665a8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a2ba2cee-cc3e-4cc1-8c4b-4b4a9785555c?api-version=2021-01-15" ], "x-ms-request-id": [ - "883dd498-cbf2-4a75-b34c-7014b9a665a8" + "a2ba2cee-cc3e-4cc1-8c4b-4b4a9785555c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,47 +1386,44 @@ "1196" ], "x-ms-correlation-request-id": [ - "ddc195a2-b1da-4d69-ad69-9a985704c106" + "d21079b5-0870-4622-933f-1607277680f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024723Z:ddc195a2-b1da-4d69-ad69-9a985704c106" + "WESTUS2:20210213T032749Z:d21079b5-0870-4622-933f-1607277680f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:22 GMT" + "Sat, 13 Feb 2021 03:27:48 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": -1,\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": [ - "9a5cb31a-3eba-472d-902d-83c7228ded48" + "5fabad83-0838-4746-a335-09e738c9430b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1479,13 +1440,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/15ebf9c6-e1b0-4fbc-af5c-01f15e175070?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/1089862c-fe29-4459-89f6-f9f6d6cb5978?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/15ebf9c6-e1b0-4fbc-af5c-01f15e175070?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/1089862c-fe29-4459-89f6-f9f6d6cb5978?api-version=2021-01-15" ], "x-ms-request-id": [ - "15ebf9c6-e1b0-4fbc-af5c-01f15e175070" + "1089862c-fe29-4459-89f6-f9f6d6cb5978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,47 +1461,44 @@ "1195" ], "x-ms-correlation-request-id": [ - "8b6f8ce5-38cf-4385-a4e2-2bb345dcadff" + "4ba9aabe-6d02-4993-9c46-8caba28d1eb9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024755Z:8b6f8ce5-38cf-4385-a4e2-2bb345dcadff" + "WESTUS2:20210213T032826Z:4ba9aabe-6d02-4993-9c46-8caba28d1eb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:55 GMT" + "Sat, 13 Feb 2021 03:28:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table\",\r\n \"defaultTtl\": -1,\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": [ - "0be00bf9-862a-42b5-9d1e-d9135e9e3246" + "6e393973-db96-474a-96fc-e6638c4506fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,13 +1515,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/408f84db-6cf3-4a4a-b61c-e704b600de7e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/5d36e0cb-4313-43b0-ac38-c22d732786ba?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/408f84db-6cf3-4a4a-b61c-e704b600de7e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/5d36e0cb-4313-43b0-ac38-c22d732786ba?api-version=2021-01-15" ], "x-ms-request-id": [ - "408f84db-6cf3-4a4a-b61c-e704b600de7e" + "5d36e0cb-4313-43b0-ac38-c22d732786ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,41 +1536,41 @@ "1194" ], "x-ms-correlation-request-id": [ - "e3b738d5-10e4-4332-877a-dda18dbcf955" + "ea237f8a-9285-4859-8b44-6d40bc3c8eef" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024829Z:e3b738d5-10e4-4332-877a-dda18dbcf955" + "WESTUS2:20210213T032904Z:ea237f8a-9285-4859-8b44-6d40bc3c8eef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:48:29 GMT" + "Sat, 13 Feb 2021 03:29:03 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/883dd498-cbf2-4a75-b34c-7014b9a665a8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84ODNkZDQ5OC1jYmYyLTRhNzUtYjM0Yy03MDE0YjlhNjY1YTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a2ba2cee-cc3e-4cc1-8c4b-4b4a9785555c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hMmJhMmNlZS1jYzNlLTRjYzEtOGM0Yi00YjRhOTc4NTU1NWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cae6ff25-a6f4-4056-8b2d-9dc514da673a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1632,47 +1590,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "30ff597e-435a-4e77-b1c6-1a4ec0b1bde6" + "7e85f720-84ad-4ba1-9f28-6c5f6bfe6a4e" ], "x-ms-correlation-request-id": [ - "30ff597e-435a-4e77-b1c6-1a4ec0b1bde6" + "7e85f720-84ad-4ba1-9f28-6c5f6bfe6a4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024753Z:30ff597e-435a-4e77-b1c6-1a4ec0b1bde6" + "WESTUS2:20210213T032820Z:7e85f720-84ad-4ba1-9f28-6c5f6bfe6a4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:47:53 GMT" + "Sat, 13 Feb 2021 03:28:19 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/883dd498-cbf2-4a75-b34c-7014b9a665a8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/15ebf9c6-e1b0-4fbc-af5c-01f15e175070?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xNWViZjljNi1lMWIwLTRmYmMtYWY1Yy0wMWYxNWUxNzUwNzA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/1089862c-fe29-4459-89f6-f9f6d6cb5978?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xMDg5ODYyYy1mZTI5LTQ0NTktODlmNi1mOWY2ZDZjYjU5Nzg/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5fabad83-0838-4746-a335-09e738c9430b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1692,47 +1650,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "9e59cfcf-7bb3-4a65-afbf-30eb89eaf123" + "2b98761a-9cb8-4262-bf21-d4cc860ae2f4" ], "x-ms-correlation-request-id": [ - "9e59cfcf-7bb3-4a65-afbf-30eb89eaf123" + "2b98761a-9cb8-4262-bf21-d4cc860ae2f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024826Z:9e59cfcf-7bb3-4a65-afbf-30eb89eaf123" + "WESTUS2:20210213T032857Z:2b98761a-9cb8-4262-bf21-d4cc860ae2f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:48:25 GMT" + "Sat, 13 Feb 2021 03:28:56 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/15ebf9c6-e1b0-4fbc-af5c-01f15e175070?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/408f84db-6cf3-4a4a-b61c-e704b600de7e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy80MDhmODRkYi02Y2YzLTRhNGEtYjYxYy1lNzA0YjYwMGRlN2U/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/5d36e0cb-4313-43b0-ac38-c22d732786ba?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy81ZDM2ZTBjYi00MzEzLTQzYjAtYWMzOC1jMjJkNzMyNzg2YmE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6e393973-db96-474a-96fc-e6638c4506fe" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1752,53 +1710,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "c25f3b47-6b7a-4d1f-a4ed-af6e930b1e63" + "94e821ec-c012-4dca-9fc9-704e721d3c58" ], "x-ms-correlation-request-id": [ - "c25f3b47-6b7a-4d1f-a4ed-af6e930b1e63" + "94e821ec-c012-4dca-9fc9-704e721d3c58" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024859Z:c25f3b47-6b7a-4d1f-a4ed-af6e930b1e63" + "WESTUS2:20210213T032934Z:94e821ec-c012-4dca-9fc9-704e721d3c58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:48:59 GMT" + "Sat, 13 Feb 2021 03:29:34 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/408f84db-6cf3-4a4a-b61c-e704b600de7e?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61c968e-2255-4441-a8c9-f9818131a3ea" + "01b87276-9b58-4093-8881-29e8e0347c35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1818,53 +1773,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "861d62b8-e818-4d12-9107-7b4fb2e26b6c" + "c45e27af-a681-453c-b8ee-c83dcd7b491b" ], "x-ms-correlation-request-id": [ - "861d62b8-e818-4d12-9107-7b4fb2e26b6c" + "c45e27af-a681-453c-b8ee-c83dcd7b491b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024902Z:861d62b8-e818-4d12-9107-7b4fb2e26b6c" + "WESTUS2:20210213T032941Z:c45e27af-a681-453c-b8ee-c83dcd7b491b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:02 GMT" + "Sat, 13 Feb 2021 03:29:40 GMT" ], "Content-Length": [ "682" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAJPJFHA=\",\r\n \"_etag\": \"\\\"00000d00-0000-3200-0000-5ee049e00000\\\"\",\r\n \"_ts\": 1591757280,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAPdfKBw=\",\r\n \"_etag\": \"\\\"0000bd0b-0000-3200-0000-602747650000\\\"\",\r\n \"_ts\": 1613186917,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8470fed-7316-4110-8b2d-fda49c9faeeb" + "58bbd7a5-ffc8-41d7-92f3-a4c66938d0f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1884,53 +1836,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-request-id": [ - "72fbc533-73ab-4d8b-9857-3ecd9958ab3a" + "47638cd2-e06e-4315-a7bb-a9871fd4e6e5" ], "x-ms-correlation-request-id": [ - "72fbc533-73ab-4d8b-9857-3ecd9958ab3a" + "47638cd2-e06e-4315-a7bb-a9871fd4e6e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024903Z:72fbc533-73ab-4d8b-9857-3ecd9958ab3a" + "WESTUS2:20210213T032942Z:47638cd2-e06e-4315-a7bb-a9871fd4e6e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:02 GMT" + "Sat, 13 Feb 2021 03:29:42 GMT" ], "Content-Length": [ - "395" + "788" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"bKseAA==\",\r\n \"_etag\": \"\\\"00000200-0000-3200-0000-5ee0495f0000\\\"\",\r\n \"_ts\": 1591757151\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/table2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\r\n \"name\": \"table2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"table2\",\r\n \"_rid\": \"E+FFAA==\",\r\n \"_etag\": \"\\\"00000e04-0000-3200-0000-601bb05f0000\\\"\",\r\n \"_ts\": 1612427359\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"LZ1wAA==\",\r\n \"_etag\": \"\\\"0000b20b-0000-3200-0000-602746d40000\\\"\",\r\n \"_ts\": 1613186772\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f88eee98-3066-44b8-93a5-760af41fc2eb" + "874f9e83-bc53-4904-be6c-13b51d9948d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1941,13 +1890,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/503fc6b4-d1c3-45cc-8805-69bee9f417db?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/503fc6b4-d1c3-45cc-8805-69bee9f417db?api-version=2021-01-15" ], "x-ms-request-id": [ - "0780693b-9db8-44de-88f7-0db9e87b903d" + "503fc6b4-d1c3-45cc-8805-69bee9f417db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,50 +1908,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "4949a66a-20f9-4bf5-bd39-77e893af1001" + "6aa178b0-47ea-41c3-a5e1-2a1ef05c1785" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024903Z:4949a66a-20f9-4bf5-bd39-77e893af1001" + "WESTUS2:20210213T032945Z:6aa178b0-47ea-41c3-a5e1-2a1ef05c1785" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:02 GMT" + "Sat, 13 Feb 2021 03:29:45 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a9e4dbd-31c4-4b44-b295-901bd09b90ee" + "81ac0766-9ea9-4efb-88c2-af05f332a7ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2013,13 +1959,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/1da86f9f-e784-4ad6-8992-c530b563f156?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/1da86f9f-e784-4ad6-8992-c530b563f156?api-version=2021-01-15" ], "x-ms-request-id": [ - "8a511343-2409-40ab-b2e4-3d4200355111" + "1da86f9f-e784-4ad6-8992-c530b563f156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,44 +1977,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "463e3559-4eb1-4bb6-8769-875c2babdd19" + "44db7f47-cda9-43c0-bbb7-743d4ef984aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025005Z:463e3559-4eb1-4bb6-8769-875c2babdd19" + "WESTUS2:20210213T033057Z:44db7f47-cda9-43c0-bbb7-743d4ef984aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:05 GMT" + "Sat, 13 Feb 2021 03:30:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wNzgwNjkzYi05ZGI4LTQ0ZGUtODhmNy0wZGI5ZTg3YjkwM2Q/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/503fc6b4-d1c3-45cc-8805-69bee9f417db?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy81MDNmYzZiNC1kMWMzLTQ1Y2MtODgwNS02OWJlZTlmNDE3ZGI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "874f9e83-bc53-4904-be6c-13b51d9948d1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2091,44 +2037,44 @@ "11976" ], "x-ms-request-id": [ - "ca174c0a-6042-40bf-90f0-cbdf3f716033" + "bf733a11-43c6-4ec7-9c21-a0a5ed801fb0" ], "x-ms-correlation-request-id": [ - "ca174c0a-6042-40bf-90f0-cbdf3f716033" + "bf733a11-43c6-4ec7-9c21-a0a5ed801fb0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024933Z:ca174c0a-6042-40bf-90f0-cbdf3f716033" + "WESTUS2:20210213T033016Z:bf733a11-43c6-4ec7-9c21-a0a5ed801fb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:33 GMT" + "Sat, 13 Feb 2021 03:30:16 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvMDc4MDY5M2ItOWRiOC00NGRlLTg4ZjctMGRiOWU4N2I5MDNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/503fc6b4-d1c3-45cc-8805-69bee9f417db?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvNTAzZmM2YjQtZDFjMy00NWNjLTg4MDUtNjliZWU5ZjQxN2RiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "874f9e83-bc53-4904-be6c-13b51d9948d1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2151,47 +2097,44 @@ "11975" ], "x-ms-request-id": [ - "5d293797-7048-4fde-a051-04cf40fbcd20" + "401d795b-8c89-497e-a620-5868f54d7102" ], "x-ms-correlation-request-id": [ - "5d293797-7048-4fde-a051-04cf40fbcd20" + "401d795b-8c89-497e-a620-5868f54d7102" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024933Z:5d293797-7048-4fde-a051-04cf40fbcd20" + "WESTUS2:20210213T033016Z:401d795b-8c89-497e-a620-5868f54d7102" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:33 GMT" + "Sat, 13 Feb 2021 03:30:16 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/0780693b-9db8-44de-88f7-0db9e87b903d?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b58c6077-a1e2-4003-9b24-45d54565abde" + "25aa6f8c-af39-4627-96b0-ee5752f9abb7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,13 +2145,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/fe536031-470b-4e3b-8711-de4c58fd2f1e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fe536031-470b-4e3b-8711-de4c58fd2f1e?api-version=2021-01-15" ], "x-ms-request-id": [ - "6a5f1119-f05c-4e09-bb8c-d40ea8648c1d" + "fe536031-470b-4e3b-8711-de4c58fd2f1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,47 +2166,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "4cbb83f9-8c9b-46cc-a974-b41fc133621f" + "95cd6be9-24ef-46f8-859e-a6a7c7789f5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T024934Z:4cbb83f9-8c9b-46cc-a974-b41fc133621f" + "WESTUS2:20210213T033021Z:95cd6be9-24ef-46f8-859e-a6a7c7789f5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:49:33 GMT" + "Sat, 13 Feb 2021 03:30:21 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c7ca933-cfcb-4847-b87c-952bc0a23c48" + "4b89d798-afb2-4896-a43d-877f5208dac0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2274,13 +2214,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/22be1656-38fc-4642-beb6-c239d2f3599b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/22be1656-38fc-4642-beb6-c239d2f3599b?api-version=2021-01-15" ], "x-ms-request-id": [ - "272625b8-d18b-4df3-86f8-55b0d18884f1" + "22be1656-38fc-4642-beb6-c239d2f3599b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,44 +2232,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "51d6f657-2458-45e0-a70a-83965031f211" + "220ea70a-cc9b-4260-8f0f-d13282c734e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025036Z:51d6f657-2458-45e0-a70a-83965031f211" + "WESTUS2:20210213T033133Z:220ea70a-cc9b-4260-8f0f-d13282c734e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:36 GMT" + "Sat, 13 Feb 2021 03:31:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy82YTVmMTExOS1mMDVjLTRlMDktYmI4Yy1kNDBlYTg2NDhjMWQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fe536031-470b-4e3b-8711-de4c58fd2f1e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mZTUzNjAzMS00NzBiLTRlM2ItODcxMS1kZTRjNThmZDJmMWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "25aa6f8c-af39-4627-96b0-ee5752f9abb7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2352,44 +2292,44 @@ "11999" ], "x-ms-request-id": [ - "c0a0ffc1-5054-46a3-9c4b-fdd72ea3ffe4" + "97d9d9c7-721c-4ef9-91a5-dbd265e18926" ], "x-ms-correlation-request-id": [ - "c0a0ffc1-5054-46a3-9c4b-fdd72ea3ffe4" + "97d9d9c7-721c-4ef9-91a5-dbd265e18926" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025004Z:c0a0ffc1-5054-46a3-9c4b-fdd72ea3ffe4" + "WESTUS2:20210213T033052Z:97d9d9c7-721c-4ef9-91a5-dbd265e18926" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:04 GMT" + "Sat, 13 Feb 2021 03:30:51 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvb3BlcmF0aW9uUmVzdWx0cy82YTVmMTExOS1mMDVjLTRlMDktYmI4Yy1kNDBlYTg2NDhjMWQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/fe536031-470b-4e3b-8711-de4c58fd2f1e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvb3BlcmF0aW9uUmVzdWx0cy9mZTUzNjAzMS00NzBiLTRlM2ItODcxMS1kZTRjNThmZDJmMWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "25aa6f8c-af39-4627-96b0-ee5752f9abb7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2412,41 +2352,41 @@ "11998" ], "x-ms-request-id": [ - "8ed96460-9585-4090-aa10-22f13f5436ca" + "46a11d44-c63c-4969-bda3-e40621a66f08" ], "x-ms-correlation-request-id": [ - "8ed96460-9585-4090-aa10-22f13f5436ca" + "46a11d44-c63c-4969-bda3-e40621a66f08" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025005Z:8ed96460-9585-4090-aa10-22f13f5436ca" + "WESTUS2:20210213T033052Z:46a11d44-c63c-4969-bda3-e40621a66f08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:04 GMT" + "Sat, 13 Feb 2021 03:30:52 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/6a5f1119-f05c-4e09-bb8c-d40ea8648c1d?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84YTUxMTM0My0yNDA5LTQwYWItYjJlNC0zZDQyMDAzNTUxMTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/1da86f9f-e784-4ad6-8992-c530b563f156?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xZGE4NmY5Zi1lNzg0LTRhZDYtODk5Mi1jNTMwYjU2M2YxNTY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "81ac0766-9ea9-4efb-88c2-af05f332a7ba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2466,47 +2406,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "22a51fde-9a69-4c2e-a454-3f9c1f53c6f5" + "d857a3bf-1281-40ad-9b64-b1f6081e33de" ], "x-ms-correlation-request-id": [ - "22a51fde-9a69-4c2e-a454-3f9c1f53c6f5" + "d857a3bf-1281-40ad-9b64-b1f6081e33de" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025035Z:22a51fde-9a69-4c2e-a454-3f9c1f53c6f5" + "WESTUS2:20210213T033128Z:d857a3bf-1281-40ad-9b64-b1f6081e33de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:35 GMT" + "Sat, 13 Feb 2021 03:31:27 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvOGE1MTEzNDMtMjQwOS00MGFiLWIyZTQtM2Q0MjAwMzU1MTExP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/1da86f9f-e784-4ad6-8992-c530b563f156?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvdGFibGVzL3RhYmxlL29wZXJhdGlvblJlc3VsdHMvMWRhODZmOWYtZTc4NC00YWQ2LTg5OTItYzUzMGI1NjNmMTU2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "81ac0766-9ea9-4efb-88c2-af05f332a7ba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2526,44 +2466,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "ab69c522-ee6b-4a20-be2f-8d7d010bdfb7" + "e2e57b38-983b-4d74-a69f-3e82991cc352" ], "x-ms-correlation-request-id": [ - "ab69c522-ee6b-4a20-be2f-8d7d010bdfb7" + "e2e57b38-983b-4d74-a69f-3e82991cc352" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025036Z:ab69c522-ee6b-4a20-be2f-8d7d010bdfb7" + "WESTUS2:20210213T033128Z:e2e57b38-983b-4d74-a69f-3e82991cc352" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:50:35 GMT" + "Sat, 13 Feb 2021 03:31:28 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/tables/table/operationResults/8a511343-2409-40ab-b2e4-3d4200355111?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8yNzI2MjViOC1kMThiLTRkZjMtODZmOC01NWIwZDE4ODg0ZjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/22be1656-38fc-4642-beb6-c239d2f3599b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8yMmJlMTY1Ni0zOGZjLTQ2NDItYmViNi1jMjM5ZDJmMzU5OWI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b89d798-afb2-4896-a43d-877f5208dac0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2583,47 +2523,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "edce64e8-6288-4c11-9e67-e767c95e2ad1" + "a802a9a6-d7b0-4be5-b379-979e9bb954b2" ], "x-ms-correlation-request-id": [ - "edce64e8-6288-4c11-9e67-e767c95e2ad1" + "a802a9a6-d7b0-4be5-b379-979e9bb954b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025106Z:edce64e8-6288-4c11-9e67-e767c95e2ad1" + "WESTUS2:20210213T033204Z:a802a9a6-d7b0-4be5-b379-979e9bb954b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:06 GMT" + "Sat, 13 Feb 2021 03:32:03 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvb3BlcmF0aW9uUmVzdWx0cy8yNzI2MjViOC1kMThiLTRkZjMtODZmOC01NWIwZDE4ODg0ZjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/22be1656-38fc-4642-beb6-c239d2f3599b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9kYjIvb3BlcmF0aW9uUmVzdWx0cy8yMmJlMTY1Ni0zOGZjLTQ2NDItYmViNi1jMjM5ZDJmMzU5OWI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4b89d798-afb2-4896-a43d-877f5208dac0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2643,28 +2583,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "5d0fcd19-55c3-4836-a60e-86a746495050" + "333cfd4b-d564-46dd-9c1f-805d1b5d97f6" ], "x-ms-correlation-request-id": [ - "5d0fcd19-55c3-4836-a60e-86a746495050" + "333cfd4b-d564-46dd-9c1f-805d1b5d97f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T025106Z:5d0fcd19-55c3-4836-a60e-86a746495050" + "WESTUS2:20210213T033204Z:333cfd4b-d564-46dd-9c1f-805d1b5d97f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 02:51:06 GMT" + "Sat, 13 Feb 2021 03:32:03 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/db2/operationResults/272625b8-d18b-4df3-86f8-55b0d18884f1?api-version=2020-04-01" ] }, "ResponseBody": "", 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 7d46ebb03f2c..c54d0efda635 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d18f003-b1ac-4321-a4da-e8597c1751b2" + "f13da8a2-1134-4d43-8ceb-fa3a8b3607d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "4be0d717-bc3f-4fa8-a246-15388e0e0539" + "199f2596-49e7-4faf-8dac-d3d0dc7b754f" ], "x-ms-correlation-request-id": [ - "4be0d717-bc3f-4fa8-a246-15388e0e0539" + "199f2596-49e7-4faf-8dac-d3d0dc7b754f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005752Z:4be0d717-bc3f-4fa8-a246-15388e0e0539" + "WESTUS2:20210213T033723Z:199f2596-49e7-4faf-8dac-d3d0dc7b754f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:51 GMT" + "Sat, 13 Feb 2021 03:37:23 GMT" ], "Content-Length": [ - "1779" + "1785" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01" ] }, - "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: 6d18f003-b1ac-4321-a4da-e8597c1751b2, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132434872815817268s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:57:51.9031560Z, RequestEndTime: 2020-09-03T00:57:51.9131160Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:57:51.9131160Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132434872815817268s, LSN: 815, GlobalCommittedLsn: 815, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#815, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:57:51.9131160Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132435608863720406s, LSN: 815, GlobalCommittedLsn: 815, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#815, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: f13da8a2-1134-4d43-8ceb-fa3a8b3607d4, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:37:23.5639658Z, RequestEndTime: 2021-02-13T03:37:23.5639658Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:37:23.5639658Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2138, GlobalCommittedLsn: 2138, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2138, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:37:23.5639658Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2138, GlobalCommittedLsn: 2138, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2138, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f13da8a2-1134-4d43-8ceb-fa3a8b3607d4" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "20fb6445-b730-497b-b1d6-8e36902f841c" + "5e54c90b-0ded-494f-9871-f5cf3cdbb178" ], "x-ms-correlation-request-id": [ - "20fb6445-b730-497b-b1d6-8e36902f841c" + "5e54c90b-0ded-494f-9871-f5cf3cdbb178" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005823Z:20fb6445-b730-497b-b1d6-8e36902f841c" + "WESTUS2:20210213T033829Z:5e54c90b-0ded-494f-9871-f5cf3cdbb178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:22 GMT" + "Sat, 13 Feb 2021 03:38:29 GMT" ], "Content-Length": [ "413" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"5hZVAA==\",\r\n \"_etag\": \"\\\"00006d05-0000-3200-0000-5f503f960000\\\"\",\r\n \"_ts\": 1599094678\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"SnQVAA==\",\r\n \"_etag\": \"\\\"0000d40b-0000-3200-0000-6027498d0000\\\"\",\r\n \"_ts\": 1613187470\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "a4f95068-281f-4c94-b269-98af8b866615" + "f13da8a2-1134-4d43-8ceb-fa3a8b3607d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/d80164b2-00de-465b-9c2e-9c98e956aa1f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/ab9ae9e6-6220-4529-9726-52a998f94263?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d80164b2-00de-465b-9c2e-9c98e956aa1f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/ab9ae9e6-6220-4529-9726-52a998f94263?api-version=2021-01-15" ], "x-ms-request-id": [ - "d80164b2-00de-465b-9c2e-9c98e956aa1f" + "ab9ae9e6-6220-4529-9726-52a998f94263" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "20b4398a-d386-4b2f-aeb4-f51d16cc9243" + "5fd54b43-b38c-4fc4-abf3-0d57422bb2e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005752Z:20b4398a-d386-4b2f-aeb4-f51d16cc9243" + "WESTUS2:20210213T033727Z:5fd54b43-b38c-4fc4-abf3-0d57422bb2e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:52 GMT" + "Sat, 13 Feb 2021 03:37:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d80164b2-00de-465b-9c2e-9c98e956aa1f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9kODAxNjRiMi0wMGRlLTQ2NWItOWMyZS05Yzk4ZTk1NmFhMWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/ab9ae9e6-6220-4529-9726-52a998f94263?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hYjlhZTllNi02MjIwLTQ1MjktOTcyNi01MmE5OThmOTQyNjM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f13da8a2-1134-4d43-8ceb-fa3a8b3607d4" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -237,50 +234,107 @@ "11998" ], "x-ms-request-id": [ - "76d69627-c59c-49fd-a1b4-da717dafb605" + "22f01937-4f95-4160-b508-8c7618b148ff" ], "x-ms-correlation-request-id": [ - "76d69627-c59c-49fd-a1b4-da717dafb605" + "22f01937-4f95-4160-b508-8c7618b148ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005822Z:76d69627-c59c-49fd-a1b4-da717dafb605" + "WESTUS2:20210213T033757Z:22f01937-4f95-4160-b508-8c7618b148ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:22 GMT" + "Sat, 13 Feb 2021 03:37:56 GMT" ], "Content-Length": [ - "22" + "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/uaenorth/operationsStatus/ab9ae9e6-6220-4529-9726-52a998f94263?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hYjlhZTllNi02MjIwLTQ1MjktOTcyNi01MmE5OThmOTQyNjM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f13da8a2-1134-4d43-8ceb-fa3a8b3607d4" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d80164b2-00de-465b-9c2e-9c98e956aa1f?api-version=2020-04-01" + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "be3f445c-38b2-45ef-838b-147573bd88dd" + ], + "x-ms-correlation-request-id": [ + "be3f445c-38b2-45ef-838b-147573bd88dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T033828Z:be3f445c-38b2-45ef-838b-147573bd88dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Feb 2021 03:38:27 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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da48887b-bcd7-42d0-aef2-44bf367d9f53" + "a2123e5b-6a9a-4cb3-9f34-6a5499e77903" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,53 +354,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "18b4414e-4316-4f1c-94b9-725bdeb3d3a1" + "d0aec1cf-830e-4467-9910-3d9bb4a76900" ], "x-ms-correlation-request-id": [ - "18b4414e-4316-4f1c-94b9-725bdeb3d3a1" + "d0aec1cf-830e-4467-9910-3d9bb4a76900" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005824Z:18b4414e-4316-4f1c-94b9-725bdeb3d3a1" + "WESTUS2:20210213T033831Z:d0aec1cf-830e-4467-9910-3d9bb4a76900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:23 GMT" + "Sat, 13 Feb 2021 03:38:31 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"O-nW\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"f8a4\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2806de9b-0d0d-45d1-a5ab-4897177f160e" + "c24194f2-34f9-47d8-a7e7-7dda85554750" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +408,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/b261b01e-fce2-446d-a244-e32c08c24d06?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b261b01e-fce2-446d-a244-e32c08c24d06?api-version=2021-01-15" ], "x-ms-request-id": [ - "52ce176f-e5f1-48d4-98bb-5154ab29b05a" + "b261b01e-fce2-446d-a244-e32c08c24d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +429,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2a964d63-adfd-4118-a580-e16a81de6518" + "f53e07a2-d5c9-4976-8835-2c60ff5f5c8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005825Z:2a964d63-adfd-4118-a580-e16a81de6518" + "WESTUS2:20210213T033834Z:f53e07a2-d5c9-4976-8835-2c60ff5f5c8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:24 GMT" + "Sat, 13 Feb 2021 03:38:34 GMT" ], "Content-Length": [ "21" @@ -400,16 +451,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy81MmNlMTc2Zi1lNWYxLTQ4ZDQtOThiYi01MTU0YWIyOWIwNWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/b261b01e-fce2-446d-a244-e32c08c24d06?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9iMjYxYjAxZS1mY2UyLTQ0NmQtYTI0NC1lMzJjMDhjMjRkMDY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c24194f2-34f9-47d8-a7e7-7dda85554750" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -429,47 +483,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "5cf05d5c-0c2a-4134-aacb-476dc847264c" + "d54425d1-3849-45a2-a384-5856bc83d423" ], "x-ms-correlation-request-id": [ - "5cf05d5c-0c2a-4134-aacb-476dc847264c" + "d54425d1-3849-45a2-a384-5856bc83d423" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005855Z:5cf05d5c-0c2a-4134-aacb-476dc847264c" + "WESTUS2:20210213T033905Z:d54425d1-3849-45a2-a384-5856bc83d423" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:55 GMT" + "Sat, 13 Feb 2021 03:39:05 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzUyY2UxNzZmLWU1ZjEtNDhkNC05OGJiLTUxNTRhYjI5YjA1YT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/b261b01e-fce2-446d-a244-e32c08c24d06?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2IyNjFiMDFlLWZjZTItNDQ2ZC1hMjQ0LWUzMmMwOGMyNGQwNj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c24194f2-34f9-47d8-a7e7-7dda85554750" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -489,53 +543,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "2c6353d3-3994-4fec-85d4-a8b40f758498" + "1ee241a7-e8fe-49df-9a56-200a7e9bfd1c" ], "x-ms-correlation-request-id": [ - "2c6353d3-3994-4fec-85d4-a8b40f758498" + "1ee241a7-e8fe-49df-9a56-200a7e9bfd1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005856Z:2c6353d3-3994-4fec-85d4-a8b40f758498" + "WESTUS2:20210213T033906Z:1ee241a7-e8fe-49df-9a56-200a7e9bfd1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:56 GMT" + "Sat, 13 Feb 2021 03:39:06 GMT" ], "Content-Length": [ "468" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale/operationResults/52ce176f-e5f1-48d4-98bb-5154ab29b05a?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"O-nW\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"f8a4\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14021e29-84cd-4efe-bf27-562066753da5" + "8baf9ce7-522e-46c1-b21b-0289e91a38c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -555,53 +606,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "bef86802-2ca8-44d1-a523-104772898916" + "9a163a54-86aa-4a00-9554-b893720a79cf" ], "x-ms-correlation-request-id": [ - "bef86802-2ca8-44d1-a523-104772898916" + "9a163a54-86aa-4a00-9554-b893720a79cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005857Z:bef86802-2ca8-44d1-a523-104772898916" + "WESTUS2:20210213T033908Z:9a163a54-86aa-4a00-9554-b893720a79cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:56 GMT" + "Sat, 13 Feb 2021 03:39:07 GMT" ], "Content-Length": [ - "2108" + "2217" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:23:23.4455861Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"instanceId\": \"28cb40a4-c88f-40ca-bacf-bbac92ea4a65\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:23:23.4455861Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"instanceId\": \"28cb40a4-c88f-40ca-bacf-bbac92ea4a65\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c0e2ff-5326-4853-834a-2ea8555503fe" + "9a2759f5-4585-420b-a4dd-5f15a135c764" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -612,13 +660,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/e34f7b1d-548a-41bd-8750-adec8a603e5c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e34f7b1d-548a-41bd-8750-adec8a603e5c?api-version=2021-01-15" ], "x-ms-request-id": [ - "fcd0d02d-58a0-4d5d-b3ec-3771663d945a" + "e34f7b1d-548a-41bd-8750-adec8a603e5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,16 +681,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "c3bde1df-0830-43e4-bc31-1f3ab3b36ccc" + "48e8e250-c49d-43cc-9bc2-892f6fb9f8e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005858Z:c3bde1df-0830-43e4-bc31-1f3ab3b36ccc" + "WESTUS2:20210213T033911Z:48e8e250-c49d-43cc-9bc2-892f6fb9f8e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:58:57 GMT" + "Sat, 13 Feb 2021 03:39:10 GMT" ], "Content-Length": [ "21" @@ -655,16 +703,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mY2QwZDAyZC01OGEwLTRkNWQtYjNlYy0zNzcxNjYzZDk0NWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e34f7b1d-548a-41bd-8750-adec8a603e5c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9lMzRmN2IxZC01NDhhLTQxYmQtODc1MC1hZGVjOGE2MDNlNWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9a2759f5-4585-420b-a4dd-5f15a135c764" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -684,47 +735,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "3a69ea0d-9f4a-4369-9a5f-84c8c54dcd23" + "65ed5ae7-1cf1-40ff-a656-6e8cdc7e5542" ], "x-ms-correlation-request-id": [ - "3a69ea0d-9f4a-4369-9a5f-84c8c54dcd23" + "65ed5ae7-1cf1-40ff-a656-6e8cdc7e5542" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005928Z:3a69ea0d-9f4a-4369-9a5f-84c8c54dcd23" + "WESTUS2:20210213T033941Z:65ed5ae7-1cf1-40ff-a656-6e8cdc7e5542" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:59:28 GMT" + "Sat, 13 Feb 2021 03:39:41 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9mY2QwZDAyZC01OGEwLTRkNWQtYjNlYy0zNzcxNjYzZDk0NWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/e34f7b1d-548a-41bd-8750-adec8a603e5c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9lMzRmN2IxZC01NDhhLTQxYmQtODc1MC1hZGVjOGE2MDNlNWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9a2759f5-4585-420b-a4dd-5f15a135c764" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -744,53 +795,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "95cd126a-7fee-422f-94e4-bd1e8f42843d" + "bd05960f-d419-46a1-bf82-481f0d68057c" ], "x-ms-correlation-request-id": [ - "95cd126a-7fee-422f-94e4-bd1e8f42843d" + "bd05960f-d419-46a1-bf82-481f0d68057c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005929Z:95cd126a-7fee-422f-94e4-bd1e8f42843d" + "WESTUS2:20210213T033943Z:bd05960f-d419-46a1-bf82-481f0d68057c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:59:29 GMT" + "Sat, 13 Feb 2021 03:39:42 GMT" ], "Content-Length": [ "439" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput/operationResults/fcd0d02d-58a0-4d5d-b3ec-3771663d945a?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"O-nW\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"f8a4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "600ca3fb-ea64-4740-852c-2e1d96026fa5" + "0f34a9aa-9a7c-4921-ae60-4ffc8f35865a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -810,47 +858,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "082ea1e7-d4a4-46b2-9e33-5b944bce513a" + "af7fbcf6-19b5-477d-99cd-583da98d0b7e" ], "x-ms-correlation-request-id": [ - "082ea1e7-d4a4-46b2-9e33-5b944bce513a" + "af7fbcf6-19b5-477d-99cd-583da98d0b7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005930Z:082ea1e7-d4a4-46b2-9e33-5b944bce513a" + "WESTUS2:20210213T033945Z:af7fbcf6-19b5-477d-99cd-583da98d0b7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:59:29 GMT" + "Sat, 13 Feb 2021 03:39:44 GMT" ], "Content-Length": [ - "1799" + "1805" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01" ] }, - "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: 600ca3fb-ea64-4740-852c-2e1d96026fa5, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132432508130716291s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:59:29.9817104Z, RequestEndTime: 2020-09-03T00:59:29.9817104Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:59:29.9817104Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132432508130716291s, LSN: 818, GlobalCommittedLsn: 818, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#818, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:59:29.9817104Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132435608863720406s, LSN: 818, GlobalCommittedLsn: 818, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#818, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName3/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 0f34a9aa-9a7c-4921-ae60-4ffc8f35865a, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:39:44.9449449Z, RequestEndTime: 2021-02-13T03:39:44.9449449Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:39:44.9449449Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2141, GlobalCommittedLsn: 2141, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2141, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:39:44.9449449Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132570095928778117s, LSN: 2141, GlobalCommittedLsn: 2141, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2141, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName3/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0f34a9aa-9a7c-4921-ae60-4ffc8f35865a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -870,53 +918,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "bd35eae1-b06e-42f2-b22a-3ff8d0e2102c" + "fb6a385e-6d08-48c9-b15a-1703b87d5d0f" ], "x-ms-correlation-request-id": [ - "bd35eae1-b06e-42f2-b22a-3ff8d0e2102c" + "fb6a385e-6d08-48c9-b15a-1703b87d5d0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010002Z:bd35eae1-b06e-42f2-b22a-3ff8d0e2102c" + "WESTUS2:20210213T034020Z:fb6a385e-6d08-48c9-b15a-1703b87d5d0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:01 GMT" + "Sat, 13 Feb 2021 03:40:20 GMT" ], "Content-Length": [ "626" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"5hZVAOxfCCo=\",\r\n \"_etag\": \"\\\"00007305-0000-3200-0000-5f503ff80000\\\"\",\r\n \"_ts\": 1599094776,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"SnQVAJr-Nfg=\",\r\n \"_etag\": \"\\\"0000dd0b-0000-3200-0000-60274a110000\\\"\",\r\n \"_ts\": 1613187601,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "ff5a75fe-8f56-41a1-a65e-b2afb9f8038c" + "0f34a9aa-9a7c-4921-ae60-4ffc8f35865a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,13 +978,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/e6cd0e85-4b03-4b1a-995c-4bc072648994?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/7a57fbd1-3cd0-4617-bcc8-68e03edac5ee?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e6cd0e85-4b03-4b1a-995c-4bc072648994?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7a57fbd1-3cd0-4617-bcc8-68e03edac5ee?api-version=2021-01-15" ], "x-ms-request-id": [ - "e6cd0e85-4b03-4b1a-995c-4bc072648994" + "7a57fbd1-3cd0-4617-bcc8-68e03edac5ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,41 +999,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "3596e9a8-d83c-4e47-a398-634bd12b4b5f" + "adede95f-4f2e-4054-8f58-8be812c93efe" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005930Z:3596e9a8-d83c-4e47-a398-634bd12b4b5f" + "WESTUS2:20210213T033948Z:adede95f-4f2e-4054-8f58-8be812c93efe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:59:30 GMT" + "Sat, 13 Feb 2021 03:39:47 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e6cd0e85-4b03-4b1a-995c-4bc072648994?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9lNmNkMGU4NS00YjAzLTRiMWEtOTk1Yy00YmMwNzI2NDg5OTQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7a57fbd1-3cd0-4617-bcc8-68e03edac5ee?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83YTU3ZmJkMS0zY2QwLTQ2MTctYmNjOC02OGUwM2VkYWM1ZWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0f34a9aa-9a7c-4921-ae60-4ffc8f35865a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1008,53 +1053,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "796759c1-cbd2-4c4f-9add-3220adb14d09" + "a7cd43bd-1a7b-4616-a122-d8e3617429ca" ], "x-ms-correlation-request-id": [ - "796759c1-cbd2-4c4f-9add-3220adb14d09" + "a7cd43bd-1a7b-4616-a122-d8e3617429ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010001Z:796759c1-cbd2-4c4f-9add-3220adb14d09" + "WESTUS2:20210213T034019Z:a7cd43bd-1a7b-4616-a122-d8e3617429ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:00 GMT" + "Sat, 13 Feb 2021 03:40:18 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e6cd0e85-4b03-4b1a-995c-4bc072648994?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2f6d8a2-349b-4e1f-8b07-b8eb9b6a4e53" + "f10b1710-e77b-4e5e-b739-c118f714c97f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1074,53 +1116,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "d92ac157-e40f-4a41-98c1-1cc5ee2303d7" + "12d7c0fd-35d3-47ad-aeec-3415c2c5bfa0" ], "x-ms-correlation-request-id": [ - "d92ac157-e40f-4a41-98c1-1cc5ee2303d7" + "12d7c0fd-35d3-47ad-aeec-3415c2c5bfa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010003Z:d92ac157-e40f-4a41-98c1-1cc5ee2303d7" + "WESTUS2:20210213T034022Z:12d7c0fd-35d3-47ad-aeec-3415c2c5bfa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:03 GMT" + "Sat, 13 Feb 2021 03:40:22 GMT" ], "Content-Length": [ "410" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"RuaD\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"FG2D\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3157d4f-10c6-41cf-a61a-8aee9d07d2a0" + "15f61886-9ffc-490f-88d2-a38c37d75430" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1131,13 +1170,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/030f34aa-bbc6-454f-ba27-feac6a7dabe5?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/030f34aa-bbc6-454f-ba27-feac6a7dabe5?api-version=2021-01-15" ], "x-ms-request-id": [ - "aaf31531-3599-4da8-8d63-c76576363ce8" + "030f34aa-bbc6-454f-ba27-feac6a7dabe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,16 +1191,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "6cabe7cd-91dd-49dc-a64c-2ed4853624e4" + "9e0ddf31-7704-458b-8249-3b059c83d81a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010004Z:6cabe7cd-91dd-49dc-a64c-2ed4853624e4" + "WESTUS2:20210213T034025Z:9e0ddf31-7704-458b-8249-3b059c83d81a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:04 GMT" + "Sat, 13 Feb 2021 03:40:25 GMT" ], "Content-Length": [ "21" @@ -1174,16 +1213,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hYWYzMTUzMS0zNTk5LTRkYTgtOGQ2My1jNzY1NzYzNjNjZTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/030f34aa-bbc6-454f-ba27-feac6a7dabe5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wMzBmMzRhYS1iYmM2LTQ1NGYtYmEyNy1mZWFjNmE3ZGFiZTU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "15f61886-9ffc-490f-88d2-a38c37d75430" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1203,47 +1245,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "893e472a-7818-474b-89fd-11ef712bb631" + "6a879b10-9e2b-4d39-8347-57e966a4440f" ], "x-ms-correlation-request-id": [ - "893e472a-7818-474b-89fd-11ef712bb631" + "6a879b10-9e2b-4d39-8347-57e966a4440f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010034Z:893e472a-7818-474b-89fd-11ef712bb631" + "WESTUS2:20210213T034056Z:6a879b10-9e2b-4d39-8347-57e966a4440f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:34 GMT" + "Sat, 13 Feb 2021 03:40:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvYWFmMzE1MzEtMzU5OS00ZGE4LThkNjMtYzc2NTc2MzYzY2U4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/030f34aa-bbc6-454f-ba27-feac6a7dabe5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvQXV0b3NjYWxlL29wZXJhdGlvblJlc3VsdHMvMDMwZjM0YWEtYmJjNi00NTRmLWJhMjctZmVhYzZhN2RhYmU1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "15f61886-9ffc-490f-88d2-a38c37d75430" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1263,53 +1305,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "d424c273-47df-402b-8d9d-7a4c558b9415" + "3f8a6239-3a18-4622-99ed-65bd0b872a33" ], "x-ms-correlation-request-id": [ - "d424c273-47df-402b-8d9d-7a4c558b9415" + "3f8a6239-3a18-4622-99ed-65bd0b872a33" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010035Z:d424c273-47df-402b-8d9d-7a4c558b9415" + "WESTUS2:20210213T034058Z:3f8a6239-3a18-4622-99ed-65bd0b872a33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:35 GMT" + "Sat, 13 Feb 2021 03:40:57 GMT" ], "Content-Length": [ "492" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale/operationResults/aaf31531-3599-4da8-8d63-c76576363ce8?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"RuaD\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"FG2D\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e492d1a0-b5c9-47ef-99b8-1da89fd51561" + "87442693-c93d-4e4c-8430-98ec14cb9932" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1320,13 +1359,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/a538a73d-ec4f-4ce5-bdd2-30e02ca79fd2?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a538a73d-ec4f-4ce5-bdd2-30e02ca79fd2?api-version=2021-01-15" ], "x-ms-request-id": [ - "9082c57b-f02d-4a75-b57d-e8a34191f370" + "a538a73d-ec4f-4ce5-bdd2-30e02ca79fd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,16 +1380,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "6ff40553-cfb0-42d5-b121-b85d45eb04e5" + "02b8791e-d3d3-4b93-b5b1-44097514a475" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010036Z:6ff40553-cfb0-42d5-b121-b85d45eb04e5" + "WESTUS2:20210213T034101Z:02b8791e-d3d3-4b93-b5b1-44097514a475" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:00:36 GMT" + "Sat, 13 Feb 2021 03:41:00 GMT" ], "Content-Length": [ "21" @@ -1363,16 +1402,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy85MDgyYzU3Yi1mMDJkLTRhNzUtYjU3ZC1lOGEzNDE5MWYzNzA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/a538a73d-ec4f-4ce5-bdd2-30e02ca79fd2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hNTM4YTczZC1lYzRmLTRjZTUtYmRkMi0zMGUwMmNhNzlmZDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87442693-c93d-4e4c-8430-98ec14cb9932" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1392,47 +1434,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-request-id": [ - "ea512815-b13a-4aa7-8f01-d3c2ba08cb62" + "c972ab4b-377e-4bd9-ba18-629cfc026d0e" ], "x-ms-correlation-request-id": [ - "ea512815-b13a-4aa7-8f01-d3c2ba08cb62" + "c972ab4b-377e-4bd9-ba18-629cfc026d0e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010107Z:ea512815-b13a-4aa7-8f01-d3c2ba08cb62" + "WESTUS2:20210213T034131Z:c972ab4b-377e-4bd9-ba18-629cfc026d0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:06 GMT" + "Sat, 13 Feb 2021 03:41:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzLzkwODJjNTdiLWYwMmQtNGE3NS1iNTdkLWU4YTM0MTkxZjM3MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/a538a73d-ec4f-4ce5-bdd2-30e02ca79fd2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQvbWlncmF0ZVRvTWFudWFsVGhyb3VnaHB1dC9vcGVyYXRpb25SZXN1bHRzL2E1MzhhNzNkLWVjNGYtNGNlNS1iZGQyLTMwZTAyY2E3OWZkMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87442693-c93d-4e4c-8430-98ec14cb9932" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1452,53 +1494,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-request-id": [ - "cee65a66-5b99-46e6-ac46-e587b9bfe0e4" + "c7d0b416-ecdf-4a5e-b6b7-df90cadc6477" ], "x-ms-correlation-request-id": [ - "cee65a66-5b99-46e6-ac46-e587b9bfe0e4" + "c7d0b416-ecdf-4a5e-b6b7-df90cadc6477" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010108Z:cee65a66-5b99-46e6-ac46-e587b9bfe0e4" + "WESTUS2:20210213T034133Z:c7d0b416-ecdf-4a5e-b6b7-df90cadc6477" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:07 GMT" + "Sat, 13 Feb 2021 03:41:32 GMT" ], "Content-Length": [ "463" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput/operationResults/9082c57b-f02d-4a75-b57d-e8a34191f370?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"RuaD\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"FG2D\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09a25c8b-0b2e-4277-85d8-0eb76ff3c63f" + "15ad23ed-2a99-4c99-bb62-b277d680a7fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1509,13 +1548,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/346f2e9f-d8c8-423b-a42b-e851c39940b9?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/346f2e9f-d8c8-423b-a42b-e851c39940b9?api-version=2021-01-15" ], "x-ms-request-id": [ - "e981f070-37b2-44a1-91d4-761e38ebc605" + "346f2e9f-d8c8-423b-a42b-e851c39940b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,47 +1569,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "c3682c55-3b17-46f8-b99b-fcc3bbe93c6d" + "c48f66d3-6c56-46d0-a136-c926e68d30d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010108Z:c3682c55-3b17-46f8-b99b-fcc3bbe93c6d" + "WESTUS2:20210213T034136Z:c48f66d3-6c56-46d0-a136-c926e68d30d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:07 GMT" + "Sat, 13 Feb 2021 03:41:35 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55ff4e87-4e6f-4801-978b-a88826205270" + "8265b317-2664-4525-8b60-bc9d8af40066" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1581,13 +1617,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/f244b9fc-6952-4886-9e42-41552193e698?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f244b9fc-6952-4886-9e42-41552193e698?api-version=2021-01-15" ], "x-ms-request-id": [ - "2fb3e731-0735-4c57-a9cf-af0acd283258" + "f244b9fc-6952-4886-9e42-41552193e698" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,41 +1638,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "5abcbdc5-3314-48aa-af64-50c4e37bc059" + "4c08f0fe-c949-4e27-9a2e-dce713c4273b" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010216Z:5abcbdc5-3314-48aa-af64-50c4e37bc059" + "WESTUS2:20210213T034249Z:4c08f0fe-c949-4e27-9a2e-dce713c4273b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:15 GMT" + "Sat, 13 Feb 2021 03:42:49 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9lOTgxZjA3MC0zN2IyLTQ0YTEtOTFkNC03NjFlMzhlYmM2MDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/346f2e9f-d8c8-423b-a42b-e851c39940b9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8zNDZmMmU5Zi1kOGM4LTQyM2ItYTQyYi1lODUxYzM5OTQwYjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "15ad23ed-2a99-4c99-bb62-b277d680a7fe" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1656,47 +1692,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-request-id": [ - "cb023b59-8704-4b89-85af-4dbebd917bda" + "4d771579-e82f-4868-b4b2-6a4174870138" ], "x-ms-correlation-request-id": [ - "cb023b59-8704-4b89-85af-4dbebd917bda" + "4d771579-e82f-4868-b4b2-6a4174870138" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010138Z:cb023b59-8704-4b89-85af-4dbebd917bda" + "WESTUS2:20210213T034207Z:4d771579-e82f-4868-b4b2-6a4174870138" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:38 GMT" + "Sat, 13 Feb 2021 03:42:06 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy9lOTgxZjA3MC0zN2IyLTQ0YTEtOTFkNC03NjFlMzhlYmM2MDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/346f2e9f-d8c8-423b-a42b-e851c39940b9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy8zNDZmMmU5Zi1kOGM4LTQyM2ItYTQyYi1lODUxYzM5OTQwYjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "15ad23ed-2a99-4c99-bb62-b277d680a7fe" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1716,50 +1752,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-request-id": [ - "77a88e9b-f17d-46c7-9371-64c9fb3691ee" + "e1460f29-d475-471b-8bf4-641c40c7c0a7" ], "x-ms-correlation-request-id": [ - "77a88e9b-f17d-46c7-9371-64c9fb3691ee" + "e1460f29-d475-471b-8bf4-641c40c7c0a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010139Z:77a88e9b-f17d-46c7-9371-64c9fb3691ee" + "WESTUS2:20210213T034208Z:e1460f29-d475-471b-8bf4-641c40c7c0a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:38 GMT" + "Sat, 13 Feb 2021 03:42:08 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/e981f070-37b2-44a1-91d4-761e38ebc605?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa909222-69ec-47e8-bccc-6c3f5fe50b13" + "d23a88ca-dd6f-4fe8-8b15-f5135f8163ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1770,13 +1803,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/f56b2efd-39d4-4822-ab6e-6c74ab9ec850?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f56b2efd-39d4-4822-ab6e-6c74ab9ec850?api-version=2021-01-15" ], "x-ms-request-id": [ - "52b40158-5839-4dbd-92ec-56dc467ea7b3" + "f56b2efd-39d4-4822-ab6e-6c74ab9ec850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,47 +1824,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "85b4ed88-3451-456f-9127-6cff054d5fa6" + "42617fa9-d1f6-461f-9286-99c25eb3a854" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010139Z:85b4ed88-3451-456f-9127-6cff054d5fa6" + "WESTUS2:20210213T034213Z:42617fa9-d1f6-461f-9286-99c25eb3a854" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:01:39 GMT" + "Sat, 13 Feb 2021 03:42:13 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "735c8dc2-5a7a-403d-b350-eb09a8bb606c" + "51edbfc5-48de-49a9-8131-feb7f92c4385" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1842,13 +1872,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/62c88749-0d09-41ed-b809-0a8261cee247?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/62c88749-0d09-41ed-b809-0a8261cee247?api-version=2021-01-15" ], "x-ms-request-id": [ - "8ee134dd-9fcf-4656-a781-3af24bf9485e" + "62c88749-0d09-41ed-b809-0a8261cee247" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,41 +1893,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "77398440-34a1-46b4-a3c0-c38b61065b99" + "48ca7c5d-e7eb-4c6f-8e18-35516d1f74cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010246Z:77398440-34a1-46b4-a3c0-c38b61065b99" + "WESTUS2:20210213T034326Z:48ca7c5d-e7eb-4c6f-8e18-35516d1f74cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:46 GMT" + "Sat, 13 Feb 2021 03:43:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy81MmI0MDE1OC01ODM5LTRkYmQtOTJlYy01NmRjNDY3ZWE3YjM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f56b2efd-39d4-4822-ab6e-6c74ab9ec850?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mNTZiMmVmZC0zOWQ0LTQ4MjItYWI2ZS02Yzc0YWI5ZWM4NTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d23a88ca-dd6f-4fe8-8b15-f5135f8163ef" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1920,44 +1950,44 @@ "11999" ], "x-ms-request-id": [ - "ac7c74a5-af7d-457e-81aa-fc5ba0a76975" + "7b296b36-84c5-41fb-b0f6-7f202a7556df" ], "x-ms-correlation-request-id": [ - "ac7c74a5-af7d-457e-81aa-fc5ba0a76975" + "7b296b36-84c5-41fb-b0f6-7f202a7556df" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010210Z:ac7c74a5-af7d-457e-81aa-fc5ba0a76975" + "WESTUS2:20210213T034244Z:7b296b36-84c5-41fb-b0f6-7f202a7556df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:10 GMT" + "Sat, 13 Feb 2021 03:42:43 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvNTJiNDAxNTgtNTgzOS00ZGJkLTkyZWMtNTZkYzQ2N2VhN2IzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/f56b2efd-39d4-4822-ab6e-6c74ab9ec850?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvZjU2YjJlZmQtMzlkNC00ODIyLWFiNmUtNmM3NGFiOWVjODUwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d23a88ca-dd6f-4fe8-8b15-f5135f8163ef" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1980,41 +2010,41 @@ "11998" ], "x-ms-request-id": [ - "26082963-8fb1-485f-868d-1086f90e45b6" + "a6d9abbf-77ec-4be7-82d0-be58a9d8e0fe" ], "x-ms-correlation-request-id": [ - "26082963-8fb1-485f-868d-1086f90e45b6" + "a6d9abbf-77ec-4be7-82d0-be58a9d8e0fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010210Z:26082963-8fb1-485f-868d-1086f90e45b6" + "WESTUS2:20210213T034244Z:a6d9abbf-77ec-4be7-82d0-be58a9d8e0fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:10 GMT" + "Sat, 13 Feb 2021 03:42:43 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/52b40158-5839-4dbd-92ec-56dc467ea7b3?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8yZmIzZTczMS0wNzM1LTRjNTctYTljZi1hZjBhY2QyODMyNTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f244b9fc-6952-4886-9e42-41552193e698?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mMjQ0YjlmYy02OTUyLTQ4ODYtOWU0Mi00MTU1MjE5M2U2OTg/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8265b317-2664-4525-8b60-bc9d8af40066" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2037,44 +2067,44 @@ "11999" ], "x-ms-request-id": [ - "6595cde9-5fce-4332-9fd0-f19744afc2be" + "c57c4c48-a507-4e61-bda7-4ae48dcb606b" ], "x-ms-correlation-request-id": [ - "6595cde9-5fce-4332-9fd0-f19744afc2be" + "c57c4c48-a507-4e61-bda7-4ae48dcb606b" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010246Z:6595cde9-5fce-4332-9fd0-f19744afc2be" + "WESTUS2:20210213T034320Z:c57c4c48-a507-4e61-bda7-4ae48dcb606b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:45 GMT" + "Sat, 13 Feb 2021 03:43:19 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy8yZmIzZTczMS0wNzM1LTRjNTctYTljZi1hZjBhY2QyODMyNTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/f244b9fc-6952-4886-9e42-41552193e698?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL3RhYmxlcy90YWJsZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mMjQ0YjlmYy02OTUyLTQ4ODYtOWU0Mi00MTU1MjE5M2U2OTg/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8265b317-2664-4525-8b60-bc9d8af40066" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2097,41 +2127,41 @@ "11998" ], "x-ms-request-id": [ - "765d736c-bbbc-4d92-a8dc-860ce31fd605" + "1c1fba6a-8710-4d8c-854c-9e95f5079a14" ], "x-ms-correlation-request-id": [ - "765d736c-bbbc-4d92-a8dc-860ce31fd605" + "1c1fba6a-8710-4d8c-854c-9e95f5079a14" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010246Z:765d736c-bbbc-4d92-a8dc-860ce31fd605" + "WESTUS2:20210213T034320Z:1c1fba6a-8710-4d8c-854c-9e95f5079a14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:02:45 GMT" + "Sat, 13 Feb 2021 03:43:20 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/tables/tableName/operationResults/2fb3e731-0735-4c57-a9cf-af0acd283258?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84ZWUxMzRkZC05ZmNmLTQ2NTYtYTc4MS0zYWYyNGJmOTQ4NWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/62c88749-0d09-41ed-b809-0a8261cee247?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy82MmM4ODc0OS0wZDA5LTQxZWQtYjgwOS0wYTgyNjFjZWUyNDc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "51edbfc5-48de-49a9-8131-feb7f92c4385" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2154,44 +2184,44 @@ "11999" ], "x-ms-request-id": [ - "248ac432-11fb-496c-a992-288b7a60ee69" + "d5dd116a-6eef-4f64-948b-d5ad6dc44973" ], "x-ms-correlation-request-id": [ - "248ac432-11fb-496c-a992-288b7a60ee69" + "d5dd116a-6eef-4f64-948b-d5ad6dc44973" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010317Z:248ac432-11fb-496c-a992-288b7a60ee69" + "WESTUS2:20210213T034357Z:d5dd116a-6eef-4f64-948b-d5ad6dc44973" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:03:16 GMT" + "Sat, 13 Feb 2021 03:43:56 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvOGVlMTM0ZGQtOWZjZi00NjU2LWE3ODEtM2FmMjRiZjk0ODVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/62c88749-0d09-41ed-b809-0a8261cee247?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvNjJjODg3NDktMGQwOS00MWVkLWI4MDktMGE4MjYxY2VlMjQ3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "51edbfc5-48de-49a9-8131-feb7f92c4385" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2214,25 +2244,22 @@ "11998" ], "x-ms-request-id": [ - "1761c643-190a-4a0a-a4a6-4f6c4d140654" + "e3dc6c22-bbe0-48bb-8728-5bc9cbbcdd70" ], "x-ms-correlation-request-id": [ - "1761c643-190a-4a0a-a4a6-4f6c4d140654" + "e3dc6c22-bbe0-48bb-8728-5bc9cbbcdd70" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T010317Z:1761c643-190a-4a0a-a4a6-4f6c4d140654" + "WESTUS2:20210213T034358Z:e3dc6c22-bbe0-48bb-8728-5bc9cbbcdd70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 01:03:17 GMT" + "Sat, 13 Feb 2021 03:43:57 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName3/operationResults/8ee134dd-9fcf-4656-a781-3af24bf9485e?api-version=2020-04-01" ] }, "ResponseBody": "", 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 98c262ba6ae1..eff3d726ba9c 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3880753-218a-4fbf-8d1b-ec98ebb24cc6" + "4ee19369-b3b9-4761-86a4-6e314daa02f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "261f7103-8cec-4951-91b6-c5e6aaa5db8f" + "946047d8-3a2e-49c9-9011-5260b997e0f1" ], "x-ms-correlation-request-id": [ - "261f7103-8cec-4951-91b6-c5e6aaa5db8f" + "946047d8-3a2e-49c9-9011-5260b997e0f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192342Z:261f7103-8cec-4951-91b6-c5e6aaa5db8f" + "WESTUS2:20210213T034408Z:946047d8-3a2e-49c9-9011-5260b997e0f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:23:42 GMT" + "Sat, 13 Feb 2021 03:44:08 GMT" ], "Content-Length": [ - "1715" + "1784" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: b3880753-218a-4fbf-8d1b-ec98ebb24cc6, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:23:42.1997619Z, RequestEndTime: 2020-06-10T19:23:42.2097624Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:23:42.2097624Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361142763300370s, LSN: 643, GlobalCommittedLsn: 643, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#643, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:23:42.2097624Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 643, GlobalCommittedLsn: 643, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#643, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 4ee19369-b3b9-4761-86a4-6e314daa02f6, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:44:08.2211879Z, RequestEndTime: 2021-02-13T03:44:08.2211879Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:44:08.2211879Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2150, GlobalCommittedLsn: 2150, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2150, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:44:08.2211879Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2150, GlobalCommittedLsn: 2150, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2150, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4ee19369-b3b9-4761-86a4-6e314daa02f6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "f7dfa626-bc45-4d62-acfc-b48fa0eb8fa8" + "ba051346-df0b-4404-82e4-af2ffebff387" ], "x-ms-correlation-request-id": [ - "f7dfa626-bc45-4d62-acfc-b48fa0eb8fa8" + "ba051346-df0b-4404-82e4-af2ffebff387" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192414Z:f7dfa626-bc45-4d62-acfc-b48fa0eb8fa8" + "WESTUS2:20210213T034515Z:ba051346-df0b-4404-82e4-af2ffebff387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:14 GMT" + "Sat, 13 Feb 2021 03:45:15 GMT" ], "Content-Length": [ "410" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"Yb5uAA==\",\r\n \"_etag\": \"\\\"00003d00-0000-3200-0000-5ee133440000\\\"\",\r\n \"_ts\": 1591817028\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"+mshAA==\",\r\n \"_etag\": \"\\\"0000e70b-0000-3200-0000-60274b2a0000\\\"\",\r\n \"_ts\": 1613187882\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "1285cad5-4e00-404a-a7a6-2a5a5bc13925" + "4ee19369-b3b9-4761-86a4-6e314daa02f6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/605fcafb-802f-477b-84fd-447a8b2996d3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/f4a03c3c-6d45-4df0-8bda-b18c921d6e44?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/605fcafb-802f-477b-84fd-447a8b2996d3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f4a03c3c-6d45-4df0-8bda-b18c921d6e44?api-version=2021-01-15" ], "x-ms-request-id": [ - "605fcafb-802f-477b-84fd-447a8b2996d3" + "f4a03c3c-6d45-4df0-8bda-b18c921d6e44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "9afe9c63-0d5e-4959-a40b-c5b258d217c7" + "f7c074b7-fe8e-4f89-b9c1-40c87899f3c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192343Z:9afe9c63-0d5e-4959-a40b-c5b258d217c7" + "WESTUS2:20210213T034412Z:f7c074b7-fe8e-4f89-b9c1-40c87899f3c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:23:43 GMT" + "Sat, 13 Feb 2021 03:44:12 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/605fcafb-802f-477b-84fd-447a8b2996d3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy82MDVmY2FmYi04MDJmLTQ3N2ItODRmZC00NDdhOGIyOTk2ZDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f4a03c3c-6d45-4df0-8bda-b18c921d6e44?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mNGEwM2MzYy02ZDQ1LTRkZjAtOGJkYS1iMThjOTIxZDZlNDQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4ee19369-b3b9-4761-86a4-6e314daa02f6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -237,50 +234,107 @@ "11998" ], "x-ms-request-id": [ - "3236dcd9-6d29-48f3-a476-5d56474a8ea9" + "6b5cf67f-484f-4f41-8013-2118e27cb854" ], "x-ms-correlation-request-id": [ - "3236dcd9-6d29-48f3-a476-5d56474a8ea9" + "6b5cf67f-484f-4f41-8013-2118e27cb854" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192413Z:3236dcd9-6d29-48f3-a476-5d56474a8ea9" + "WESTUS2:20210213T034443Z:6b5cf67f-484f-4f41-8013-2118e27cb854" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:13 GMT" + "Sat, 13 Feb 2021 03:44:42 GMT" ], "Content-Length": [ - "22" + "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/uaenorth/operationsStatus/f4a03c3c-6d45-4df0-8bda-b18c921d6e44?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mNGEwM2MzYy02ZDQ1LTRkZjAtOGJkYS1iMThjOTIxZDZlNDQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ee19369-b3b9-4761-86a4-6e314daa02f6" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.11.0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "c82f6349-9981-43e0-be12-e2a95a92dc88" + ], + "x-ms-correlation-request-id": [ + "c82f6349-9981-43e0-be12-e2a95a92dc88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20210213T034513Z:c82f6349-9981-43e0-be12-e2a95a92dc88" + ], + "X-Content-Type-Options": [ + "nosniff" ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/605fcafb-802f-477b-84fd-447a8b2996d3?api-version=2020-04-01" + "Date": [ + "Sat, 13 Feb 2021 03:45:13 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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ace14134-8d98-4156-9719-3b7021317bdd" + "a355d78c-6828-4bfc-b2e3-d48258cbab7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,47 +354,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "eb9fd42a-3913-4e26-9049-66d05f6ab375" + "5a0c1819-e42e-4e5f-9e51-6b6275e750e0" ], "x-ms-correlation-request-id": [ - "eb9fd42a-3913-4e26-9049-66d05f6ab375" + "5a0c1819-e42e-4e5f-9e51-6b6275e750e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192416Z:eb9fd42a-3913-4e26-9049-66d05f6ab375" + "WESTUS2:20210213T034517Z:5a0c1819-e42e-4e5f-9e51-6b6275e750e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:15 GMT" + "Sat, 13 Feb 2021 03:45:16 GMT" ], "Content-Length": [ "386" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"gifn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"iHI+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "98401fca-2b39-47fa-843e-0c8f994340b0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -360,47 +414,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "52e36512-1684-4619-9a6a-ffebb1007601" + "18305eac-8c2c-4357-9ebf-a1186f9517ef" ], "x-ms-correlation-request-id": [ - "52e36512-1684-4619-9a6a-ffebb1007601" + "18305eac-8c2c-4357-9ebf-a1186f9517ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192449Z:52e36512-1684-4619-9a6a-ffebb1007601" + "WESTUS2:20210213T034553Z:18305eac-8c2c-4357-9ebf-a1186f9517ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:48 GMT" + "Sat, 13 Feb 2021 03:45:52 GMT" ], "Content-Length": [ "386" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"gifn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"iHI+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "32d90755-1aea-4e5a-a731-25736d583b6a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -420,47 +474,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "2d3d1d0c-ef43-4e1d-ba48-9fd8082aa807" + "f9dc5d61-504f-4e94-a982-96183d44fb2d" ], "x-ms-correlation-request-id": [ - "2d3d1d0c-ef43-4e1d-ba48-9fd8082aa807" + "f9dc5d61-504f-4e94-a982-96183d44fb2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192524Z:2d3d1d0c-ef43-4e1d-ba48-9fd8082aa807" + "WESTUS2:20210213T034630Z:f9dc5d61-504f-4e94-a982-96183d44fb2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:24 GMT" + "Sat, 13 Feb 2021 03:46:29 GMT" ], "Content-Length": [ "386" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"gifn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"iHI+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb1f389f-a7c7-42ac-94e1-bef5eac851d8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -480,53 +534,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "0aab784b-87ee-4b0b-bd17-119900851e0f" + "d523a4e2-75e7-4c53-9478-a81f90dc9585" ], "x-ms-correlation-request-id": [ - "0aab784b-87ee-4b0b-bd17-119900851e0f" + "d523a4e2-75e7-4c53-9478-a81f90dc9585" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192559Z:0aab784b-87ee-4b0b-bd17-119900851e0f" + "WESTUS2:20210213T034705Z:d523a4e2-75e7-4c53-9478-a81f90dc9585" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:58 GMT" + "Sat, 13 Feb 2021 03:47:05 GMT" ], "Content-Length": [ "385" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"gifn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings\",\r\n \"name\": \"iHI+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "1ce5a705-644f-471a-9bcd-f5643ec281cb" + "98401fca-2b39-47fa-843e-0c8f994340b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +594,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/8a7ceb41-452d-4f90-b1df-c6d80c2d457d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/139f79c7-3929-444a-b9c0-3a8dd63a551d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a7ceb41-452d-4f90-b1df-c6d80c2d457d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/139f79c7-3929-444a-b9c0-3a8dd63a551d?api-version=2021-01-15" ], "x-ms-request-id": [ - "8a7ceb41-452d-4f90-b1df-c6d80c2d457d" + "139f79c7-3929-444a-b9c0-3a8dd63a551d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +615,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "30f0f987-62bb-4ba9-946d-3afd202d7092" + "0dd9074f-9f79-4d72-b1be-8c4f3357f5aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192417Z:30f0f987-62bb-4ba9-946d-3afd202d7092" + "WESTUS2:20210213T034520Z:0dd9074f-9f79-4d72-b1be-8c4f3357f5aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:16 GMT" + "Sat, 13 Feb 2021 03:45:20 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "2aac7c41-d5ab-4a12-bb37-d80de39f39a9" + "32d90755-1aea-4e5a-a731-25736d583b6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +669,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/81ea5d5f-68d3-4b93-989a-6a83854e8434?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/6a0fa6c5-a017-42d4-b102-5016993a6bb7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/81ea5d5f-68d3-4b93-989a-6a83854e8434?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6a0fa6c5-a017-42d4-b102-5016993a6bb7?api-version=2021-01-15" ], "x-ms-request-id": [ - "81ea5d5f-68d3-4b93-989a-6a83854e8434" + "6a0fa6c5-a017-42d4-b102-5016993a6bb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +690,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "2febbcce-535d-4bc4-ab8c-13d17eacd9e3" + "64edcee5-e11b-49a4-8cef-76a750788797" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192452Z:2febbcce-535d-4bc4-ab8c-13d17eacd9e3" + "WESTUS2:20210213T034557Z:64edcee5-e11b-49a4-8cef-76a750788797" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:51 GMT" + "Sat, 13 Feb 2021 03:45:57 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "4e1a4273-3dce-4a77-a6ec-9ad309aa8a6c" + "fb1f389f-a7c7-42ac-94e1-bef5eac851d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +744,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/457d9adc-589a-4107-a934-e3db623065a1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default/operationResults/0cd63877-0087-4b32-9d97-a31808a113fa?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/457d9adc-589a-4107-a934-e3db623065a1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0cd63877-0087-4b32-9d97-a31808a113fa?api-version=2021-01-15" ], "x-ms-request-id": [ - "457d9adc-589a-4107-a934-e3db623065a1" + "0cd63877-0087-4b32-9d97-a31808a113fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +765,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "fd559488-5346-44c9-ae91-22eee85e7189" + "e0709855-ffb7-4511-8924-06031878ba21" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192526Z:fd559488-5346-44c9-ae91-22eee85e7189" + "WESTUS2:20210213T034633Z:e0709855-ffb7-4511-8924-06031878ba21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:26 GMT" + "Sat, 13 Feb 2021 03:46:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a7ceb41-452d-4f90-b1df-c6d80c2d457d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84YTdjZWI0MS00NTJkLTRmOTAtYjFkZi1jNmQ4MGMyZDQ1N2Q/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/139f79c7-3929-444a-b9c0-3a8dd63a551d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8xMzlmNzljNy0zOTI5LTQ0NGEtYjljMC0zYThkZDYzYTU1MWQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "98401fca-2b39-47fa-843e-0c8f994340b0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -774,53 +819,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "da0df0ec-653d-4456-8a89-b37ae250e3c6" + "4eeb8f03-7e40-4469-bcd2-9c8ea78064d2" ], "x-ms-correlation-request-id": [ - "da0df0ec-653d-4456-8a89-b37ae250e3c6" + "4eeb8f03-7e40-4469-bcd2-9c8ea78064d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192448Z:da0df0ec-653d-4456-8a89-b37ae250e3c6" + "WESTUS2:20210213T034551Z:4eeb8f03-7e40-4469-bcd2-9c8ea78064d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:47 GMT" + "Sat, 13 Feb 2021 03:45:50 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/8a7ceb41-452d-4f90-b1df-c6d80c2d457d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6138de43-cf22-4419-8f8f-aca14144b2e3" + "36f63817-ccfe-41ae-9eb0-5dd7a7d18571" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -840,47 +882,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "06804758-cdf2-439c-8d9a-bb6a11d58422" + "613f0df7-e8dd-4ef0-be82-4468fe28ed17" ], "x-ms-correlation-request-id": [ - "06804758-cdf2-439c-8d9a-bb6a11d58422" + "613f0df7-e8dd-4ef0-be82-4468fe28ed17" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192449Z:06804758-cdf2-439c-8d9a-bb6a11d58422" + "WESTUS2:20210213T034554Z:613f0df7-e8dd-4ef0-be82-4468fe28ed17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:24:48 GMT" + "Sat, 13 Feb 2021 03:45:53 GMT" ], "Content-Length": [ - "1848" + "2217" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725\",\r\n \"name\": \"db2725\",\r\n \"location\": \"UAE North\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Cassandra\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:23:23.4455861Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2725.documents.azure.com:443/\",\r\n \"cassandraEndpoint\": \"https://db2725.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 \"instanceId\": \"28cb40a4-c88f-40ca-bacf-bbac92ea4a65\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\r\n \"documentEndpoint\": \"https://db2725-uaenorth.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\": \"db2725-uaenorth\",\r\n \"locationName\": \"UAE North\",\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/uaenorth/operationsStatus/81ea5d5f-68d3-4b93-989a-6a83854e8434?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy84MWVhNWQ1Zi02OGQzLTRiOTMtOTg5YS02YTgzODU0ZTg0MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6a0fa6c5-a017-42d4-b102-5016993a6bb7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy82YTBmYTZjNS1hMDE3LTQyZDQtYjEwMi01MDE2OTkzYTZiYjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "32d90755-1aea-4e5a-a731-25736d583b6a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -900,47 +942,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "f8af5d6c-36f2-480f-8696-51fa9aea48e5" + "71e95d51-5a26-4812-ba64-fd570bb19c5e" ], "x-ms-correlation-request-id": [ - "f8af5d6c-36f2-480f-8696-51fa9aea48e5" + "71e95d51-5a26-4812-ba64-fd570bb19c5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192522Z:f8af5d6c-36f2-480f-8696-51fa9aea48e5" + "WESTUS2:20210213T034628Z:71e95d51-5a26-4812-ba64-fd570bb19c5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:22 GMT" + "Sat, 13 Feb 2021 03:46:28 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/81ea5d5f-68d3-4b93-989a-6a83854e8434?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/457d9adc-589a-4107-a934-e3db623065a1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy80NTdkOWFkYy01ODlhLTQxMDctYTkzNC1lM2RiNjIzMDY1YTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0cd63877-0087-4b32-9d97-a31808a113fa?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wY2Q2Mzg3Ny0wMDg3LTRiMzItOWQ5Ny1hMzE4MDhhMTEzZmE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb1f389f-a7c7-42ac-94e1-bef5eac851d8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -960,53 +1002,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "8bf83d8b-7e0b-4585-bff2-d6ca3ac2cc21" + "265afcbd-8fb3-403f-aec4-8fe355824bf0" ], "x-ms-correlation-request-id": [ - "8bf83d8b-7e0b-4585-bff2-d6ca3ac2cc21" + "265afcbd-8fb3-403f-aec4-8fe355824bf0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192557Z:8bf83d8b-7e0b-4585-bff2-d6ca3ac2cc21" + "WESTUS2:20210213T034704Z:265afcbd-8fb3-403f-aec4-8fe355824bf0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:57 GMT" + "Sat, 13 Feb 2021 03:47:03 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/457d9adc-589a-4107-a934-e3db623065a1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0978fa-276d-446e-b806-1cf57071646a" + "54c1a7b1-edb2-4438-9fff-83601d3473ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1026,47 +1065,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "624c7774-b953-4ed9-9112-3c426f6a69ed" + "3708d743-ac59-4e88-9b79-7e708b20e663" ], "x-ms-correlation-request-id": [ - "624c7774-b953-4ed9-9112-3c426f6a69ed" + "3708d743-ac59-4e88-9b79-7e708b20e663" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192559Z:624c7774-b953-4ed9-9112-3c426f6a69ed" + "WESTUS2:20210213T034707Z:3708d743-ac59-4e88-9b79-7e708b20e663" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:59 GMT" + "Sat, 13 Feb 2021 03:47:06 GMT" ], "Content-Length": [ - "1735" + "1804" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 9c0978fa-276d-446e-b806-1cf57071646a, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:25:59.3504037Z, RequestEndTime: 2020-06-10T19:25:59.3603792Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:25:59.3603792Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132361150308342097s, LSN: 647, GlobalCommittedLsn: 647, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#647, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:25:59.3603792Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132352819324947641s, LSN: 647, GlobalCommittedLsn: 647, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#647, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 54c1a7b1-edb2-4438-9fff-83601d3473ba, Request URI: /apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:47:07.4001341Z, RequestEndTime: 2021-02-13T03:47:07.4001341Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:47:07.4001341Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132495822202144058s, LSN: 2154, GlobalCommittedLsn: 2154, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2154, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:47:07.4001341Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/82a229d6-9887-497e-b66c-b5aa032560fc/services/92ea34c3-2ec4-4eba-8c75-7d4809c4819c/partitions/46e581ea-5d95-4ebd-854b-03c93d910396/replicas/132498387517569170s, LSN: 2154, GlobalCommittedLsn: 2154, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2154, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/KeyspaceName/colls/tableName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "54c1a7b1-edb2-4438-9fff-83601d3473ba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1086,53 +1125,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "88de486b-ab33-4dfc-acb5-70e745a9167e" + "11b25af5-3ceb-47a0-8a41-d8722837a467" ], "x-ms-correlation-request-id": [ - "88de486b-ab33-4dfc-acb5-70e745a9167e" + "11b25af5-3ceb-47a0-8a41-d8722837a467" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192631Z:88de486b-ab33-4dfc-acb5-70e745a9167e" + "WESTUS2:20210213T034743Z:11b25af5-3ceb-47a0-8a41-d8722837a467" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:26:31 GMT" + "Sat, 13 Feb 2021 03:47:42 GMT" ], "Content-Length": [ "625" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"Yb5uAIjzYEk=\",\r\n \"_etag\": \"\\\"00004700-0000-3200-0000-5ee133cd0000\\\"\",\r\n \"_ts\": 1591817165,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/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\": \"+mshAOJY5GY=\",\r\n \"_etag\": \"\\\"0000f10b-0000-3200-0000-60274bd10000\\\"\",\r\n \"_ts\": 1613188049,\r\n \"defaultTtl\": -1,\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "1f06a595-f1ee-4dcf-9ffc-852be8ec0813" + "54c1a7b1-edb2-4438-9fff-83601d3473ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1185,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/d5e31197-99b6-4cc1-9161-063b0a2f5ccf?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/fafad2d9-9729-4649-b630-d3c21e7ab72b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d5e31197-99b6-4cc1-9161-063b0a2f5ccf?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fafad2d9-9729-4649-b630-d3c21e7ab72b?api-version=2021-01-15" ], "x-ms-request-id": [ - "d5e31197-99b6-4cc1-9161-063b0a2f5ccf" + "fafad2d9-9729-4649-b630-d3c21e7ab72b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,41 +1206,41 @@ "1195" ], "x-ms-correlation-request-id": [ - "511a07e0-e273-47ac-bfbc-106f80adfa94" + "bedee5d5-53e5-44f2-88cc-cb5e38b2dc10" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192600Z:511a07e0-e273-47ac-bfbc-106f80adfa94" + "WESTUS2:20210213T034711Z:bedee5d5-53e5-44f2-88cc-cb5e38b2dc10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:25:59 GMT" + "Sat, 13 Feb 2021 03:47:10 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d5e31197-99b6-4cc1-9161-063b0a2f5ccf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9kNWUzMTE5Ny05OWI2LTRjYzEtOTE2MS0wNjNiMGEyZjVjY2Y/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fafad2d9-9729-4649-b630-d3c21e7ab72b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mYWZhZDJkOS05NzI5LTQ2NDktYjYzMC1kM2MyMWU3YWI3MmI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "54c1a7b1-edb2-4438-9fff-83601d3473ba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1224,53 +1260,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "543a7eeb-b4fd-465b-8067-f850d069792b" + "a3e58fa3-9b0d-42e3-ace0-a30995a5f44e" ], "x-ms-correlation-request-id": [ - "543a7eeb-b4fd-465b-8067-f850d069792b" + "a3e58fa3-9b0d-42e3-ace0-a30995a5f44e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192630Z:543a7eeb-b4fd-465b-8067-f850d069792b" + "WESTUS2:20210213T034741Z:a3e58fa3-9b0d-42e3-ace0-a30995a5f44e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:26:30 GMT" + "Sat, 13 Feb 2021 03:47:41 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/d5e31197-99b6-4cc1-9161-063b0a2f5ccf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a89e4fe-edbd-4cf7-876b-f6ec680a6c78" + "02fa59e8-0dab-433d-a3bd-570629f78c47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1290,47 +1323,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "4fc35da1-dd1c-411e-af72-78de4a4c7f40" + "ef06f413-b22a-4fd3-8ae3-0fd91cea6c80" ], "x-ms-correlation-request-id": [ - "4fc35da1-dd1c-411e-af72-78de4a4c7f40" + "ef06f413-b22a-4fd3-8ae3-0fd91cea6c80" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192632Z:4fc35da1-dd1c-411e-af72-78de4a4c7f40" + "WESTUS2:20210213T034745Z:ef06f413-b22a-4fd3-8ae3-0fd91cea6c80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:26:32 GMT" + "Sat, 13 Feb 2021 03:47:44 GMT" ], "Content-Length": [ "409" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"-PgR\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"eI9a\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "86017ff0-3ee6-4631-affa-4ef4f5707e69" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1350,47 +1383,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-request-id": [ - "41ebd3d6-7b9a-4e68-b828-3abe611f6b5e" + "7aa2778f-d81b-4bce-bf53-d2110459d0ef" ], "x-ms-correlation-request-id": [ - "41ebd3d6-7b9a-4e68-b828-3abe611f6b5e" + "7aa2778f-d81b-4bce-bf53-d2110459d0ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192706Z:41ebd3d6-7b9a-4e68-b828-3abe611f6b5e" + "WESTUS2:20210213T034822Z:7aa2778f-d81b-4bce-bf53-d2110459d0ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:06 GMT" + "Sat, 13 Feb 2021 03:48:22 GMT" ], "Content-Length": [ "409" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"-PgR\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"eI9a\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4411dd82-f0ef-4067-b6aa-3d501fb88e36" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1410,47 +1443,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-request-id": [ - "58aaf894-e851-4b24-abb6-64b0d6ce3953" + "2f86762b-80c2-4726-bb96-c2ad90a0a9bc" ], "x-ms-correlation-request-id": [ - "58aaf894-e851-4b24-abb6-64b0d6ce3953" + "2f86762b-80c2-4726-bb96-c2ad90a0a9bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192740Z:58aaf894-e851-4b24-abb6-64b0d6ce3953" + "WESTUS2:20210213T034858Z:2f86762b-80c2-4726-bb96-c2ad90a0a9bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:40 GMT" + "Sat, 13 Feb 2021 03:48:57 GMT" ], "Content-Length": [ "409" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"-PgR\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"eI9a\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4598c16e-ab50-4199-a9ab-aa8ebd690357" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1470,53 +1503,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-request-id": [ - "6389b227-3fb3-4bf5-8cd9-7d983bf71adb" + "ca79228c-c517-4cdc-ba6e-6adbb22db6c4" ], "x-ms-correlation-request-id": [ - "6389b227-3fb3-4bf5-8cd9-7d983bf71adb" + "ca79228c-c517-4cdc-ba6e-6adbb22db6c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192813Z:6389b227-3fb3-4bf5-8cd9-7d983bf71adb" + "WESTUS2:20210213T034934Z:ca79228c-c517-4cdc-ba6e-6adbb22db6c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:13 GMT" + "Sat, 13 Feb 2021 03:49:34 GMT" ], "Content-Length": [ "409" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"-PgR\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings\",\r\n \"name\": \"eI9a\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "565fefd8-f656-4b91-95cd-603bfab660d8" + "86017ff0-3ee6-4631-affa-4ef4f5707e69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,13 +1563,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/0bd2a935-e2a9-494c-87f8-18054d9d6de5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/06a13bb5-a2ca-42ea-9921-22c0d4c7856f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0bd2a935-e2a9-494c-87f8-18054d9d6de5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/06a13bb5-a2ca-42ea-9921-22c0d4c7856f?api-version=2021-01-15" ], "x-ms-request-id": [ - "0bd2a935-e2a9-494c-87f8-18054d9d6de5" + "06a13bb5-a2ca-42ea-9921-22c0d4c7856f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,47 +1584,44 @@ "1194" ], "x-ms-correlation-request-id": [ - "01108dad-a741-4158-9c96-8f84de621d50" + "cbe16def-f0da-4459-895a-496b142be830" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192634Z:01108dad-a741-4158-9c96-8f84de621d50" + "WESTUS2:20210213T034748Z:cbe16def-f0da-4459-895a-496b142be830" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:26:33 GMT" + "Sat, 13 Feb 2021 03:47:48 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "e8fd96f6-8128-4fc1-82c3-0117d679aa0c" + "4411dd82-f0ef-4067-b6aa-3d501fb88e36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,13 +1638,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/fa6ede88-3210-4b7c-b86b-7032db7db365?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/386d23c6-2df5-4d3f-8ce3-c32e44c01631?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fa6ede88-3210-4b7c-b86b-7032db7db365?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/386d23c6-2df5-4d3f-8ce3-c32e44c01631?api-version=2021-01-15" ], "x-ms-request-id": [ - "fa6ede88-3210-4b7c-b86b-7032db7db365" + "386d23c6-2df5-4d3f-8ce3-c32e44c01631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,47 +1659,44 @@ "1193" ], "x-ms-correlation-request-id": [ - "298ded12-71e2-40a6-b1dc-dd4258aee626" + "fb7e2ab6-8785-4d8e-abd8-27338592bf08" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192708Z:298ded12-71e2-40a6-b1dc-dd4258aee626" + "WESTUS2:20210213T034825Z:fb7e2ab6-8785-4d8e-abd8-27338592bf08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:08 GMT" + "Sat, 13 Feb 2021 03:48:25 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "0e6229c6-12af-489a-9657-70b091ffa0a3" + "4598c16e-ab50-4199-a9ab-aa8ebd690357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,13 +1713,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/7365f51b-a100-4e63-b9bf-c6f7a017765b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default/operationResults/0e996df3-b309-4a79-b712-c38ab52de5b1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7365f51b-a100-4e63-b9bf-c6f7a017765b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0e996df3-b309-4a79-b712-c38ab52de5b1?api-version=2021-01-15" ], "x-ms-request-id": [ - "7365f51b-a100-4e63-b9bf-c6f7a017765b" + "0e996df3-b309-4a79-b712-c38ab52de5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,41 +1734,41 @@ "1192" ], "x-ms-correlation-request-id": [ - "7886fc7a-1d38-4f4f-885a-fae261ea5619" + "4bde5fc0-d68f-41fa-91dc-414198427e4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192741Z:7886fc7a-1d38-4f4f-885a-fae261ea5619" + "WESTUS2:20210213T034902Z:4bde5fc0-d68f-41fa-91dc-414198427e4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:41 GMT" + "Sat, 13 Feb 2021 03:49:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0bd2a935-e2a9-494c-87f8-18054d9d6de5?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wYmQyYTkzNS1lMmE5LTQ5NGMtODdmOC0xODA1NGQ5ZDZkZTU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/06a13bb5-a2ca-42ea-9921-22c0d4c7856f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wNmExM2JiNS1hMmNhLTQyZWEtOTkyMS0yMmMwZDRjNzg1NmY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "86017ff0-3ee6-4631-affa-4ef4f5707e69" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1764,47 +1788,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-request-id": [ - "9c8772b7-6212-47cb-ad17-11346952257a" + "f0deb969-1494-421d-bf88-be31b83dc802" ], "x-ms-correlation-request-id": [ - "9c8772b7-6212-47cb-ad17-11346952257a" + "f0deb969-1494-421d-bf88-be31b83dc802" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192704Z:9c8772b7-6212-47cb-ad17-11346952257a" + "WESTUS2:20210213T034819Z:f0deb969-1494-421d-bf88-be31b83dc802" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:04 GMT" + "Sat, 13 Feb 2021 03:48:19 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0bd2a935-e2a9-494c-87f8-18054d9d6de5?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fa6ede88-3210-4b7c-b86b-7032db7db365?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mYTZlZGU4OC0zMjEwLTRiN2MtYjg2Yi03MDMyZGI3ZGIzNjU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/386d23c6-2df5-4d3f-8ce3-c32e44c01631?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8zODZkMjNjNi0yZGY1LTRkM2YtOGNlMy1jMzJlNDRjMDE2MzE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4411dd82-f0ef-4067-b6aa-3d501fb88e36" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1824,47 +1848,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-request-id": [ - "95c82dff-3f1d-4c21-b2bf-df5f7dace0e9" + "2661ff97-3d04-402d-9861-79712e15a601" ], "x-ms-correlation-request-id": [ - "95c82dff-3f1d-4c21-b2bf-df5f7dace0e9" + "2661ff97-3d04-402d-9861-79712e15a601" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192738Z:95c82dff-3f1d-4c21-b2bf-df5f7dace0e9" + "WESTUS2:20210213T034856Z:2661ff97-3d04-402d-9861-79712e15a601" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:27:38 GMT" + "Sat, 13 Feb 2021 03:48:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/fa6ede88-3210-4b7c-b86b-7032db7db365?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7365f51b-a100-4e63-b9bf-c6f7a017765b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83MzY1ZjUxYi1hMTAwLTRlNjMtYjliZi1jNmY3YTAxNzc2NWI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/0e996df3-b309-4a79-b712-c38ab52de5b1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8wZTk5NmRmMy1iMzA5LTRhNzktYjcxMi1jMzhhYjUyZGU1YjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4598c16e-ab50-4199-a9ab-aa8ebd690357" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1884,53 +1908,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-request-id": [ - "a1258683-0c3b-497f-ba3d-c61adac38168" + "5d0a6821-adfd-4d92-a0c6-a5139fc20b79" ], "x-ms-correlation-request-id": [ - "a1258683-0c3b-497f-ba3d-c61adac38168" + "5d0a6821-adfd-4d92-a0c6-a5139fc20b79" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192812Z:a1258683-0c3b-497f-ba3d-c61adac38168" + "WESTUS2:20210213T034932Z:5d0a6821-adfd-4d92-a0c6-a5139fc20b79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:11 GMT" + "Sat, 13 Feb 2021 03:49:32 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7365f51b-a100-4e63-b9bf-c6f7a017765b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d93ac44-c844-4478-9560-408b857223b3" + "3853e272-62a1-43da-bb0b-af33f4c6594b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1941,13 +1962,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/afd5b819-7ff2-4053-bc8d-d827d869eacf?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/afd5b819-7ff2-4053-bc8d-d827d869eacf?api-version=2021-01-15" ], "x-ms-request-id": [ - "6b65bb8e-e263-4ad3-9d85-a29581ef12c4" + "afd5b819-7ff2-4053-bc8d-d827d869eacf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1962,47 +1983,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "a28ae43a-34bf-44ea-9e71-864e65d7e0e0" + "43189489-5055-490b-bc9f-7dd39bcee896" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192814Z:a28ae43a-34bf-44ea-9e71-864e65d7e0e0" + "WESTUS2:20210213T034937Z:43189489-5055-490b-bc9f-7dd39bcee896" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:13 GMT" + "Sat, 13 Feb 2021 03:49:37 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "005515d2-9cc5-4991-9670-bf03f6f9022d" + "0bee0e45-9174-48e2-a635-e66b92c8c43e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2013,13 +2031,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/7ca2d56e-4c76-4258-a61f-75a7d99215fd?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7ca2d56e-4c76-4258-a61f-75a7d99215fd?api-version=2021-01-15" ], "x-ms-request-id": [ - "256c9b8f-01e9-4737-9fb6-7fad0c48be01" + "7ca2d56e-4c76-4258-a61f-75a7d99215fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,41 +2052,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "086873f5-6ce9-4b96-8e61-17eaffcefa49" + "f85ea6d4-5c82-4bdb-a7b0-c54428ebcbe2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192917Z:086873f5-6ce9-4b96-8e61-17eaffcefa49" + "WESTUS2:20210213T035049Z:f85ea6d4-5c82-4bdb-a7b0-c54428ebcbe2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:16 GMT" + "Sat, 13 Feb 2021 03:50:48 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy82YjY1YmI4ZS1lMjYzLTRhZDMtOWQ4NS1hMjk1ODFlZjEyYzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/afd5b819-7ff2-4053-bc8d-d827d869eacf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9hZmQ1YjgxOS03ZmYyLTQwNTMtYmM4ZC1kODI3ZDg2OWVhY2Y/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3853e272-62a1-43da-bb0b-af33f4c6594b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,47 +2106,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-request-id": [ - "9d112f45-3fb6-459b-a285-5f8b6f05d15a" + "c5c23abf-ce25-42e5-a586-0f0a2d93dc19" ], "x-ms-correlation-request-id": [ - "9d112f45-3fb6-459b-a285-5f8b6f05d15a" + "c5c23abf-ce25-42e5-a586-0f0a2d93dc19" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192844Z:9d112f45-3fb6-459b-a285-5f8b6f05d15a" + "WESTUS2:20210213T035008Z:c5c23abf-ce25-42e5-a586-0f0a2d93dc19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:43 GMT" + "Sat, 13 Feb 2021 03:50:07 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzZiNjViYjhlLWUyNjMtNGFkMy05ZDg1LWEyOTU4MWVmMTJjND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/afd5b819-7ff2-4053-bc8d-d827d869eacf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzL2FmZDViODE5LTdmZjItNDA1My1iYzhkLWQ4MjdkODY5ZWFjZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3853e272-62a1-43da-bb0b-af33f4c6594b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,50 +2166,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-request-id": [ - "f15b8334-e89a-481e-909a-656061f96b5d" + "c7fe389f-1ba6-44de-8abe-9fdd0e4dab22" ], "x-ms-correlation-request-id": [ - "f15b8334-e89a-481e-909a-656061f96b5d" + "c7fe389f-1ba6-44de-8abe-9fdd0e4dab22" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192845Z:f15b8334-e89a-481e-909a-656061f96b5d" + "WESTUS2:20210213T035008Z:c7fe389f-1ba6-44de-8abe-9fdd0e4dab22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:44 GMT" + "Sat, 13 Feb 2021 03:50:08 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/6b65bb8e-e263-4ad3-9d85-a29581ef12c4?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "681e230b-c240-416c-89c2-9161b757ce0f" + "957868dd-275a-43f2-bd9a-f7b3da4f281b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,13 +2217,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/735f5415-f913-4c7f-a848-c1be335776c4?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/735f5415-f913-4c7f-a848-c1be335776c4?api-version=2021-01-15" ], "x-ms-request-id": [ - "4900eecf-c221-4fce-86a5-f88483c907ea" + "735f5415-f913-4c7f-a848-c1be335776c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,47 +2238,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "f30d257e-67a0-44e4-9881-f3d7b1c06988" + "3b70ce66-2086-4978-b22f-3753bf8a8ac3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192846Z:f30d257e-67a0-44e4-9881-f3d7b1c06988" + "WESTUS2:20210213T035013Z:3b70ce66-2086-4978-b22f-3753bf8a8ac3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:28:45 GMT" + "Sat, 13 Feb 2021 03:50:13 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "011332d0-6138-4ea8-a184-5b87965f70e7" + "a68e833c-baa9-4079-8d80-b7fc9ba1baff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2274,13 +2286,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/71f7fc97-91fa-41ae-a845-c4b8fb894a75?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/71f7fc97-91fa-41ae-a845-c4b8fb894a75?api-version=2021-01-15" ], "x-ms-request-id": [ - "f2796062-95d9-4524-91b0-4945bf9ace25" + "71f7fc97-91fa-41ae-a845-c4b8fb894a75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,44 +2304,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "5921ffe5-ffd6-41b7-9f73-3e4d3050328c" + "4c2a681f-d93d-4093-9444-c4ecdc20efbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192948Z:5921ffe5-ffd6-41b7-9f73-3e4d3050328c" + "WESTUS2:20210213T035125Z:4c2a681f-d93d-4093-9444-c4ecdc20efbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:47 GMT" + "Sat, 13 Feb 2021 03:51:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy80OTAwZWVjZi1jMjIxLTRmY2UtODZhNS1mODg0ODNjOTA3ZWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/735f5415-f913-4c7f-a848-c1be335776c4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83MzVmNTQxNS1mOTEzLTRjN2YtYTg0OC1jMWJlMzM1Nzc2YzQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "957868dd-275a-43f2-bd9a-f7b3da4f281b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2352,44 +2364,44 @@ "11999" ], "x-ms-request-id": [ - "0bb884e6-3706-4263-868c-1bd6dfc1a17e" + "de23cc48-0811-4edb-8df8-a3d8f932fcc7" ], "x-ms-correlation-request-id": [ - "0bb884e6-3706-4263-868c-1bd6dfc1a17e" + "de23cc48-0811-4edb-8df8-a3d8f932fcc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192916Z:0bb884e6-3706-4263-868c-1bd6dfc1a17e" + "WESTUS2:20210213T035044Z:de23cc48-0811-4edb-8df8-a3d8f932fcc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:15 GMT" + "Sat, 13 Feb 2021 03:50:43 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy80OTAwZWVjZi1jMjIxLTRmY2UtODZhNS1mODg0ODNjOTA3ZWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/735f5415-f913-4c7f-a848-c1be335776c4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy83MzVmNTQxNS1mOTEzLTRjN2YtYTg0OC1jMWJlMzM1Nzc2YzQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "957868dd-275a-43f2-bd9a-f7b3da4f281b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2412,41 +2424,41 @@ "11998" ], "x-ms-request-id": [ - "30d60ae8-032a-4b59-b1d7-de57842c0305" + "7b188ed8-4c1e-4ef0-837e-33c0738f6820" ], "x-ms-correlation-request-id": [ - "30d60ae8-032a-4b59-b1d7-de57842c0305" + "7b188ed8-4c1e-4ef0-837e-33c0738f6820" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192916Z:30d60ae8-032a-4b59-b1d7-de57842c0305" + "WESTUS2:20210213T035044Z:7b188ed8-4c1e-4ef0-837e-33c0738f6820" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:15 GMT" + "Sat, 13 Feb 2021 03:50:43 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/4900eecf-c221-4fce-86a5-f88483c907ea?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy8yNTZjOWI4Zi0wMWU5LTQ3MzctOWZiNi03ZmFkMGM0OGJlMDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/7ca2d56e-4c76-4258-a61f-75a7d99215fd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83Y2EyZDU2ZS00Yzc2LTQyNTgtYTYxZi03NWE3ZDk5MjE1ZmQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0bee0e45-9174-48e2-a635-e66b92c8c43e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2469,44 +2481,44 @@ "11999" ], "x-ms-request-id": [ - "a76c1d6b-750f-445a-afda-bb9b328c6870" + "cc66f95a-a5a1-42e8-829f-ceefe84df67f" ], "x-ms-correlation-request-id": [ - "a76c1d6b-750f-445a-afda-bb9b328c6870" + "cc66f95a-a5a1-42e8-829f-ceefe84df67f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192947Z:a76c1d6b-750f-445a-afda-bb9b328c6870" + "WESTUS2:20210213T035120Z:cc66f95a-a5a1-42e8-829f-ceefe84df67f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:47 GMT" + "Sat, 13 Feb 2021 03:51:19 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzI1NmM5YjhmLTAxZTktNDczNy05ZmI2LTdmYWQwYzQ4YmUwMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/7ca2d56e-4c76-4258-a61f-75a7d99215fd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvdGFibGVzL3RhYmxlTmFtZS9vcGVyYXRpb25SZXN1bHRzLzdjYTJkNTZlLTRjNzYtNDI1OC1hNjFmLTc1YTdkOTkyMTVmZD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0bee0e45-9174-48e2-a635-e66b92c8c43e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2529,41 +2541,41 @@ "11998" ], "x-ms-request-id": [ - "6881c8a6-279b-428d-86e7-11fd0c90a48d" + "f88fc441-5605-487f-9af7-0aa0c5c30afd" ], "x-ms-correlation-request-id": [ - "6881c8a6-279b-428d-86e7-11fd0c90a48d" + "f88fc441-5605-487f-9af7-0aa0c5c30afd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192947Z:6881c8a6-279b-428d-86e7-11fd0c90a48d" + "WESTUS2:20210213T035120Z:f88fc441-5605-487f-9af7-0aa0c5c30afd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:29:47 GMT" + "Sat, 13 Feb 2021 03:51:19 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/tables/tableName/operationResults/256c9b8f-01e9-4737-9fb6-7fad0c48be01?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy9mMjc5NjA2Mi05NWQ5LTQ1MjQtOTFiMC00OTQ1YmY5YWNlMjU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/71f7fc97-91fa-41ae-a845-c4b8fb894a75?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvdWFlbm9ydGgvb3BlcmF0aW9uc1N0YXR1cy83MWY3ZmM5Ny05MWZhLTQxYWUtYTg0NS1jNGI4ZmI4OTRhNzU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a68e833c-baa9-4079-8d80-b7fc9ba1baff" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2583,47 +2595,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "99d59215-e01c-47dd-afdd-1114276a321c" + "3a66ac73-6d49-4e7d-b907-62ede9f3b180" ], "x-ms-correlation-request-id": [ - "99d59215-e01c-47dd-afdd-1114276a321c" + "3a66ac73-6d49-4e7d-b907-62ede9f3b180" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193018Z:99d59215-e01c-47dd-afdd-1114276a321c" + "WESTUS2:20210213T035155Z:3a66ac73-6d49-4e7d-b907-62ede9f3b180" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:30:18 GMT" + "Sat, 13 Feb 2021 03:51:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/uaenorth/operationsStatus/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mMjc5NjA2Mi05NWQ5LTQ1MjQtOTFiMC00OTQ1YmY5YWNlMjU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/71f7fc97-91fa-41ae-a845-c4b8fb894a75?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNzI1L2Nhc3NhbmRyYUtleXNwYWNlcy9LZXlzcGFjZU5hbWUvb3BlcmF0aW9uUmVzdWx0cy83MWY3ZmM5Ny05MWZhLTQxYWUtYTg0NS1jNGI4ZmI4OTRhNzU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a68e833c-baa9-4079-8d80-b7fc9ba1baff" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2643,28 +2655,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "44af1ec7-49a9-4e43-9481-45c307b998a5" + "5c0c48f2-d26a-4239-aa76-b426315e6c32" ], "x-ms-correlation-request-id": [ - "44af1ec7-49a9-4e43-9481-45c307b998a5" + "5c0c48f2-d26a-4239-aa76-b426315e6c32" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193019Z:44af1ec7-49a9-4e43-9481-45c307b998a5" + "WESTUS2:20210213T035156Z:5c0c48f2-d26a-4239-aa76-b426315e6c32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:30:18 GMT" + "Sat, 13 Feb 2021 03:51:56 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2725/cassandraKeyspaces/KeyspaceName/operationResults/f2796062-95d9-4524-91b0-4945bf9ace25?api-version=2020-04-01" ] }, "ResponseBody": "", 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 b80f70299328..b72f41734a2e 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dd8bfdd-6296-4540-aa0c-294676dc0f72" + "d6d399f2-b408-4b98-a88a-021a8250b3cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "8088f55e-c8ed-43ac-96e1-7e7c611ac1e8" + "ef3a6f4c-1cad-4962-9b13-ad25bf165ba0" ], "x-ms-correlation-request-id": [ - "8088f55e-c8ed-43ac-96e1-7e7c611ac1e8" + "ef3a6f4c-1cad-4962-9b13-ad25bf165ba0" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001647Z:8088f55e-c8ed-43ac-96e1-7e7c611ac1e8" + "WESTUS2:20210213T035756Z:ef3a6f4c-1cad-4962-9b13-ad25bf165ba0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:16:46 GMT" + "Sat, 13 Feb 2021 03:57:55 GMT" ], "Content-Length": [ - "1773" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01" ] }, - "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: 4dd8bfdd-6296-4540-aa0c-294676dc0f72, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132435263742689470s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:16:47.1852861Z, RequestEndTime: 2020-09-03T00:16:47.1852861Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:16:47.1852861Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132435263742689470s, LSN: 509, GlobalCommittedLsn: 509, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#509, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:16:47.1852861Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132432561619496202s, LSN: 509, GlobalCommittedLsn: 509, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#509, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: d6d399f2-b408-4b98-a88a-021a8250b3cf, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:57:55.9519965Z, RequestEndTime: 2021-02-13T03:57:55.9519965Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:57:55.9519965Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1660, GlobalCommittedLsn: 1660, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1660, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:57:55.9519965Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1660, GlobalCommittedLsn: 1660, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1660, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6d399f2-b408-4b98-a88a-021a8250b3cf" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "4ed31ee8-2f33-4b48-a147-8b0ecf80caa1" + "6ba23460-e7d5-4b14-b24f-60ff816c2132" ], "x-ms-correlation-request-id": [ - "4ed31ee8-2f33-4b48-a147-8b0ecf80caa1" + "6ba23460-e7d5-4b14-b24f-60ff816c2132" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001718Z:4ed31ee8-2f33-4b48-a147-8b0ecf80caa1" + "WESTUS2:20210213T035827Z:6ba23460-e7d5-4b14-b24f-60ff816c2132" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:17 GMT" + "Sat, 13 Feb 2021 03:58:26 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"BAx4AA==\",\r\n \"_self\": \"dbs/BAx4AA==/\",\r\n \"_etag\": \"\\\"00000342-0000-0100-0000-5f5035f40000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1599092212\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"XZ05AA==\",\r\n \"_self\": \"dbs/XZ05AA==/\",\r\n \"_etag\": \"\\\"0000a91c-0000-0100-0000-60274e480000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188680\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "92c4bcd0-161e-4706-ba3f-25727cbc26ce" + "d6d399f2-b408-4b98-a88a-021a8250b3cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/7fca3dcf-b64c-4ece-8e1e-815aa9981143?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/eda2ec3b-3772-4a84-8945-3a215ccfb599?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7fca3dcf-b64c-4ece-8e1e-815aa9981143?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eda2ec3b-3772-4a84-8945-3a215ccfb599?api-version=2021-01-15" ], "x-ms-request-id": [ - "7fca3dcf-b64c-4ece-8e1e-815aa9981143" + "eda2ec3b-3772-4a84-8945-3a215ccfb599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "adc77a4e-e37e-4729-8419-09370acfeaa0" + "8b9dbd42-93bb-46b2-92f0-fbbc6caa3bbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001648Z:adc77a4e-e37e-4729-8419-09370acfeaa0" + "WESTUS2:20210213T035756Z:8b9dbd42-93bb-46b2-92f0-fbbc6caa3bbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:16:47 GMT" + "Sat, 13 Feb 2021 03:57:55 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7fca3dcf-b64c-4ece-8e1e-815aa9981143?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2ZjYTNkY2YtYjY0Yy00ZWNlLThlMWUtODE1YWE5OTgxMTQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eda2ec3b-3772-4a84-8945-3a215ccfb599?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWRhMmVjM2ItMzc3Mi00YTg0LTg5NDUtM2EyMTVjY2ZiNTk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6d399f2-b408-4b98-a88a-021a8250b3cf" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -237,50 +234,47 @@ "11998" ], "x-ms-request-id": [ - "4509d253-b0fd-4201-b02a-5aad21406759" + "e92f2981-b3ca-4581-9129-ade8ad7eab39" ], "x-ms-correlation-request-id": [ - "4509d253-b0fd-4201-b02a-5aad21406759" + "e92f2981-b3ca-4581-9129-ade8ad7eab39" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001718Z:4509d253-b0fd-4201-b02a-5aad21406759" + "WESTUS2:20210213T035827Z:e92f2981-b3ca-4581-9129-ade8ad7eab39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:17 GMT" + "Sat, 13 Feb 2021 03:58:26 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7fca3dcf-b64c-4ece-8e1e-815aa9981143?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff9c4851-5f65-445c-86bc-7b628d50056d" + "957dc7b8-b27c-416d-b0a5-5b5927921082" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -303,50 +297,47 @@ "11996" ], "x-ms-request-id": [ - "47ab8dce-9b0d-4dae-a544-39bd3f5b7dea" + "a55ace25-f377-4f9b-8d9a-7a4175603cd9" ], "x-ms-correlation-request-id": [ - "47ab8dce-9b0d-4dae-a544-39bd3f5b7dea" + "a55ace25-f377-4f9b-8d9a-7a4175603cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001719Z:47ab8dce-9b0d-4dae-a544-39bd3f5b7dea" + "WESTUS2:20210213T035827Z:a55ace25-f377-4f9b-8d9a-7a4175603cd9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:18 GMT" + "Sat, 13 Feb 2021 03:58:26 GMT" ], "Content-Length": [ "377" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"V4z3\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"0uJ5\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78d8703b-e093-46bb-810b-97ea7ca43da9" + "004036b5-d1c4-4fb9-b815-5aa063ea27b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/2451fb02-3f76-46e9-a64c-04b88bebe264?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2451fb02-3f76-46e9-a64c-04b88bebe264?api-version=2021-01-15" ], "x-ms-request-id": [ - "adbf589b-9bee-4b7f-af05-7a3b4b821654" + "2451fb02-3f76-46e9-a64c-04b88bebe264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2e9ecba0-9dee-44df-bfc9-556558ed57f0" + "b3a90aae-75f7-4b89-8cb9-d0b48e41cd42" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001719Z:2e9ecba0-9dee-44df-bfc9-556558ed57f0" + "WESTUS2:20210213T035828Z:b3a90aae-75f7-4b89-8cb9-d0b48e41cd42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:18 GMT" + "Sat, 13 Feb 2021 03:58:27 GMT" ], "Content-Length": [ "21" @@ -400,16 +391,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWRiZjU4OWItOWJlZS00YjdmLWFmMDUtN2EzYjRiODIxNjU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2451fb02-3f76-46e9-a64c-04b88bebe264?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjQ1MWZiMDItM2Y3Ni00NmU5LWE2NGMtMDRiODhiZWJlMjY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "004036b5-d1c4-4fb9-b815-5aa063ea27b2" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -432,44 +426,44 @@ "11995" ], "x-ms-request-id": [ - "f1db0087-40fe-480c-af7f-53492601ecc5" + "9f5bdac5-0955-4e0a-839c-a8e581229db8" ], "x-ms-correlation-request-id": [ - "f1db0087-40fe-480c-af7f-53492601ecc5" + "9f5bdac5-0955-4e0a-839c-a8e581229db8" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001750Z:f1db0087-40fe-480c-af7f-53492601ecc5" + "WESTUS2:20210213T035858Z:9f5bdac5-0955-4e0a-839c-a8e581229db8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:50 GMT" + "Sat, 13 Feb 2021 03:58:57 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy9hZGJmNTg5Yi05YmVlLTRiN2YtYWYwNS03YTNiNGI4MjE2NTQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/2451fb02-3f76-46e9-a64c-04b88bebe264?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy8yNDUxZmIwMi0zZjc2LTQ2ZTktYTY0Yy0wNGI4OGJlYmUyNjQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "004036b5-d1c4-4fb9-b815-5aa063ea27b2" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -492,50 +486,47 @@ "11994" ], "x-ms-request-id": [ - "19ac0133-9166-4153-97ca-e9be59d4b1b0" + "1dacd715-70fb-4855-836f-e3ada8d8fb4f" ], "x-ms-correlation-request-id": [ - "19ac0133-9166-4153-97ca-e9be59d4b1b0" + "1dacd715-70fb-4855-836f-e3ada8d8fb4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001750Z:19ac0133-9166-4153-97ca-e9be59d4b1b0" + "WESTUS2:20210213T035858Z:1dacd715-70fb-4855-836f-e3ada8d8fb4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:50 GMT" + "Sat, 13 Feb 2021 03:58:58 GMT" ], "Content-Length": [ "458" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/adbf589b-9bee-4b7f-af05-7a3b4b821654?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"V4z3\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"0uJ5\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a1ae94-8cca-4e35-9ac0-abff13c6f1b5" + "3405a6a3-b676-4805-b338-e51606657bdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -558,50 +549,47 @@ "11993" ], "x-ms-request-id": [ - "c2f62518-06be-444e-8326-84d79de1cf50" + "a4e3390f-4b57-4bb2-84ee-1eb8aa6081c5" ], "x-ms-correlation-request-id": [ - "c2f62518-06be-444e-8326-84d79de1cf50" + "a4e3390f-4b57-4bb2-84ee-1eb8aa6081c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001750Z:c2f62518-06be-444e-8326-84d79de1cf50" + "WESTUS2:20210213T035858Z:a4e3390f-4b57-4bb2-84ee-1eb8aa6081c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:50 GMT" + "Sat, 13 Feb 2021 03:58:58 GMT" ], "Content-Length": [ - "2086" + "2195" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-06T00:30:37.9129493Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"instanceId\": \"3b2daee5-6294-414f-be12-844f62f701f7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-06T00:30:37.9129493Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"instanceId\": \"3b2daee5-6294-414f-be12-844f62f701f7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c3ca6d3-95e2-4406-b402-19e9f43b2dd9" + "fb80fad9-bc04-44c4-aa50-79a8f41b047f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -612,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c1d21d8e-13d8-471a-88f9-45ba20629017?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1d21d8e-13d8-471a-88f9-45ba20629017?api-version=2021-01-15" ], "x-ms-request-id": [ - "463c98e4-e56d-4529-9a10-63b0a216af26" + "c1d21d8e-13d8-471a-88f9-45ba20629017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,16 +621,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "42f0a530-5a75-4e1c-b173-96feb3c3b4f6" + "1201593c-0cf7-4ddd-a270-7fbdc5f92d2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001751Z:42f0a530-5a75-4e1c-b173-96feb3c3b4f6" + "WESTUS2:20210213T035859Z:1201593c-0cf7-4ddd-a270-7fbdc5f92d2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:17:51 GMT" + "Sat, 13 Feb 2021 03:58:58 GMT" ], "Content-Length": [ "21" @@ -655,16 +643,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDYzYzk4ZTQtZTU2ZC00NTI5LTlhMTAtNjNiMGEyMTZhZjI2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1d21d8e-13d8-471a-88f9-45ba20629017?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzFkMjFkOGUtMTNkOC00NzFhLTg4ZjktNDViYTIwNjI5MDE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb80fad9-bc04-44c4-aa50-79a8f41b047f" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -687,44 +678,44 @@ "11992" ], "x-ms-request-id": [ - "8dd7a7f3-c962-48f1-a828-08c6410d23d4" + "70dc068e-adfe-4683-88e9-4602ffba1e04" ], "x-ms-correlation-request-id": [ - "8dd7a7f3-c962-48f1-a828-08c6410d23d4" + "70dc068e-adfe-4683-88e9-4602ffba1e04" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001821Z:8dd7a7f3-c962-48f1-a828-08c6410d23d4" + "WESTUS2:20210213T035929Z:70dc068e-adfe-4683-88e9-4602ffba1e04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:21 GMT" + "Sat, 13 Feb 2021 03:59:29 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvNDYzYzk4ZTQtZTU2ZC00NTI5LTlhMTAtNjNiMGEyMTZhZjI2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c1d21d8e-13d8-471a-88f9-45ba20629017?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvYzFkMjFkOGUtMTNkOC00NzFhLTg4ZjktNDViYTIwNjI5MDE3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb80fad9-bc04-44c4-aa50-79a8f41b047f" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -747,50 +738,47 @@ "11991" ], "x-ms-request-id": [ - "9df85a88-c5df-431e-ac02-364e5e30d836" + "44df0e02-2fdc-4d1a-b6a6-287c2e9cfc6f" ], "x-ms-correlation-request-id": [ - "9df85a88-c5df-431e-ac02-364e5e30d836" + "44df0e02-2fdc-4d1a-b6a6-287c2e9cfc6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001821Z:9df85a88-c5df-431e-ac02-364e5e30d836" + "WESTUS2:20210213T035929Z:44df0e02-2fdc-4d1a-b6a6-287c2e9cfc6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:21 GMT" + "Sat, 13 Feb 2021 03:59:29 GMT" ], "Content-Length": [ "429" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/463c98e4-e56d-4529-9a10-63b0a216af26?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"V4z3\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"0uJ5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90e09d10-f2f0-42a1-8989-6bbba503f55b" + "82514ff7-59b1-41b9-b067-d87df68b7504" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -813,44 +801,44 @@ "11990" ], "x-ms-request-id": [ - "9d5df0ef-54e1-4aef-9179-bb7c9ef23395" + "5becc586-ab67-4790-9cc9-608bd2ae3410" ], "x-ms-correlation-request-id": [ - "9d5df0ef-54e1-4aef-9179-bb7c9ef23395" + "5becc586-ab67-4790-9cc9-608bd2ae3410" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001821Z:9d5df0ef-54e1-4aef-9179-bb7c9ef23395" + "WESTUS2:20210213T035929Z:5becc586-ab67-4790-9cc9-608bd2ae3410" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:21 GMT" + "Sat, 13 Feb 2021 03:59:29 GMT" ], "Content-Length": [ - "1793" + "1799" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01" ] }, - "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: 90e09d10-f2f0-42a1-8989-6bbba503f55b, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132435263742689470s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:18:21.8071972Z, RequestEndTime: 2020-09-03T00:18:21.8171938Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:18:21.8171938Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132435263742689470s, LSN: 512, GlobalCommittedLsn: 512, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#512, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:18:21.8171938Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132432561619496202s, LSN: 512, GlobalCommittedLsn: 512, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#512, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 82514ff7-59b1-41b9-b067-d87df68b7504, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:59:29.7564349Z, RequestEndTime: 2021-02-13T03:59:29.7564349Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:59:29.7564349Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1663, GlobalCommittedLsn: 1663, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1663, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:59:29.7564349Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1663, GlobalCommittedLsn: 1663, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1663, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "82514ff7-59b1-41b9-b067-d87df68b7504" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -873,50 +861,47 @@ "11988" ], "x-ms-request-id": [ - "8656be1b-f626-4d3e-a94a-89ec02907859" + "99fdc8ea-e84b-4c43-abd5-d09062f40df9" ], "x-ms-correlation-request-id": [ - "8656be1b-f626-4d3e-a94a-89ec02907859" + "99fdc8ea-e84b-4c43-abd5-d09062f40df9" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001853Z:8656be1b-f626-4d3e-a94a-89ec02907859" + "WESTUS2:20210213T040000Z:99fdc8ea-e84b-4c43-abd5-d09062f40df9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:52 GMT" + "Sat, 13 Feb 2021 03:59:59 GMT" ], "Content-Length": [ "1055" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"uniqueIndexReIndexingState\": 0,\r\n \"_rid\": \"BAx4ALfpw-E=\",\r\n \"_ts\": 1599092306,\r\n \"_self\": \"dbs/BAx4AA==/colls/BAx4ALfpw-E=/\",\r\n \"_etag\": \"\\\"00000942-0000-0100-0000-5f5036520000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"XZ05AOf1Qeo=\",\r\n \"_ts\": 1613188775,\r\n \"_self\": \"dbs/XZ05AA==/colls/XZ05AOf1Qeo=/\",\r\n \"_etag\": \"\\\"0000b11c-0000-0100-0000-60274ea70000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "34bf6448-2f9f-40d1-b897-63961a36ad28" + "82514ff7-59b1-41b9-b067-d87df68b7504" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,13 +918,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/b1223729-ff3a-43f3-822d-96f987e56005?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/6199b113-3252-4501-8dfb-352ab87afa8e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1223729-ff3a-43f3-822d-96f987e56005?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6199b113-3252-4501-8dfb-352ab87afa8e?api-version=2021-01-15" ], "x-ms-request-id": [ - "b1223729-ff3a-43f3-822d-96f987e56005" + "6199b113-3252-4501-8dfb-352ab87afa8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,41 +939,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "c1893dfe-b793-4d0c-8502-773196a1d2d8" + "d6faf53c-5d3c-4acf-a73a-3f7cf7f60865" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001822Z:c1893dfe-b793-4d0c-8502-773196a1d2d8" + "WESTUS2:20210213T035930Z:d6faf53c-5d3c-4acf-a73a-3f7cf7f60865" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:22 GMT" + "Sat, 13 Feb 2021 03:59:30 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1223729-ff3a-43f3-822d-96f987e56005?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjEyMjM3MjktZmYzYS00M2YzLTgyMmQtOTZmOTg3ZTU2MDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6199b113-3252-4501-8dfb-352ab87afa8e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjE5OWIxMTMtMzI1Mi00NTAxLThkZmItMzUyYWI4N2FmYThlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "82514ff7-59b1-41b9-b067-d87df68b7504" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1011,50 +996,47 @@ "11989" ], "x-ms-request-id": [ - "18aacc51-1255-4fbb-bc81-0829a98a308e" + "27b6363d-11a1-49a1-820f-0199d895de98" ], "x-ms-correlation-request-id": [ - "18aacc51-1255-4fbb-bc81-0829a98a308e" + "27b6363d-11a1-49a1-820f-0199d895de98" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001852Z:18aacc51-1255-4fbb-bc81-0829a98a308e" + "WESTUS2:20210213T040000Z:27b6363d-11a1-49a1-820f-0199d895de98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:52 GMT" + "Sat, 13 Feb 2021 03:59:59 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1223729-ff3a-43f3-822d-96f987e56005?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6942be9a-42cf-459e-955e-c45d2e2c85be" + "3cf09e6f-bf74-4503-96da-69e7ad793c91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1077,50 +1059,47 @@ "11987" ], "x-ms-request-id": [ - "9be42f2f-934e-4d9c-919b-20a5a68467c4" + "fcf763ae-d2fa-477b-8376-0816a64210e6" ], "x-ms-correlation-request-id": [ - "9be42f2f-934e-4d9c-919b-20a5a68467c4" + "fcf763ae-d2fa-477b-8376-0816a64210e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001853Z:9be42f2f-934e-4d9c-919b-20a5a68467c4" + "WESTUS2:20210213T040001Z:fcf763ae-d2fa-477b-8376-0816a64210e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:52 GMT" + "Sat, 13 Feb 2021 04:00:00 GMT" ], "Content-Length": [ "400" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"cJ-+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"jiD8\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e387db2f-b34e-409c-ae17-b9862f5f14ef" + "4ed367fc-e9f9-4f48-99ec-b5a96e7c3452" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1131,13 +1110,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/e6e95f8d-c315-4507-a522-9c19725ac164?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e6e95f8d-c315-4507-a522-9c19725ac164?api-version=2021-01-15" ], "x-ms-request-id": [ - "5717063d-3a90-4b98-9794-68bcac402b0b" + "e6e95f8d-c315-4507-a522-9c19725ac164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,16 +1131,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "7170188c-9d93-47e2-b43c-2c567ca036e2" + "663dc0c2-6962-4dc5-bd0e-d23338fdd397" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001853Z:7170188c-9d93-47e2-b43c-2c567ca036e2" + "WESTUS2:20210213T040001Z:663dc0c2-6962-4dc5-bd0e-d23338fdd397" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:18:53 GMT" + "Sat, 13 Feb 2021 04:00:00 GMT" ], "Content-Length": [ "21" @@ -1174,16 +1153,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTcxNzA2M2QtM2E5MC00Yjk4LTk3OTQtNjhiY2FjNDAyYjBiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e6e95f8d-c315-4507-a522-9c19725ac164?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTZlOTVmOGQtYzMxNS00NTA3LWE1MjItOWMxOTcyNWFjMTY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4ed367fc-e9f9-4f48-99ec-b5a96e7c3452" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1206,44 +1188,44 @@ "11986" ], "x-ms-request-id": [ - "d99c50d4-4b3c-4e08-9822-0e8395ec670e" + "35b4e5ef-2da8-4229-b413-92018c2dadea" ], "x-ms-correlation-request-id": [ - "d99c50d4-4b3c-4e08-9822-0e8395ec670e" + "35b4e5ef-2da8-4229-b413-92018c2dadea" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001924Z:d99c50d4-4b3c-4e08-9822-0e8395ec670e" + "WESTUS2:20210213T040031Z:35b4e5ef-2da8-4229-b413-92018c2dadea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:23 GMT" + "Sat, 13 Feb 2021 04:00:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzU3MTcwNjNkLTNhOTAtNGI5OC05Nzk0LTY4YmNhYzQwMmIwYj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/e6e95f8d-c315-4507-a522-9c19725ac164?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2U2ZTk1ZjhkLWMzMTUtNDUwNy1hNTIyLTljMTk3MjVhYzE2ND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4ed367fc-e9f9-4f48-99ec-b5a96e7c3452" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1266,50 +1248,47 @@ "11985" ], "x-ms-request-id": [ - "c3e0b976-ee47-4a76-a892-e92994e52048" + "4081737f-fcd4-4841-b05f-dbb1a7254d78" ], "x-ms-correlation-request-id": [ - "c3e0b976-ee47-4a76-a892-e92994e52048" + "4081737f-fcd4-4841-b05f-dbb1a7254d78" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001924Z:c3e0b976-ee47-4a76-a892-e92994e52048" + "WESTUS2:20210213T040032Z:4081737f-fcd4-4841-b05f-dbb1a7254d78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:23 GMT" + "Sat, 13 Feb 2021 04:00:31 GMT" ], "Content-Length": [ "482" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale/operationResults/5717063d-3a90-4b98-9794-68bcac402b0b?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"cJ-+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"jiD8\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9471bfca-e766-4bc6-b29e-d4a5e2bc0c0f" + "1a1fd266-cc39-4f94-b25d-40b6fbb33323" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1320,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/2b7c997f-e260-4892-b48c-208072f0b2e2?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b7c997f-e260-4892-b48c-208072f0b2e2?api-version=2021-01-15" ], "x-ms-request-id": [ - "37d3a46a-a14e-458f-bea2-4dddf69432f7" + "2b7c997f-e260-4892-b48c-208072f0b2e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,16 +1320,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "06e1c352-8d59-46b5-9d7e-75852abbdcf2" + "b57a65bd-a0e6-4a8a-8ea3-562f54b7bcf6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001924Z:06e1c352-8d59-46b5-9d7e-75852abbdcf2" + "WESTUS2:20210213T040032Z:b57a65bd-a0e6-4a8a-8ea3-562f54b7bcf6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:24 GMT" + "Sat, 13 Feb 2021 04:00:32 GMT" ], "Content-Length": [ "21" @@ -1363,16 +1342,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzdkM2E0NmEtYTE0ZS00NThmLWJlYTItNGRkZGY2OTQzMmY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b7c997f-e260-4892-b48c-208072f0b2e2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmI3Yzk5N2YtZTI2MC00ODkyLWI0OGMtMjA4MDcyZjBiMmUyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a1fd266-cc39-4f94-b25d-40b6fbb33323" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1395,44 +1377,44 @@ "11984" ], "x-ms-request-id": [ - "5b780993-9d0c-46c1-8b6f-907b3285e3bd" + "f4bdc581-8a8f-47d6-8300-3e9cfc9778d4" ], "x-ms-correlation-request-id": [ - "5b780993-9d0c-46c1-8b6f-907b3285e3bd" + "f4bdc581-8a8f-47d6-8300-3e9cfc9778d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001955Z:5b780993-9d0c-46c1-8b6f-907b3285e3bd" + "WESTUS2:20210213T040103Z:f4bdc581-8a8f-47d6-8300-3e9cfc9778d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:54 GMT" + "Sat, 13 Feb 2021 04:01:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy8zN2QzYTQ2YS1hMTRlLTQ1OGYtYmVhMi00ZGRkZjY5NDMyZjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/2b7c997f-e260-4892-b48c-208072f0b2e2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy8yYjdjOTk3Zi1lMjYwLTQ4OTItYjQ4Yy0yMDgwNzJmMGIyZTI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a1fd266-cc39-4f94-b25d-40b6fbb33323" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1455,50 +1437,47 @@ "11983" ], "x-ms-request-id": [ - "d933d009-233d-489c-90d1-76d1bd52d5c9" + "6892c8f8-6a2f-4685-aba9-747a852db723" ], "x-ms-correlation-request-id": [ - "d933d009-233d-489c-90d1-76d1bd52d5c9" + "6892c8f8-6a2f-4685-aba9-747a852db723" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001955Z:d933d009-233d-489c-90d1-76d1bd52d5c9" + "WESTUS2:20210213T040103Z:6892c8f8-6a2f-4685-aba9-747a852db723" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:54 GMT" + "Sat, 13 Feb 2021 04:01:02 GMT" ], "Content-Length": [ "453" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput/operationResults/37d3a46a-a14e-458f-bea2-4dddf69432f7?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"cJ-+\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"jiD8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f492f184-249f-4458-9a15-32d87b67088e" + "f29f32dc-ef0d-4b6c-abf2-673cca466e4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1509,13 +1488,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/88a96eda-c79c-4808-b11f-9e196305c5f5?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/88a96eda-c79c-4808-b11f-9e196305c5f5?api-version=2021-01-15" ], "x-ms-request-id": [ - "de913e9c-d774-446b-89b5-d4983728b1d0" + "88a96eda-c79c-4808-b11f-9e196305c5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,47 +1509,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "c9dc8fce-d9db-4c0d-9afd-b68a2eaf1419" + "e05c5b26-39ba-47f6-b1c4-4f9a3a90c552" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T001955Z:c9dc8fce-d9db-4c0d-9afd-b68a2eaf1419" + "WESTUS2:20210213T040103Z:e05c5b26-39ba-47f6-b1c4-4f9a3a90c552" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:19:55 GMT" + "Sat, 13 Feb 2021 04:01:02 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16473b68-7d7e-4e84-b206-38631a6936aa" + "37dfec00-0fe2-4b09-87bf-1ca1ae170e97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1581,13 +1557,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/86d44918-6dc3-4853-9666-3e96eead4c99?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/86d44918-6dc3-4853-9666-3e96eead4c99?api-version=2021-01-15" ], "x-ms-request-id": [ - "f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb" + "86d44918-6dc3-4853-9666-3e96eead4c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,44 +1575,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "93adf6fd-b358-46ab-b4a2-bc307698bc3b" + "9839790b-dc7b-4f33-ad00-49033c780b11" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002103Z:93adf6fd-b358-46ab-b4a2-bc307698bc3b" + "WESTUS2:20210213T040206Z:9839790b-dc7b-4f33-ad00-49033c780b11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:21:03 GMT" + "Sat, 13 Feb 2021 04:02:06 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGU5MTNlOWMtZDc3NC00NDZiLTg5YjUtZDQ5ODM3MjhiMWQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/88a96eda-c79c-4808-b11f-9e196305c5f5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODhhOTZlZGEtYzc5Yy00ODA4LWIxMWYtOWUxOTYzMDVjNWY1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f29f32dc-ef0d-4b6c-abf2-673cca466e4f" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1659,44 +1635,44 @@ "11982" ], "x-ms-request-id": [ - "40d4e7d8-a5c8-406b-86ca-5276efd7381e" + "c080c8a2-a429-4b7c-ba4f-b453141a3d7e" ], "x-ms-correlation-request-id": [ - "40d4e7d8-a5c8-406b-86ca-5276efd7381e" + "c080c8a2-a429-4b7c-ba4f-b453141a3d7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002026Z:40d4e7d8-a5c8-406b-86ca-5276efd7381e" + "WESTUS2:20210213T040133Z:c080c8a2-a429-4b7c-ba4f-b453141a3d7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:20:25 GMT" + "Sat, 13 Feb 2021 04:01:33 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvZGU5MTNlOWMtZDc3NC00NDZiLTg5YjUtZDQ5ODM3MjhiMWQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/88a96eda-c79c-4808-b11f-9e196305c5f5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvODhhOTZlZGEtYzc5Yy00ODA4LWIxMWYtOWUxOTYzMDVjNWY1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f29f32dc-ef0d-4b6c-abf2-673cca466e4f" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1719,47 +1695,44 @@ "11981" ], "x-ms-request-id": [ - "a5530bbb-f14e-4735-ab8d-a5d2d7afe569" + "0f80c08d-e35b-4e18-b3c8-b130ad8f7846" ], "x-ms-correlation-request-id": [ - "a5530bbb-f14e-4735-ab8d-a5d2d7afe569" + "0f80c08d-e35b-4e18-b3c8-b130ad8f7846" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002026Z:a5530bbb-f14e-4735-ab8d-a5d2d7afe569" + "WESTUS2:20210213T040134Z:0f80c08d-e35b-4e18-b3c8-b130ad8f7846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:20:26 GMT" + "Sat, 13 Feb 2021 04:01:33 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/de913e9c-d774-446b-89b5-d4983728b1d0?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20de3e06-bf40-437e-8f59-73db721836e4" + "fd7bae79-8442-4e3b-ad69-2696f7502543" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1770,13 +1743,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/4243a93a-3930-4310-9760-07e2553238fc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4243a93a-3930-4310-9760-07e2553238fc?api-version=2021-01-15" ], "x-ms-request-id": [ - "9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8" + "4243a93a-3930-4310-9760-07e2553238fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,47 +1764,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "f8109e0b-c453-4d8f-897a-7be9cde4a23a" + "4526832a-1f90-4b77-8482-9284664e67f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002027Z:f8109e0b-c453-4d8f-897a-7be9cde4a23a" + "WESTUS2:20210213T040135Z:4526832a-1f90-4b77-8482-9284664e67f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:20:26 GMT" + "Sat, 13 Feb 2021 04:01:35 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lND9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d73281f-4ef4-4133-a63c-369b6be3678a" + "c7dd5244-6963-4769-8114-a50ad887649d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1842,13 +1812,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/28ee274e-a9eb-4c0a-b0e8-305e083f21c0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/28ee274e-a9eb-4c0a-b0e8-305e083f21c0?api-version=2021-01-15" ], "x-ms-request-id": [ - "ae5c6a58-56d9-47d6-9147-2cda6fd6457b" + "28ee274e-a9eb-4c0a-b0e8-305e083f21c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,41 +1833,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "ebb6f116-713b-4000-97d4-3b8d02a951dc" + "2756da6e-a3f4-4de4-8cc9-03aadfd40792" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002134Z:ebb6f116-713b-4000-97d4-3b8d02a951dc" + "WESTUS2:20210213T040238Z:2756da6e-a3f4-4de4-8cc9-03aadfd40792" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:21:33 GMT" + "Sat, 13 Feb 2021 04:02:37 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWExM2E5MGQtNGZkOC00NWU4LTllNGYtZjFhNWRhMDEzN2Y4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4243a93a-3930-4310-9760-07e2553238fc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDI0M2E5M2EtMzkzMC00MzEwLTk3NjAtMDdlMjU1MzIzOGZjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fd7bae79-8442-4e3b-ad69-2696f7502543" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1920,44 +1890,44 @@ "11999" ], "x-ms-request-id": [ - "2ab36ec0-a9c0-4d1a-aff8-09f72ff2f3df" + "ece0279b-0eab-4bdd-850f-8b70c4dabda3" ], "x-ms-correlation-request-id": [ - "2ab36ec0-a9c0-4d1a-aff8-09f72ff2f3df" + "ece0279b-0eab-4bdd-850f-8b70c4dabda3" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002058Z:2ab36ec0-a9c0-4d1a-aff8-09f72ff2f3df" + "WESTUS2:20210213T040205Z:ece0279b-0eab-4bdd-850f-8b70c4dabda3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:20:58 GMT" + "Sat, 13 Feb 2021 04:02:04 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzlhMTNhOTBkLTRmZDgtNDVlOC05ZTRmLWYxYTVkYTAxMzdmOD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/4243a93a-3930-4310-9760-07e2553238fc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzQyNDNhOTNhLTM5MzAtNDMxMC05NzYwLTA3ZTI1NTMyMzhmYz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fd7bae79-8442-4e3b-ad69-2696f7502543" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1980,41 +1950,41 @@ "11998" ], "x-ms-request-id": [ - "a349e461-1dc5-499b-a6ea-c53f3faad72f" + "887879a4-233e-4b52-9c32-8f5fda1fe8e8" ], "x-ms-correlation-request-id": [ - "a349e461-1dc5-499b-a6ea-c53f3faad72f" + "887879a4-233e-4b52-9c32-8f5fda1fe8e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002058Z:a349e461-1dc5-499b-a6ea-c53f3faad72f" + "WESTUS2:20210213T040205Z:887879a4-233e-4b52-9c32-8f5fda1fe8e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:20:58 GMT" + "Sat, 13 Feb 2021 04:02:04 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/9a13a90d-4fd8-45e8-9e4f-f1a5da0137f8?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjlkYzFjYTctZTY4ZS00YzdlLWI0ZDktN2I0ZmM2Y2VkZWRiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/86d44918-6dc3-4853-9666-3e96eead4c99?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODZkNDQ5MTgtNmRjMy00ODUzLTk2NjYtM2U5NmVlYWQ0Yzk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37dfec00-0fe2-4b09-87bf-1ca1ae170e97" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2034,47 +2004,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11981" ], "x-ms-request-id": [ - "55eada97-a05f-4979-9ab5-42a1a54e746a" + "3429187b-5f71-4171-9a84-de3ca7d8a366" ], "x-ms-correlation-request-id": [ - "55eada97-a05f-4979-9ab5-42a1a54e746a" + "3429187b-5f71-4171-9a84-de3ca7d8a366" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002133Z:55eada97-a05f-4979-9ab5-42a1a54e746a" + "WESTUS2:20210213T040237Z:3429187b-5f71-4171-9a84-de3ca7d8a366" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:21:33 GMT" + "Sat, 13 Feb 2021 04:02:36 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvZjlkYzFjYTctZTY4ZS00YzdlLWI0ZDktN2I0ZmM2Y2VkZWRiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/86d44918-6dc3-4853-9666-3e96eead4c99?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvODZkNDQ5MTgtNmRjMy00ODUzLTk2NjYtM2U5NmVlYWQ0Yzk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37dfec00-0fe2-4b09-87bf-1ca1ae170e97" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2094,44 +2064,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" ], "x-ms-request-id": [ - "0be58945-7691-4ced-b35e-454192b4c905" + "d47b7651-b026-4f20-999a-1e2ddef17e96" ], "x-ms-correlation-request-id": [ - "0be58945-7691-4ced-b35e-454192b4c905" + "d47b7651-b026-4f20-999a-1e2ddef17e96" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002133Z:0be58945-7691-4ced-b35e-454192b4c905" + "WESTUS2:20210213T040237Z:d47b7651-b026-4f20-999a-1e2ddef17e96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:21:33 GMT" + "Sat, 13 Feb 2021 04:02:36 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/graphs/graphName/operationResults/f9dc1ca7-e68e-4c7e-b4d9-7b4fc6cededb?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWU1YzZhNTgtNTZkOS00N2Q2LTkxNDctMmNkYTZmZDY0NTdiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/28ee274e-a9eb-4c0a-b0e8-305e083f21c0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjhlZTI3NGUtYTllYi00YzBhLWIwZTgtMzA1ZTA4M2YyMWMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c7dd5244-6963-4769-8114-a50ad887649d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2154,44 +2124,44 @@ "11999" ], "x-ms-request-id": [ - "80afe16a-41f0-40b9-b7fd-528cf95b1504" + "5e9dff00-9e7d-4a91-8ad9-1b25443a1776" ], "x-ms-correlation-request-id": [ - "80afe16a-41f0-40b9-b7fd-528cf95b1504" + "5e9dff00-9e7d-4a91-8ad9-1b25443a1776" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002204Z:80afe16a-41f0-40b9-b7fd-528cf95b1504" + "WESTUS2:20210213T040308Z:5e9dff00-9e7d-4a91-8ad9-1b25443a1776" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:04 GMT" + "Sat, 13 Feb 2021 04:03:08 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzL2FlNWM2YTU4LTU2ZDktNDdkNi05MTQ3LTJjZGE2ZmQ2NDU3Yj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/28ee274e-a9eb-4c0a-b0e8-305e083f21c0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lNC9vcGVyYXRpb25SZXN1bHRzLzI4ZWUyNzRlLWE5ZWItNGMwYS1iMGU4LTMwNWUwODNmMjFjMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c7dd5244-6963-4769-8114-a50ad887649d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2214,25 +2184,22 @@ "11998" ], "x-ms-request-id": [ - "81a2e15b-428d-4f19-b7d2-2191e3bfb511" + "26fb1323-d779-43e1-9869-41930a105ac4" ], "x-ms-correlation-request-id": [ - "81a2e15b-428d-4f19-b7d2-2191e3bfb511" + "26fb1323-d779-43e1-9869-41930a105ac4" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002204Z:81a2e15b-428d-4f19-b7d2-2191e3bfb511" + "WESTUS2:20210213T040308Z:26fb1323-d779-43e1-9869-41930a105ac4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:04 GMT" + "Sat, 13 Feb 2021 04:03:08 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName4/operationResults/ae5c6a58-56d9-47d6-9147-2cda6fd6457b?api-version=2020-04-01" ] }, "ResponseBody": "", 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 dc29ad2bd3ec..8112564ca08c 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3da64d55-ff4c-4b05-b83a-046728b55398" + "717310ab-306d-46f3-b45c-d1bce4bf9725" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "d2a3054b-cfb8-499d-b489-fcee8915fca6" + "e2544285-8197-4f22-90e8-4a5151092152" ], "x-ms-correlation-request-id": [ - "d2a3054b-cfb8-499d-b489-fcee8915fca6" + "e2544285-8197-4f22-90e8-4a5151092152" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031009Z:d2a3054b-cfb8-499d-b489-fcee8915fca6" + "WESTUS2:20210213T035201Z:e2544285-8197-4f22-90e8-4a5151092152" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:09 GMT" + "Sat, 13 Feb 2021 03:52:00 GMT" ], "Content-Length": [ - "1709" + "1778" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 3da64d55-ff4c-4b05-b83a-046728b55398, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:10:09.7659035Z, RequestEndTime: 2020-06-10T03:10:09.7659035Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:10:09.7659035Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, LSN: 289, GlobalCommittedLsn: 289, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#289, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:10:09.7659035Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, LSN: 289, GlobalCommittedLsn: 289, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#289, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 717310ab-306d-46f3-b45c-d1bce4bf9725, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:52:01.3990698Z, RequestEndTime: 2021-02-13T03:52:01.3990698Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:52:01.3990698Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1648, GlobalCommittedLsn: 1648, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1648, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:52:01.3990698Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1648, GlobalCommittedLsn: 1648, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1648, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "717310ab-306d-46f3-b45c-d1bce4bf9725" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "243ad4f0-1d27-48ce-a23d-925157fdb9ea" + "9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" ], "x-ms-correlation-request-id": [ - "243ad4f0-1d27-48ce-a23d-925157fdb9ea" + "9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031040Z:243ad4f0-1d27-48ce-a23d-925157fdb9ea" + "WESTUS2:20210213T035232Z:9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:40 GMT" + "Sat, 13 Feb 2021 03:52:32 GMT" ], "Content-Length": [ "448" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAA==\",\r\n \"_self\": \"dbs/zD0wAA==/\",\r\n \"_etag\": \"\\\"0000d300-0000-0100-0000-5ee04f150000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758613\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9066d295-8802-4509-906b-789804fafc93" + "4f655b53-6cad-4709-96f7-9a4f13cf4bef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "556d2b83-68a4-49d0-8a14-4d5dfd4281cd" + "c8d0fed6-8514-4fa4-8a92-c6303642efbe" ], "x-ms-correlation-request-id": [ - "556d2b83-68a4-49d0-8a14-4d5dfd4281cd" + "c8d0fed6-8514-4fa4-8a92-c6303642efbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031041Z:556d2b83-68a4-49d0-8a14-4d5dfd4281cd" + "WESTUS2:20210213T035232Z:c8d0fed6-8514-4fa4-8a92-c6303642efbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:40 GMT" + "Sat, 13 Feb 2021 03:52:32 GMT" ], "Content-Length": [ "448" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAA==\",\r\n \"_self\": \"dbs/zD0wAA==/\",\r\n \"_etag\": \"\\\"0000d300-0000-0100-0000-5ee04f150000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758613\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "927cea2e-81f0-4ab6-97e2-e0396a9f4670" + "c9864cf9-fb67-4a9d-bbd0-2c0c70f153ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,44 +225,44 @@ "11988" ], "x-ms-request-id": [ - "e087ac66-b325-49a0-8622-f5b07ce187c8" + "53bef74c-6050-4278-ad96-ff4fc914fd4f" ], "x-ms-correlation-request-id": [ - "e087ac66-b325-49a0-8622-f5b07ce187c8" + "53bef74c-6050-4278-ad96-ff4fc914fd4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031144Z:e087ac66-b325-49a0-8622-f5b07ce187c8" + "WESTUS2:20210213T035335Z:53bef74c-6050-4278-ad96-ff4fc914fd4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:43 GMT" + "Sat, 13 Feb 2021 03:53:35 GMT" ], "Content-Length": [ "448" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAA==\",\r\n \"_self\": \"dbs/zD0wAA==/\",\r\n \"_etag\": \"\\\"0000d300-0000-0100-0000-5ee04f150000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758613\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4474eda2-8dba-4eff-bc12-e0941c1eddfc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -291,50 +285,47 @@ "11985" ], "x-ms-request-id": [ - "b821ef93-5951-4682-af01-bee9d605729b" + "b42ac560-2c4c-460a-9df5-872485b227d2" ], "x-ms-correlation-request-id": [ - "b821ef93-5951-4682-af01-bee9d605729b" + "b42ac560-2c4c-460a-9df5-872485b227d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031215Z:b821ef93-5951-4682-af01-bee9d605729b" + "WESTUS2:20210213T035406Z:b42ac560-2c4c-460a-9df5-872485b227d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:14 GMT" + "Sat, 13 Feb 2021 03:54:06 GMT" ], "Content-Length": [ "448" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAA==\",\r\n \"_self\": \"dbs/zD0wAA==/\",\r\n \"_etag\": \"\\\"0000d300-0000-0100-0000-5ee04f150000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758613\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "be6d1be3-e465-4109-beed-3abd33b54151" + "717310ab-306d-46f3-b45c-d1bce4bf9725" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -351,13 +342,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/d2613417-1ba7-4a5d-8c31-86f0bf083169?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d2613417-1ba7-4a5d-8c31-86f0bf083169?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15" ], "x-ms-request-id": [ - "d2613417-1ba7-4a5d-8c31-86f0bf083169" + "38d9fc3a-5b29-4d56-bf07-9d571adc6687" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -372,47 +363,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "53da814e-76b4-4a98-9ff6-56e3c85edb29" + "ca3c52ef-0f72-4e21-af91-c87fa0e5e12b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031010Z:53da814e-76b4-4a98-9ff6-56e3c85edb29" + "WESTUS2:20210213T035202Z:ca3c52ef-0f72-4e21-af91-c87fa0e5e12b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:09 GMT" + "Sat, 13 Feb 2021 03:52:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "c904c14b-e220-4906-810c-f3d38e6d0cd2" + "4474eda2-8dba-4eff-bc12-e0941c1eddfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -429,13 +417,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/3086466f-c602-4cb5-b85b-6cecacdbc30b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3086466f-c602-4cb5-b85b-6cecacdbc30b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15" ], "x-ms-request-id": [ - "3086466f-c602-4cb5-b85b-6cecacdbc30b" + "db2e031a-b1f8-4352-9957-c7f215923a72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,41 +438,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "60dd7569-072b-4972-99d6-f6ad5da0a235" + "0beaccb3-a51a-42ad-ba6f-7d6e9267b363" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031144Z:60dd7569-072b-4972-99d6-f6ad5da0a235" + "WESTUS2:20210213T035336Z:0beaccb3-a51a-42ad-ba6f-7d6e9267b363" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:44 GMT" + "Sat, 13 Feb 2021 03:53:35 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d2613417-1ba7-4a5d-8c31-86f0bf083169?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI2MTM0MTctMWJhNy00YTVkLThjMzEtODZmMGJmMDgzMTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzhkOWZjM2EtNWIyOS00ZDU2LWJmMDctOWQ1NzFhZGM2Njg3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "717310ab-306d-46f3-b45c-d1bce4bf9725" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -507,50 +495,47 @@ "11998" ], "x-ms-request-id": [ - "5f67d38a-1306-4171-9b72-09c9c53b2235" + "11317510-3e84-4521-b505-9006f4418006" ], "x-ms-correlation-request-id": [ - "5f67d38a-1306-4171-9b72-09c9c53b2235" + "11317510-3e84-4521-b505-9006f4418006" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031040Z:5f67d38a-1306-4171-9b72-09c9c53b2235" + "WESTUS2:20210213T035232Z:11317510-3e84-4521-b505-9006f4418006" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:39 GMT" + "Sat, 13 Feb 2021 03:52:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d2613417-1ba7-4a5d-8c31-86f0bf083169?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79ed11e5-2011-4847-8ef6-19d47752664f" + "30b11c74-38c8-422e-a981-2d075e5b363c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -573,44 +558,44 @@ "11995" ], "x-ms-request-id": [ - "58b3bf92-dfb7-48e0-b904-6763e2423396" + "f3c29789-36d0-4985-a42b-3e7c98168952" ], "x-ms-correlation-request-id": [ - "58b3bf92-dfb7-48e0-b904-6763e2423396" + "f3c29789-36d0-4985-a42b-3e7c98168952" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031041Z:58b3bf92-dfb7-48e0-b904-6763e2423396" + "WESTUS2:20210213T035233Z:f3c29789-36d0-4985-a42b-3e7c98168952" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:40 GMT" + "Sat, 13 Feb 2021 03:52:32 GMT" ], "Content-Length": [ - "1726" + "1795" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 79ed11e5-2011-4847-8ef6-19d47752664f, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:10:41.3525466Z, RequestEndTime: 2020-06-10T03:10:41.3525466Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:10:41.3525466Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, LSN: 290, GlobalCommittedLsn: 290, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#290, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:10:41.3525466Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, LSN: 290, GlobalCommittedLsn: 290, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#290, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 30b11c74-38c8-422e-a981-2d075e5b363c, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:52:32.9892906Z, RequestEndTime: 2021-02-13T03:52:32.9992813Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:52:32.9992813Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1649, GlobalCommittedLsn: 1649, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1649, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:52:32.9992813Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1649, GlobalCommittedLsn: 1649, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1649, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "30b11c74-38c8-422e-a981-2d075e5b363c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -633,50 +618,47 @@ "11993" ], "x-ms-request-id": [ - "197fd5bd-9484-401e-bbef-9cc9cadbd88d" + "eb0c0020-cfeb-48b0-8174-e77747f76458" ], "x-ms-correlation-request-id": [ - "197fd5bd-9484-401e-bbef-9cc9cadbd88d" + "eb0c0020-cfeb-48b0-8174-e77747f76458" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031112Z:197fd5bd-9484-401e-bbef-9cc9cadbd88d" + "WESTUS2:20210213T035304Z:eb0c0020-cfeb-48b0-8174-e77747f76458" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:12 GMT" + "Sat, 13 Feb 2021 03:53:03 GMT" ], "Content-Length": [ - "1434" + "1465" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b27038c2-ecc5-49eb-9a2b-9f4349a31097" + "05853f81-a817-4b9a-ad6f-abe7844d43f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -699,50 +681,47 @@ "11992" ], "x-ms-request-id": [ - "f0384646-a046-4afb-a294-7e11fa97fadc" + "8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" ], "x-ms-correlation-request-id": [ - "f0384646-a046-4afb-a294-7e11fa97fadc" + "8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031113Z:f0384646-a046-4afb-a294-7e11fa97fadc" + "WESTUS2:20210213T035304Z:8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:12 GMT" + "Sat, 13 Feb 2021 03:53:03 GMT" ], "Content-Length": [ - "1434" + "1465" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9638b6e-0b7e-4123-853d-be68310e5d24" + "a0ba8bde-c3d2-4367-a539-40b49b306fdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -765,50 +744,47 @@ "11987" ], "x-ms-request-id": [ - "6d5bccea-e68a-48b6-9912-3d6dabb7659e" + "415cea43-670f-448e-9437-3faaf50f1038" ], "x-ms-correlation-request-id": [ - "6d5bccea-e68a-48b6-9912-3d6dabb7659e" + "415cea43-670f-448e-9437-3faaf50f1038" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031144Z:6d5bccea-e68a-48b6-9912-3d6dabb7659e" + "WESTUS2:20210213T035335Z:415cea43-670f-448e-9437-3faaf50f1038" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:44 GMT" + "Sat, 13 Feb 2021 03:53:35 GMT" ], "Content-Length": [ - "1434" + "1465" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7ead5ca-3650-49f7-ad6b-12c5ba9b32f6" + "67a83ab2-e2cd-46e7-911a-b4715e70f732" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -831,44 +807,44 @@ "11984" ], "x-ms-request-id": [ - "622ef8b0-319e-4845-a382-37a674c7d807" + "f3b97859-c394-4e21-b736-16d712745ae2" ], "x-ms-correlation-request-id": [ - "622ef8b0-319e-4845-a382-37a674c7d807" + "f3b97859-c394-4e21-b736-16d712745ae2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031215Z:622ef8b0-319e-4845-a382-37a674c7d807" + "WESTUS2:20210213T035407Z:f3b97859-c394-4e21-b736-16d712745ae2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:15 GMT" + "Sat, 13 Feb 2021 03:54:06 GMT" ], "Content-Length": [ - "1436" + "1465" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "67a83ab2-e2cd-46e7-911a-b4715e70f732" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -891,50 +867,47 @@ "11982" ], "x-ms-request-id": [ - "7446a65f-b43b-4c63-8e40-dec79ff998a2" + "436ad674-1924-4fa5-a8b8-c08ac5389611" ], "x-ms-correlation-request-id": [ - "7446a65f-b43b-4c63-8e40-dec79ff998a2" + "436ad674-1924-4fa5-a8b8-c08ac5389611" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031246Z:7446a65f-b43b-4c63-8e40-dec79ff998a2" + "WESTUS2:20210213T035437Z:436ad674-1924-4fa5-a8b8-c08ac5389611" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:45 GMT" + "Sat, 13 Feb 2021 03:54:37 GMT" ], "Content-Length": [ - "1434" + "1465" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "368d0acb-1973-4496-8ef8-c4ab553001a8" + "30b11c74-38c8-422e-a981-2d075e5b363c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -951,13 +924,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/b1ca6e77-2f19-4a8b-a825-553a803d1215?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1ca6e77-2f19-4a8b-a825-553a803d1215?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15" ], "x-ms-request-id": [ - "b1ca6e77-2f19-4a8b-a825-553a803d1215" + "5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,47 +945,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "de134ee2-14a7-42d4-afa3-82e42e1da2c6" + "9ac4e6d6-4f2a-412b-af35-cb18e323e25d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031041Z:de134ee2-14a7-42d4-afa3-82e42e1da2c6" + "WESTUS2:20210213T035233Z:9ac4e6d6-4f2a-412b-af35-cb18e323e25d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:41 GMT" + "Sat, 13 Feb 2021 03:52:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "35c1babe-b39d-4d16-b131-31a24954a13c" + "67a83ab2-e2cd-46e7-911a-b4715e70f732" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,13 +999,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/e5a2322d-0052-4401-8fef-a9c8e72beb6e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e5a2322d-0052-4401-8fef-a9c8e72beb6e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15" ], "x-ms-request-id": [ - "e5a2322d-0052-4401-8fef-a9c8e72beb6e" + "439a4f0e-3c49-4b2b-a631-52a565cb2ad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,41 +1020,41 @@ "1195" ], "x-ms-correlation-request-id": [ - "25c0a842-1d16-4279-9b71-a0dc01ba26a2" + "08cd27f1-f14a-4809-9491-5c5aaf0e26f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031216Z:25c0a842-1d16-4279-9b71-a0dc01ba26a2" + "WESTUS2:20210213T035407Z:08cd27f1-f14a-4809-9491-5c5aaf0e26f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:15 GMT" + "Sat, 13 Feb 2021 03:54:07 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1ca6e77-2f19-4a8b-a825-553a803d1215?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjFjYTZlNzctMmYxOS00YThiLWE4MjUtNTUzYTgwM2QxMjE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTk3MGFkNjgtZjdmZS00OGUyLWIxYzMtYmE1ZmQ0ZGY1ZTA0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "30b11c74-38c8-422e-a981-2d075e5b363c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1107,50 +1077,47 @@ "11994" ], "x-ms-request-id": [ - "4bb0d0e8-d715-4fa7-8509-e50bd3ebd814" + "c978821f-cb09-447a-a6b1-dcb9232c9116" ], "x-ms-correlation-request-id": [ - "4bb0d0e8-d715-4fa7-8509-e50bd3ebd814" + "c978821f-cb09-447a-a6b1-dcb9232c9116" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031112Z:4bb0d0e8-d715-4fa7-8509-e50bd3ebd814" + "WESTUS2:20210213T035303Z:c978821f-cb09-447a-a6b1-dcb9232c9116" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:12 GMT" + "Sat, 13 Feb 2021 03:53:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1ca6e77-2f19-4a8b-a825-553a803d1215?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ec52f4a-d1fb-40f0-8122-59abe4e24cde" + "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,13 +1134,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/563a4cf3-fb22-4318-a5f6-d79e250c38c8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/563a4cf3-fb22-4318-a5f6-d79e250c38c8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15" ], "x-ms-request-id": [ - "563a4cf3-fb22-4318-a5f6-d79e250c38c8" + "992fbd7f-e316-4061-9a39-d40acb0d2e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,41 +1155,41 @@ "1197" ], "x-ms-correlation-request-id": [ - "86b92fa9-22b5-4981-b658-3bc70748e190" + "bb7ca61a-8258-4456-ad5e-f7804436397d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031113Z:86b92fa9-22b5-4981-b658-3bc70748e190" + "WESTUS2:20210213T035304Z:bb7ca61a-8258-4456-ad5e-f7804436397d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:13 GMT" + "Sat, 13 Feb 2021 03:53:03 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/563a4cf3-fb22-4318-a5f6-d79e250c38c8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTYzYTRjZjMtZmIyMi00MzE4LWE1ZjYtZDc5ZTI1MGMzOGM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyZmJkN2YtZTMxNi00MDYxLTlhMzktZDQwYWNiMGQyZTk2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1245,44 +1212,44 @@ "11991" ], "x-ms-request-id": [ - "5f9b0ee7-9b6c-474b-96c7-12a4be119e62" + "4e715206-f153-4c59-a6fe-0fd8759753f1" ], "x-ms-correlation-request-id": [ - "5f9b0ee7-9b6c-474b-96c7-12a4be119e62" + "4e715206-f153-4c59-a6fe-0fd8759753f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031143Z:5f9b0ee7-9b6c-474b-96c7-12a4be119e62" + "WESTUS2:20210213T035334Z:4e715206-f153-4c59-a6fe-0fd8759753f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:43 GMT" + "Sat, 13 Feb 2021 03:53:34 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/563a4cf3-fb22-4318-a5f6-d79e250c38c8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1305,50 +1272,47 @@ "11990" ], "x-ms-request-id": [ - "fb3a00ae-1526-4f18-831d-8ad2549220b9" + "750799a1-bdda-4c2c-90ae-f71e5ebf4d82" ], "x-ms-correlation-request-id": [ - "fb3a00ae-1526-4f18-831d-8ad2549220b9" + "750799a1-bdda-4c2c-90ae-f71e5ebf4d82" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031143Z:fb3a00ae-1526-4f18-831d-8ad2549220b9" + "WESTUS2:20210213T035335Z:750799a1-bdda-4c2c-90ae-f71e5ebf4d82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:43 GMT" + "Sat, 13 Feb 2021 03:53:34 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"uFNjAA==\",\r\n \"_self\": \"dbs/uFNjAA==/\",\r\n \"_etag\": \"\\\"0000d900-0000-0100-0000-5ee04f550000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758677\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"7j8MAA==\",\r\n \"_self\": \"dbs/7j8MAA==/\",\r\n \"_etag\": \"\\\"00000b1c-0000-0100-0000-602731ec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181420\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "588ff681-52bc-4369-bbf9-885d4cb99001" + "bc5db3c5-24a6-42c8-80fe-42990dc76ede" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1371,44 +1335,44 @@ "11989" ], "x-ms-request-id": [ - "553c4fd4-e74b-442f-b25b-050e806ee40a" + "41de5828-9076-4c71-a49d-00b85859b07d" ], "x-ms-correlation-request-id": [ - "553c4fd4-e74b-442f-b25b-050e806ee40a" + "41de5828-9076-4c71-a49d-00b85859b07d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031144Z:553c4fd4-e74b-442f-b25b-050e806ee40a" + "WESTUS2:20210213T035335Z:41de5828-9076-4c71-a49d-00b85859b07d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:11:43 GMT" + "Sat, 13 Feb 2021 03:53:34 GMT" ], "Content-Length": [ - "1726" + "1795" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 588ff681-52bc-4369-bbf9-885d4cb99001, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:11:44.0938494Z, RequestEndTime: 2020-06-10T03:11:44.0938494Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:11:44.0938494Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, LSN: 292, GlobalCommittedLsn: 292, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#292, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:11:44.0938494Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, LSN: 292, GlobalCommittedLsn: 292, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#292, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: bc5db3c5-24a6-42c8-80fe-42990dc76ede, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:53:35.3995852Z, RequestEndTime: 2021-02-13T03:53:35.4095911Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:53:35.4095911Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1650, GlobalCommittedLsn: 1650, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1650, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:53:35.4095911Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1650, GlobalCommittedLsn: 1650, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1650, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3086466f-c602-4cb5-b85b-6cecacdbc30b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzA4NjQ2NmYtYzYwMi00Y2I1LWI4NWItNmNlY2FjZGJjMzBiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGIyZTAzMWEtYjFmOC00MzUyLTk5NTctYzdmMjE1OTIzYTcyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4474eda2-8dba-4eff-bc12-e0941c1eddfc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1431,44 +1395,44 @@ "11986" ], "x-ms-request-id": [ - "eab03f08-57c0-469c-9b7a-d3fa7c43741a" + "8898a74a-7c04-49b1-b3fd-2b357682486f" ], "x-ms-correlation-request-id": [ - "eab03f08-57c0-469c-9b7a-d3fa7c43741a" + "8898a74a-7c04-49b1-b3fd-2b357682486f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031215Z:eab03f08-57c0-469c-9b7a-d3fa7c43741a" + "WESTUS2:20210213T035406Z:8898a74a-7c04-49b1-b3fd-2b357682486f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:14 GMT" + "Sat, 13 Feb 2021 03:54:06 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3086466f-c602-4cb5-b85b-6cecacdbc30b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e5a2322d-0052-4401-8fef-a9c8e72beb6e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTVhMjMyMmQtMDA1Mi00NDAxLThmZWYtYTljOGU3MmJlYjZlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDM5YTRmMGUtM2M0OS00YjJiLWE2MzEtNTJhNTY1Y2IyYWQzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "67a83ab2-e2cd-46e7-911a-b4715e70f732" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1491,50 +1455,47 @@ "11983" ], "x-ms-request-id": [ - "44a955a0-e56b-4ad7-b0bf-dd4b28248d51" + "d2580b17-24ef-4e4c-8c9b-8251d170c10d" ], "x-ms-correlation-request-id": [ - "44a955a0-e56b-4ad7-b0bf-dd4b28248d51" + "d2580b17-24ef-4e4c-8c9b-8251d170c10d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031246Z:44a955a0-e56b-4ad7-b0bf-dd4b28248d51" + "WESTUS2:20210213T035437Z:d2580b17-24ef-4e4c-8c9b-8251d170c10d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:45 GMT" + "Sat, 13 Feb 2021 03:54:37 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e5a2322d-0052-4401-8fef-a9c8e72beb6e?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6a9387b-bc9a-43bb-8fb8-ef57ccb522b1" + "3e63a783-d3d8-44c6-ac2d-299a11855a57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1557,50 +1518,47 @@ "11981" ], "x-ms-request-id": [ - "ade39274-b5d2-45a1-ba1c-3b8960adb2d8" + "7d20d68b-f735-4f35-b765-c3b5c7eab685" ], "x-ms-correlation-request-id": [ - "ade39274-b5d2-45a1-ba1c-3b8960adb2d8" + "7d20d68b-f735-4f35-b765-c3b5c7eab685" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031246Z:ade39274-b5d2-45a1-ba1c-3b8960adb2d8" + "WESTUS2:20210213T035438Z:7d20d68b-f735-4f35-b765-c3b5c7eab685" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:46 GMT" + "Sat, 13 Feb 2021 03:54:37 GMT" ], "Content-Length": [ - "1370" + "1401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAIEIyL4=\",\r\n \"_ts\": 1591758646,\r\n \"_self\": \"dbs/zD0wAA==/colls/zD0wAIEIyL4=/\",\r\n \"_etag\": \"\\\"0000d500-0000-0100-0000-5ee04f360000\\\"\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a17604d-21a2-45de-bc68-fb7db836377a" + "30b26551-6af7-4d0b-a28c-db2bebce0f0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1623,50 +1581,47 @@ "11980" ], "x-ms-request-id": [ - "19b9cc8e-f22e-4813-ae87-f39acf96596a" + "8ad27364-0264-49ef-a18f-486d8898267d" ], "x-ms-correlation-request-id": [ - "19b9cc8e-f22e-4813-ae87-f39acf96596a" + "8ad27364-0264-49ef-a18f-486d8898267d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031247Z:19b9cc8e-f22e-4813-ae87-f39acf96596a" + "WESTUS2:20210213T035438Z:8ad27364-0264-49ef-a18f-486d8898267d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:46 GMT" + "Sat, 13 Feb 2021 03:54:37 GMT" ], "Content-Length": [ - "912" + "1364" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"zD0wAA==\",\r\n \"_self\": \"dbs/zD0wAA==/\",\r\n \"_etag\": \"\\\"0000d300-0000-0100-0000-5ee04f150000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758613\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"uFNjAA==\",\r\n \"_self\": \"dbs/uFNjAA==/\",\r\n \"_etag\": \"\\\"0000d900-0000-0100-0000-5ee04f550000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591758677\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"7j8MAA==\",\r\n \"_self\": \"dbs/7j8MAA==/\",\r\n \"_etag\": \"\\\"00000b1c-0000-0100-0000-602731ec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181420\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"ssFhAA==\",\r\n \"_self\": \"dbs/ssFhAA==/\",\r\n \"_etag\": \"\\\"0000161c-0000-0100-0000-602732cf0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181648\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79267bae-3215-414c-891f-1eba9b087680" + "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1677,13 +1632,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15" ], "x-ms-request-id": [ - "653246f1-49a1-431b-8779-56bbccf27cde" + "139968a2-05d9-4ca4-b22c-a10c8c605d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,47 +1653,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "a297756c-a71b-48c2-9718-b5f5f3600a48" + "bb1ce188-52d7-42ab-be04-d1f9384be3f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031247Z:a297756c-a71b-48c2-9718-b5f5f3600a48" + "WESTUS2:20210213T035438Z:bb1ce188-52d7-42ab-be04-d1f9384be3f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:12:46 GMT" + "Sat, 13 Feb 2021 03:54:38 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddbbdaa3-1900-4eb8-87f9-8c6de1d53717" + "509dbff0-75b8-459b-b0ab-1a33987b4d2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1749,13 +1701,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15" ], "x-ms-request-id": [ - "66bfef6d-54f7-4f50-89ff-ece85fb15297" + "ef13623c-f00b-4293-9714-68ca5f2e235f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,41 +1722,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "c6007db5-1ac0-4830-aa27-c7a649e4ad87" + "0d996134-96c2-420a-b689-25b7c3085567" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031349Z:c6007db5-1ac0-4830-aa27-c7a649e4ad87" + "WESTUS2:20210213T035542Z:0d996134-96c2-420a-b689-25b7c3085567" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:48 GMT" + "Sat, 13 Feb 2021 03:55:41 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjUzMjQ2ZjEtNDlhMS00MzFiLTg3NzktNTZiYmNjZjI3Y2RlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTM5OTY4YTItMDVkOS00Y2E0LWIyMmMtYTEwYzhjNjA1ZDk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1827,44 +1779,44 @@ "11979" ], "x-ms-request-id": [ - "e4ec71ee-8dc1-42c7-a370-9c065cd0e70d" + "3f4e3438-429e-4e7b-9ace-270325fd0ffe" ], "x-ms-correlation-request-id": [ - "e4ec71ee-8dc1-42c7-a370-9c065cd0e70d" + "3f4e3438-429e-4e7b-9ace-270325fd0ffe" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031317Z:e4ec71ee-8dc1-42c7-a370-9c065cd0e70d" + "WESTUS2:20210213T035508Z:3f4e3438-429e-4e7b-9ace-270325fd0ffe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:17 GMT" + "Sat, 13 Feb 2021 03:55:08 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy82NTMyNDZmMS00OWExLTQzMWItODc3OS01NmJiY2NmMjdjZGU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy8xMzk5NjhhMi0wNWQ5LTRjYTQtYjIyYy1hMTBjOGM2MDVkOTk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1887,47 +1839,44 @@ "11978" ], "x-ms-request-id": [ - "4f959706-e746-4db2-a4e1-21d51e16ba42" + "185e66e2-49f8-4cdd-84a3-9e07e6e9193f" ], "x-ms-correlation-request-id": [ - "4f959706-e746-4db2-a4e1-21d51e16ba42" + "185e66e2-49f8-4cdd-84a3-9e07e6e9193f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031317Z:4f959706-e746-4db2-a4e1-21d51e16ba42" + "WESTUS2:20210213T035509Z:185e66e2-49f8-4cdd-84a3-9e07e6e9193f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:17 GMT" + "Sat, 13 Feb 2021 03:55:09 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/653246f1-49a1-431b-8779-56bbccf27cde?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e055387-5021-4a70-a50d-e49d55271183" + "502a2d8b-3cd5-4102-97c6-0732c437d35e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1938,13 +1887,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15" ], "x-ms-request-id": [ - "1a0ba171-4581-4076-9eb9-86966a90d054" + "0d18d2de-3c0a-46cd-81f5-b2ced21509de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,47 +1908,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "88f82b77-2e06-4f9d-8b2b-271349baa6b5" + "99bdb8ba-d79c-404a-89c4-88172761978c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031318Z:88f82b77-2e06-4f9d-8b2b-271349baa6b5" + "WESTUS2:20210213T035510Z:99bdb8ba-d79c-404a-89c4-88172761978c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:17 GMT" + "Sat, 13 Feb 2021 03:55:09 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64caf4a2-471e-40a9-a61b-55e10d25c78b" + "75fa53e8-fbf2-43e3-8835-fb61440fd222" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2010,13 +1956,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15" ], "x-ms-request-id": [ - "5ad1aa5e-5727-4c8e-ad2b-5598be15449c" + "b9f1fd54-f0b1-4f1e-8584-cf14b0720207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,41 +1977,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "9bf1bbda-c06f-4b0a-bf89-0eaebb65e8e7" + "d2539e97-d274-4efa-b082-66a04aaf7094" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031421Z:9bf1bbda-c06f-4b0a-bf89-0eaebb65e8e7" + "WESTUS2:20210213T035613Z:d2539e97-d274-4efa-b082-66a04aaf7094" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:14:20 GMT" + "Sat, 13 Feb 2021 03:56:13 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWEwYmExNzEtNDU4MS00MDc2LTllYjktODY5NjZhOTBkMDU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGQxOGQyZGUtM2MwYS00NmNkLTgxZjUtYjJjZWQyMTUwOWRlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "502a2d8b-3cd5-4102-97c6-0732c437d35e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,44 +2034,44 @@ "11999" ], "x-ms-request-id": [ - "1ed033c3-278a-4e5a-aae4-eebc44474ffc" + "ed056e35-d7b5-4c2f-84f3-01d996af620a" ], "x-ms-correlation-request-id": [ - "1ed033c3-278a-4e5a-aae4-eebc44474ffc" + "ed056e35-d7b5-4c2f-84f3-01d996af620a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031348Z:1ed033c3-278a-4e5a-aae4-eebc44474ffc" + "WESTUS2:20210213T035540Z:ed056e35-d7b5-4c2f-84f3-01d996af620a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:48 GMT" + "Sat, 13 Feb 2021 03:55:39 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvMWEwYmExNzEtNDU4MS00MDc2LTllYjktODY5NjZhOTBkMDU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvMGQxOGQyZGUtM2MwYS00NmNkLTgxZjUtYjJjZWQyMTUwOWRlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "502a2d8b-3cd5-4102-97c6-0732c437d35e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,41 +2094,41 @@ "11998" ], "x-ms-request-id": [ - "e9ea0eda-4f9f-499f-bf9d-00a885cd29f1" + "ee0bad48-999c-483f-b004-97bd2624ec40" ], "x-ms-correlation-request-id": [ - "e9ea0eda-4f9f-499f-bf9d-00a885cd29f1" + "ee0bad48-999c-483f-b004-97bd2624ec40" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031348Z:e9ea0eda-4f9f-499f-bf9d-00a885cd29f1" + "WESTUS2:20210213T035540Z:ee0bad48-999c-483f-b004-97bd2624ec40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:13:48 GMT" + "Sat, 13 Feb 2021 03:55:40 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/1a0ba171-4581-4076-9eb9-86966a90d054?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjZiZmVmNmQtNTRmNy00ZjUwLTg5ZmYtZWNlODVmYjE1Mjk3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWYxMzYyM2MtZjAwYi00MjkzLTk3MTQtNjhjYTVmMmUyMzVmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "509dbff0-75b8-459b-b0ab-1a33987b4d2e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2205,44 +2151,44 @@ "11999" ], "x-ms-request-id": [ - "6883406f-82d8-4174-a66b-11ea7d6f6d06" + "2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" ], "x-ms-correlation-request-id": [ - "6883406f-82d8-4174-a66b-11ea7d6f6d06" + "2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031420Z:6883406f-82d8-4174-a66b-11ea7d6f6d06" + "WESTUS2:20210213T035612Z:2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:14:20 GMT" + "Sat, 13 Feb 2021 03:56:11 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy82NmJmZWY2ZC01NGY3LTRmNTAtODlmZi1lY2U4NWZiMTUyOTc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy9lZjEzNjIzYy1mMDBiLTQyOTMtOTcxNC02OGNhNWYyZTIzNWY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "509dbff0-75b8-459b-b0ab-1a33987b4d2e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2265,41 +2211,41 @@ "11998" ], "x-ms-request-id": [ - "f4f4cbf7-fbd0-4960-af59-df163a3321be" + "6ef16edd-458c-44c5-a565-62a7dceeba9d" ], "x-ms-correlation-request-id": [ - "f4f4cbf7-fbd0-4960-af59-df163a3321be" + "6ef16edd-458c-44c5-a565-62a7dceeba9d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031420Z:f4f4cbf7-fbd0-4960-af59-df163a3321be" + "WESTUS2:20210213T035612Z:6ef16edd-458c-44c5-a565-62a7dceeba9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:14:20 GMT" + "Sat, 13 Feb 2021 03:56:11 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/66bfef6d-54f7-4f50-89ff-ece85fb15297?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWFkMWFhNWUtNTcyNy00YzhlLWFkMmItNTU5OGJlMTU0NDljP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjlmMWZkNTQtZjBiMS00ZjFlLTg1ODQtY2YxNGIwNzIwMjA3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75fa53e8-fbf2-43e3-8835-fb61440fd222" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2322,44 +2268,44 @@ "11999" ], "x-ms-request-id": [ - "4de33603-b984-4e1f-ae7b-37d46fe0192b" + "3a2097c2-eafc-43c3-b6d2-3e31be654901" ], "x-ms-correlation-request-id": [ - "4de33603-b984-4e1f-ae7b-37d46fe0192b" + "3a2097c2-eafc-43c3-b6d2-3e31be654901" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031451Z:4de33603-b984-4e1f-ae7b-37d46fe0192b" + "WESTUS2:20210213T035644Z:3a2097c2-eafc-43c3-b6d2-3e31be654901" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:14:50 GMT" + "Sat, 13 Feb 2021 03:56:43 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvNWFkMWFhNWUtNTcyNy00YzhlLWFkMmItNTU5OGJlMTU0NDljP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvYjlmMWZkNTQtZjBiMS00ZjFlLTg1ODQtY2YxNGIwNzIwMjA3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75fa53e8-fbf2-43e3-8835-fb61440fd222" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2382,25 +2328,22 @@ "11998" ], "x-ms-request-id": [ - "14d00eea-acf0-4a8e-907f-2c4754542823" + "bd4ce414-cbaf-4541-998e-3e720ef2f182" ], "x-ms-correlation-request-id": [ - "14d00eea-acf0-4a8e-907f-2c4754542823" + "bd4ce414-cbaf-4541-998e-3e720ef2f182" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031451Z:14d00eea-acf0-4a8e-907f-2c4754542823" + "WESTUS2:20210213T035644Z:bd4ce414-cbaf-4541-998e-3e720ef2f182" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:14:50 GMT" + "Sat, 13 Feb 2021 03:56:43 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/5ad1aa5e-5727-4c8e-ad2b-5598be15449c?api-version=2020-04-01" ] }, "ResponseBody": "", 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 f1a7b92457fe..f53ac5006aa6 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3ed307b-ab58-42df-93e7-cecf3b124651" + "685eb7b3-01ee-4328-a624-5b830d410685" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,53 +36,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-request-id": [ - "1140f812-756c-41b5-acc1-a9f0ce3614c7" + "30684ada-f0e7-49d3-a614-78468b6ef62c" ], "x-ms-correlation-request-id": [ - "1140f812-756c-41b5-acc1-a9f0ce3614c7" + "30684ada-f0e7-49d3-a614-78468b6ef62c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175426Z:1140f812-756c-41b5-acc1-a9f0ce3614c7" + "WESTUS2:20210216T192050Z:30684ada-f0e7-49d3-a614-78468b6ef62c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:26 GMT" + "Tue, 16 Feb 2021 19:20:49 GMT" ], "Content-Length": [ - "1826" + "2195" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-06T00:30:37.9129493Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"instanceId\": \"3b2daee5-6294-414f-be12-844f62f701f7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f46ab31-eca8-41e5-92b7-52e9cd56247f" + "4abd9106-12d1-4b07-baba-0bdcfe088357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -102,47 +99,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-request-id": [ - "6cbc59e9-023a-481c-a494-57668d15a971" + "526167b9-f73d-45b7-b14e-bf66915f69ca" ], "x-ms-correlation-request-id": [ - "6cbc59e9-023a-481c-a494-57668d15a971" + "526167b9-f73d-45b7-b14e-bf66915f69ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175427Z:6cbc59e9-023a-481c-a494-57668d15a971" + "WESTUS2:20210216T192050Z:526167b9-f73d-45b7-b14e-bf66915f69ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:26 GMT" + "Tue, 16 Feb 2021 19:20:50 GMT" ], "Content-Length": [ - "1710" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 7f46ab31-eca8-41e5-92b7-52e9cd56247f, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T17:54:27.0457899Z, RequestEndTime: 2020-06-10T17:54:27.0457899Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T17:54:27.0457899Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, LSN: 311, GlobalCommittedLsn: 311, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#311, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T17:54:27.0457899Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, LSN: 311, GlobalCommittedLsn: 311, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#311, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 4abd9106-12d1-4b07-baba-0bdcfe088357, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-16T19:20:50.6643035Z, RequestEndTime: 2021-02-16T19:20:50.6643035Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-16T19:20:50.6643035Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1687, GlobalCommittedLsn: 1687, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1687, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-16T19:20:50.6643035Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1687, GlobalCommittedLsn: 1687, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1687, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4abd9106-12d1-4b07-baba-0bdcfe088357" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -162,53 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-request-id": [ - "125a281b-f2cb-44ec-b8d9-7a6f13cee4de" + "b2dd59e1-0417-43c4-86f5-b4090ae17be2" ], "x-ms-correlation-request-id": [ - "125a281b-f2cb-44ec-b8d9-7a6f13cee4de" + "b2dd59e1-0417-43c4-86f5-b4090ae17be2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175458Z:125a281b-f2cb-44ec-b8d9-7a6f13cee4de" + "WESTUS2:20210216T192122Z:b2dd59e1-0417-43c4-86f5-b4090ae17be2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:57 GMT" + "Tue, 16 Feb 2021 19:21:22 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"ttZ0AA==\",\r\n \"_self\": \"dbs/ttZ0AA==/\",\r\n \"_etag\": \"\\\"00001901-0000-0100-0000-5ee11e570000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591811671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"JpU1AA==\",\r\n \"_self\": \"dbs/JpU1AA==/\",\r\n \"_etag\": \"\\\"0000a531-0000-0100-0000-602c1b160000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613503254\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "448fbbeb-ad98-4e52-afba-561d879b06dc" + "d58fac1f-4edb-490f-9f19-471177dd4929" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,47 +222,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11986" ], "x-ms-request-id": [ - "c676ec54-8fa3-4ec3-83ac-f69978472c83" + "c6a00328-c2f3-48fa-8be3-04eafecf6a44" ], "x-ms-correlation-request-id": [ - "c676ec54-8fa3-4ec3-83ac-f69978472c83" + "c6a00328-c2f3-48fa-8be3-04eafecf6a44" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175530Z:c676ec54-8fa3-4ec3-83ac-f69978472c83" + "WESTUS2:20210216T192153Z:c6a00328-c2f3-48fa-8be3-04eafecf6a44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:55:29 GMT" + "Tue, 16 Feb 2021 19:21:53 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"ttZ0AA==\",\r\n \"_self\": \"dbs/ttZ0AA==/\",\r\n \"_etag\": \"\\\"00001901-0000-0100-0000-5ee11e570000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591811671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"JpU1AA==\",\r\n \"_self\": \"dbs/JpU1AA==/\",\r\n \"_etag\": \"\\\"0000a531-0000-0100-0000-602c1b160000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613503254\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "331a7e01-b9c1-4c3d-aa03-5cf2c5dc1a31" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -288,47 +282,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11983" ], "x-ms-request-id": [ - "dd45ffbf-8937-4307-a125-85223be31394" + "90a4200f-f53a-4f5c-ad68-00335b363173" ], "x-ms-correlation-request-id": [ - "dd45ffbf-8937-4307-a125-85223be31394" + "90a4200f-f53a-4f5c-ad68-00335b363173" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175601Z:dd45ffbf-8937-4307-a125-85223be31394" + "WESTUS2:20210216T192225Z:90a4200f-f53a-4f5c-ad68-00335b363173" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:01 GMT" + "Tue, 16 Feb 2021 19:22:25 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"ttZ0AA==\",\r\n \"_self\": \"dbs/ttZ0AA==/\",\r\n \"_etag\": \"\\\"00001901-0000-0100-0000-5ee11e570000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591811671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"JpU1AA==\",\r\n \"_self\": \"dbs/JpU1AA==/\",\r\n \"_etag\": \"\\\"0000a531-0000-0100-0000-602c1b160000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613503254\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f3d023-b0a3-4538-b3f4-e6f0386364ec" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -348,53 +342,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11978" ], "x-ms-request-id": [ - "8d0e3574-188e-4a15-9abe-23a4c50c0175" + "a0350adb-76ed-4668-87d3-4bb9e6712438" ], "x-ms-correlation-request-id": [ - "8d0e3574-188e-4a15-9abe-23a4c50c0175" + "a0350adb-76ed-4668-87d3-4bb9e6712438" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175704Z:8d0e3574-188e-4a15-9abe-23a4c50c0175" + "WESTUS2:20210216T192327Z:a0350adb-76ed-4668-87d3-4bb9e6712438" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:04 GMT" + "Tue, 16 Feb 2021 19:23:27 GMT" ], "Content-Length": [ "451" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"ttZ0AA==\",\r\n \"_self\": \"dbs/ttZ0AA==/\",\r\n \"_etag\": \"\\\"00001901-0000-0100-0000-5ee11e570000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591811671\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"JpU1AA==\",\r\n \"_self\": \"dbs/JpU1AA==/\",\r\n \"_etag\": \"\\\"0000a531-0000-0100-0000-602c1b160000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613503254\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9cfeb09b-514c-4f84-9870-dd7dc67b1a65" + "4abd9106-12d1-4b07-baba-0bdcfe088357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,13 +402,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/35de59af-f31d-49bc-980b-627f8abccaec?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/1ef87aeb-33ac-4a72-bddb-0e17838386a1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35de59af-f31d-49bc-980b-627f8abccaec?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ef87aeb-33ac-4a72-bddb-0e17838386a1?api-version=2021-01-15" ], "x-ms-request-id": [ - "35de59af-f31d-49bc-980b-627f8abccaec" + "1ef87aeb-33ac-4a72-bddb-0e17838386a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,47 +423,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "202d696c-a7e7-4614-9a7a-498641b37518" + "e1ce0f38-3473-47f4-a51a-f97272eaca82" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175427Z:202d696c-a7e7-4614-9a7a-498641b37518" + "WESTUS2:20210216T192051Z:e1ce0f38-3473-47f4-a51a-f97272eaca82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:27 GMT" + "Tue, 16 Feb 2021 19:20:50 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a6d7541-7727-47c8-b13e-705d06906ffa" + "331a7e01-b9c1-4c3d-aa03-5cf2c5dc1a31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,13 +477,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/c54ce40f-b152-4cc2-8138-82d11f6d37d7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/8c647934-8c2d-4ee9-8ad7-9ddbc1999d4f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c54ce40f-b152-4cc2-8138-82d11f6d37d7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8c647934-8c2d-4ee9-8ad7-9ddbc1999d4f?api-version=2021-01-15" ], "x-ms-request-id": [ - "c54ce40f-b152-4cc2-8138-82d11f6d37d7" + "8c647934-8c2d-4ee9-8ad7-9ddbc1999d4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,47 +498,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "b47fc419-5b97-4fc7-ab18-3b73bb2c61fb" + "128ff55d-1cb5-4395-b88a-f817fd2d8a50" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175531Z:b47fc419-5b97-4fc7-ab18-3b73bb2c61fb" + "WESTUS2:20210216T192154Z:128ff55d-1cb5-4395-b88a-f817fd2d8a50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:55:31 GMT" + "Tue, 16 Feb 2021 19:21:53 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25e571a2-50ff-4bc6-8b84-4284862b0ab5" + "c1f3d023-b0a3-4538-b3f4-e6f0386364ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -567,13 +552,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/67e9e32b-2268-43c9-91a9-b37f26c0da4c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/845be5fa-7d4a-4b0b-9b2f-1e4c831b853d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/67e9e32b-2268-43c9-91a9-b37f26c0da4c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/845be5fa-7d4a-4b0b-9b2f-1e4c831b853d?api-version=2021-01-15" ], "x-ms-request-id": [ - "67e9e32b-2268-43c9-91a9-b37f26c0da4c" + "845be5fa-7d4a-4b0b-9b2f-1e4c831b853d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,41 +573,41 @@ "1195" ], "x-ms-correlation-request-id": [ - "e42f9fb3-d624-4f8f-84ae-ab8efd45fb9f" + "7c063e37-90a3-41af-a185-b0512b27bbdf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175633Z:e42f9fb3-d624-4f8f-84ae-ab8efd45fb9f" + "WESTUS2:20210216T192256Z:7c063e37-90a3-41af-a185-b0512b27bbdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:32 GMT" + "Tue, 16 Feb 2021 19:22:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35de59af-f31d-49bc-980b-627f8abccaec?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzVkZTU5YWYtZjMxZC00OWJjLTk4MGItNjI3ZjhhYmNjYWVjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1ef87aeb-33ac-4a72-bddb-0e17838386a1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWVmODdhZWItMzNhYy00YTcyLWJkZGItMGUxNzgzODM4NmExP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4abd9106-12d1-4b07-baba-0bdcfe088357" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -642,53 +627,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-request-id": [ - "1b90514c-28d6-4f8e-a98b-e52b860b56bf" + "14037969-d5d9-4386-ab72-1aed8a8e87a9" ], "x-ms-correlation-request-id": [ - "1b90514c-28d6-4f8e-a98b-e52b860b56bf" + "14037969-d5d9-4386-ab72-1aed8a8e87a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175458Z:1b90514c-28d6-4f8e-a98b-e52b860b56bf" + "WESTUS2:20210216T192121Z:14037969-d5d9-4386-ab72-1aed8a8e87a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:57 GMT" + "Tue, 16 Feb 2021 19:21:21 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35de59af-f31d-49bc-980b-627f8abccaec?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "986456c1-7cc6-465f-87d5-00210e8167a0" + "e3d8280e-a1f8-4423-a9ff-b91445e30926" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -708,47 +690,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-request-id": [ - "d7d48dc5-19d2-4e47-8130-45ee77b00dc8" + "9728fe24-abfe-4b53-8f1b-262334f324ae" ], "x-ms-correlation-request-id": [ - "d7d48dc5-19d2-4e47-8130-45ee77b00dc8" + "9728fe24-abfe-4b53-8f1b-262334f324ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175458Z:d7d48dc5-19d2-4e47-8130-45ee77b00dc8" + "WESTUS2:20210216T192122Z:9728fe24-abfe-4b53-8f1b-262334f324ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:57 GMT" + "Tue, 16 Feb 2021 19:21:22 GMT" ], "Content-Length": [ - "1727" + "1796" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 986456c1-7cc6-465f-87d5-00210e8167a0, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T17:54:58.6019592Z, RequestEndTime: 2020-06-10T17:54:58.6019592Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T17:54:58.6019592Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, LSN: 312, GlobalCommittedLsn: 312, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#312, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T17:54:58.6019592Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, LSN: 312, GlobalCommittedLsn: 312, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#312, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: e3d8280e-a1f8-4423-a9ff-b91445e30926, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-16T19:21:22.4551726Z, RequestEndTime: 2021-02-16T19:21:22.4551726Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-16T19:21:22.4551726Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1688, GlobalCommittedLsn: 1688, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1688, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-16T19:21:22.4551726Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1688, GlobalCommittedLsn: 1688, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1688, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e3d8280e-a1f8-4423-a9ff-b91445e30926" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -768,53 +750,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-request-id": [ - "54bbc23c-8b56-4ece-a0ca-68707f1bda6c" + "2d8009ce-7721-4d54-91c6-2689a4d25378" ], "x-ms-correlation-request-id": [ - "54bbc23c-8b56-4ece-a0ca-68707f1bda6c" + "2d8009ce-7721-4d54-91c6-2689a4d25378" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175529Z:54bbc23c-8b56-4ece-a0ca-68707f1bda6c" + "WESTUS2:20210216T192153Z:2d8009ce-7721-4d54-91c6-2689a4d25378" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:55:28 GMT" + "Tue, 16 Feb 2021 19:21:53 GMT" ], "Content-Length": [ - "1437" + "1466" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96794fbc-4d81-4df2-8b74-ec497aa6b98e" + "75923406-e4cf-4ecb-84d6-87da852c1528" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -834,53 +813,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11985" ], "x-ms-request-id": [ - "d0edc8b6-3f26-4942-a768-bc0b47e4ed40" + "9f9e99d5-f1ee-4c4d-8e67-8fdf1d8127d1" ], "x-ms-correlation-request-id": [ - "d0edc8b6-3f26-4942-a768-bc0b47e4ed40" + "9f9e99d5-f1ee-4c4d-8e67-8fdf1d8127d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175530Z:d0edc8b6-3f26-4942-a768-bc0b47e4ed40" + "WESTUS2:20210216T192154Z:9f9e99d5-f1ee-4c4d-8e67-8fdf1d8127d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:55:29 GMT" + "Tue, 16 Feb 2021 19:21:53 GMT" ], "Content-Length": [ - "1435" + "1466" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a30a7a5-968c-4e24-aa5f-2385565a3d28" + "eb0e9786-c942-4e49-83ad-ea4113244607" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -900,47 +876,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11982" ], "x-ms-request-id": [ - "145a2a9c-1963-4df8-b776-7595954485b2" + "f97ae774-b1fe-4ae1-873b-ae8e23b3630b" ], "x-ms-correlation-request-id": [ - "145a2a9c-1963-4df8-b776-7595954485b2" + "f97ae774-b1fe-4ae1-873b-ae8e23b3630b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175601Z:145a2a9c-1963-4df8-b776-7595954485b2" + "WESTUS2:20210216T192225Z:f97ae774-b1fe-4ae1-873b-ae8e23b3630b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:01 GMT" + "Tue, 16 Feb 2021 19:22:25 GMT" ], "Content-Length": [ - "1435" + "1468" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0e9786-c942-4e49-83ad-ea4113244607" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -960,53 +936,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11980" ], "x-ms-request-id": [ - "98e14cd1-ea85-43e9-9ab8-ff6c43762ca2" + "a49e6df6-383d-41fe-9439-ca446152e89d" ], "x-ms-correlation-request-id": [ - "98e14cd1-ea85-43e9-9ab8-ff6c43762ca2" + "a49e6df6-383d-41fe-9439-ca446152e89d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175633Z:98e14cd1-ea85-43e9-9ab8-ff6c43762ca2" + "WESTUS2:20210216T192256Z:a49e6df6-383d-41fe-9439-ca446152e89d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:32 GMT" + "Tue, 16 Feb 2021 19:22:55 GMT" ], "Content-Length": [ - "1437" + "1466" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51776cff-89ec-4611-b8ec-b852e647385c" + "2e4050a5-676e-4ac5-a003-58f328421a81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1026,47 +999,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11977" ], "x-ms-request-id": [ - "d52ac757-01a5-494c-ae68-fcdb03b9e1bc" + "8231e0a4-c04c-4b36-9299-c505d2724f79" ], "x-ms-correlation-request-id": [ - "d52ac757-01a5-494c-ae68-fcdb03b9e1bc" + "8231e0a4-c04c-4b36-9299-c505d2724f79" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175704Z:d52ac757-01a5-494c-ae68-fcdb03b9e1bc" + "WESTUS2:20210216T192327Z:8231e0a4-c04c-4b36-9299-c505d2724f79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:04 GMT" + "Tue, 16 Feb 2021 19:23:27 GMT" ], "Content-Length": [ - "1437" + "1466" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2e4050a5-676e-4ac5-a003-58f328421a81" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1086,53 +1059,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11975" ], "x-ms-request-id": [ - "5cc20395-e173-40b8-97e7-3a7385363bf2" + "37a71dc7-9ed4-4750-bb04-eef1f904de00" ], "x-ms-correlation-request-id": [ - "5cc20395-e173-40b8-97e7-3a7385363bf2" + "37a71dc7-9ed4-4750-bb04-eef1f904de00" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175749Z:5cc20395-e173-40b8-97e7-3a7385363bf2" + "WESTUS2:20210216T192358Z:37a71dc7-9ed4-4750-bb04-eef1f904de00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:49 GMT" + "Tue, 16 Feb 2021 19:23:58 GMT" ], "Content-Length": [ - "1437" + "1466" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "14b172a5-ecd8-4949-96ba-2ec23dde77e0" + "e3d8280e-a1f8-4423-a9ff-b91445e30926" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1119,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/469cbfd6-18c3-48b5-85bb-db3c1d811079?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/0e793c82-fe88-477b-989c-7379e1aaeca2?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/469cbfd6-18c3-48b5-85bb-db3c1d811079?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0e793c82-fe88-477b-989c-7379e1aaeca2?api-version=2021-01-15" ], "x-ms-request-id": [ - "469cbfd6-18c3-48b5-85bb-db3c1d811079" + "0e793c82-fe88-477b-989c-7379e1aaeca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,47 +1140,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "ee03422c-0cf1-4ed1-9618-42e8e1994895" + "fc158187-b5e5-4408-a861-bddc78fc6eb5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175459Z:ee03422c-0cf1-4ed1-9618-42e8e1994895" + "WESTUS2:20210216T192123Z:fc158187-b5e5-4408-a861-bddc78fc6eb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:54:58 GMT" + "Tue, 16 Feb 2021 19:21:23 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "51f462ef-b8f1-464b-9b92-39daf6df61ee" + "eb0e9786-c942-4e49-83ad-ea4113244607" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1227,13 +1194,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/1c4e5b5a-046a-459a-b30d-0a2654d57237?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/bb4cb5fc-50f5-4fd1-b554-e9bbc39e98ba?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c4e5b5a-046a-459a-b30d-0a2654d57237?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bb4cb5fc-50f5-4fd1-b554-e9bbc39e98ba?api-version=2021-01-15" ], "x-ms-request-id": [ - "1c4e5b5a-046a-459a-b30d-0a2654d57237" + "bb4cb5fc-50f5-4fd1-b554-e9bbc39e98ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,47 +1215,44 @@ "1196" ], "x-ms-correlation-request-id": [ - "8ee494cf-43d1-44a5-a10b-82f91f8aa63f" + "3704a374-81f6-4ab0-946c-1f909759261d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175602Z:8ee494cf-43d1-44a5-a10b-82f91f8aa63f" + "WESTUS2:20210216T192226Z:3704a374-81f6-4ab0-946c-1f909759261d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:02 GMT" + "Tue, 16 Feb 2021 19:22:25 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "97b9003e-ff29-4e74-9bfc-4420da8f5275" + "2e4050a5-676e-4ac5-a003-58f328421a81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1305,13 +1269,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/0121a431-d8be-4c71-abde-cb155a63bdaa?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/d1a78c5d-5099-49ed-909f-42bd64f2ecf7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0121a431-d8be-4c71-abde-cb155a63bdaa?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1a78c5d-5099-49ed-909f-42bd64f2ecf7?api-version=2021-01-15" ], "x-ms-request-id": [ - "0121a431-d8be-4c71-abde-cb155a63bdaa" + "d1a78c5d-5099-49ed-909f-42bd64f2ecf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,41 +1290,41 @@ "1194" ], "x-ms-correlation-request-id": [ - "371fb7ca-987b-4e32-b520-7644f2c2fe48" + "23d44742-9c88-4067-bdd2-573910892433" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175718Z:371fb7ca-987b-4e32-b520-7644f2c2fe48" + "WESTUS2:20210216T192328Z:23d44742-9c88-4067-bdd2-573910892433" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:18 GMT" + "Tue, 16 Feb 2021 19:23:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/469cbfd6-18c3-48b5-85bb-db3c1d811079?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDY5Y2JmZDYtMThjMy00OGI1LTg1YmItZGIzYzFkODExMDc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0e793c82-fe88-477b-989c-7379e1aaeca2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGU3OTNjODItZmU4OC00NzdiLTk4OWMtNzM3OWUxYWFlY2EyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e3d8280e-a1f8-4423-a9ff-b91445e30926" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1380,47 +1344,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-request-id": [ - "971e9728-98e7-4e7b-91cb-0f348196e7e0" + "266b0c37-783b-4736-a516-86b3d4a926a5" ], "x-ms-correlation-request-id": [ - "971e9728-98e7-4e7b-91cb-0f348196e7e0" + "266b0c37-783b-4736-a516-86b3d4a926a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175529Z:971e9728-98e7-4e7b-91cb-0f348196e7e0" + "WESTUS2:20210216T192153Z:266b0c37-783b-4736-a516-86b3d4a926a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:55:28 GMT" + "Tue, 16 Feb 2021 19:21:52 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/469cbfd6-18c3-48b5-85bb-db3c1d811079?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c54ce40f-b152-4cc2-8138-82d11f6d37d7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzU0Y2U0MGYtYjE1Mi00Y2MyLTgxMzgtODJkMTFmNmQzN2Q3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8c647934-8c2d-4ee9-8ad7-9ddbc1999d4f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGM2NDc5MzQtOGMyZC00ZWU5LThhZDctOWRkYmMxOTk5ZDRmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "331a7e01-b9c1-4c3d-aa03-5cf2c5dc1a31" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1440,47 +1404,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11984" ], "x-ms-request-id": [ - "5aef0f2f-104b-49c5-b464-f16f1712d6b5" + "8c256fb7-7341-4b46-b112-55a80a579002" ], "x-ms-correlation-request-id": [ - "5aef0f2f-104b-49c5-b464-f16f1712d6b5" + "8c256fb7-7341-4b46-b112-55a80a579002" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175601Z:5aef0f2f-104b-49c5-b464-f16f1712d6b5" + "WESTUS2:20210216T192225Z:8c256fb7-7341-4b46-b112-55a80a579002" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:01 GMT" + "Tue, 16 Feb 2021 19:22:24 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c54ce40f-b152-4cc2-8138-82d11f6d37d7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c4e5b5a-046a-459a-b30d-0a2654d57237?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWM0ZTViNWEtMDQ2YS00NTlhLWIzMGQtMGEyNjU0ZDU3MjM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bb4cb5fc-50f5-4fd1-b554-e9bbc39e98ba?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmI0Y2I1ZmMtNTBmNS00ZmQxLWI1NTQtZTliYmMzOWU5OGJhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "eb0e9786-c942-4e49-83ad-ea4113244607" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1500,47 +1464,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11981" ], "x-ms-request-id": [ - "ea246d68-8c47-44af-a55d-08d2d3e31701" + "743778d7-fc33-4e44-9d49-cad376c5c735" ], "x-ms-correlation-request-id": [ - "ea246d68-8c47-44af-a55d-08d2d3e31701" + "743778d7-fc33-4e44-9d49-cad376c5c735" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175632Z:ea246d68-8c47-44af-a55d-08d2d3e31701" + "WESTUS2:20210216T192256Z:743778d7-fc33-4e44-9d49-cad376c5c735" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:56:32 GMT" + "Tue, 16 Feb 2021 19:22:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c4e5b5a-046a-459a-b30d-0a2654d57237?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/67e9e32b-2268-43c9-91a9-b37f26c0da4c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjdlOWUzMmItMjI2OC00M2M5LTkxYTktYjM3ZjI2YzBkYTRjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/845be5fa-7d4a-4b0b-9b2f-1e4c831b853d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODQ1YmU1ZmEtN2Q0YS00YjBiLTliMmYtMWU0YzgzMWI4NTNkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f3d023-b0a3-4538-b3f4-e6f0386364ec" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1560,47 +1524,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11979" ], "x-ms-request-id": [ - "fd013a3f-ebb1-461b-8103-03015eeb0d16" + "522b4a5f-32c6-45c2-878e-fd5989e9b6f9" ], "x-ms-correlation-request-id": [ - "fd013a3f-ebb1-461b-8103-03015eeb0d16" + "522b4a5f-32c6-45c2-878e-fd5989e9b6f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175703Z:fd013a3f-ebb1-461b-8103-03015eeb0d16" + "WESTUS2:20210216T192327Z:522b4a5f-32c6-45c2-878e-fd5989e9b6f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:03 GMT" + "Tue, 16 Feb 2021 19:23:26 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/67e9e32b-2268-43c9-91a9-b37f26c0da4c?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0121a431-d8be-4c71-abde-cb155a63bdaa?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDEyMWE0MzEtZDhiZS00YzcxLWFiZGUtY2IxNTVhNjNiZGFhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1a78c5d-5099-49ed-909f-42bd64f2ecf7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFhNzhjNWQtNTA5OS00OWVkLTkwOWYtNDJiZDY0ZjJlY2Y3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2e4050a5-676e-4ac5-a003-58f328421a81" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1620,53 +1584,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11976" ], "x-ms-request-id": [ - "abe7382d-9138-4c81-b64e-42c52ae6fea3" + "9fd09191-b61d-4a00-8d19-2e83c31f9e8d" ], "x-ms-correlation-request-id": [ - "abe7382d-9138-4c81-b64e-42c52ae6fea3" + "9fd09191-b61d-4a00-8d19-2e83c31f9e8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175749Z:abe7382d-9138-4c81-b64e-42c52ae6fea3" + "WESTUS2:20210216T192358Z:9fd09191-b61d-4a00-8d19-2e83c31f9e8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:49 GMT" + "Tue, 16 Feb 2021 19:23:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0121a431-d8be-4c71-abde-cb155a63bdaa?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e49531-3b3e-480f-976a-a2351dd900fd" + "be0f5e9d-a82f-4cf1-a38b-f62b870448ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1686,53 +1647,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11974" ], "x-ms-request-id": [ - "c8b6ac01-735b-424c-a9a5-6c3ac14ce188" + "560214ce-f90a-44a8-bc41-cb3474a74f4e" ], "x-ms-correlation-request-id": [ - "c8b6ac01-735b-424c-a9a5-6c3ac14ce188" + "560214ce-f90a-44a8-bc41-cb3474a74f4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175749Z:c8b6ac01-735b-424c-a9a5-6c3ac14ce188" + "WESTUS2:20210216T192358Z:560214ce-f90a-44a8-bc41-cb3474a74f4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:49 GMT" + "Tue, 16 Feb 2021 19:23:58 GMT" ], "Content-Length": [ - "1371" + "1402" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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\": \"ttZ0ANFxxCI=\",\r\n \"_ts\": 1591811704,\r\n \"_self\": \"dbs/ttZ0AA==/colls/ttZ0ANFxxCI=/\",\r\n \"_etag\": \"\\\"00001b01-0000-0100-0000-5ee11e780000\\\"\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"JpU1APQB7l0=\",\r\n \"_ts\": 1613503287,\r\n \"_self\": \"dbs/JpU1AA==/colls/JpU1APQB7l0=/\",\r\n \"_etag\": \"\\\"0000a831-0000-0100-0000-602c1b370000\\\"\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "614e3045-5e8b-417c-b727-0642ebb6d494" + "6cd9ec07-5d4f-4d45-9bdd-e3d9078e12c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1752,53 +1710,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11973" ], "x-ms-request-id": [ - "264d00ec-20db-4268-8d6d-0b677caa6149" + "ab16c463-c106-4762-9784-b42f6017e251" ], "x-ms-correlation-request-id": [ - "264d00ec-20db-4268-8d6d-0b677caa6149" + "ab16c463-c106-4762-9784-b42f6017e251" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175750Z:264d00ec-20db-4268-8d6d-0b677caa6149" + "WESTUS2:20210216T192359Z:ab16c463-c106-4762-9784-b42f6017e251" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:49 GMT" + "Tue, 16 Feb 2021 19:23:59 GMT" ], "Content-Length": [ "463" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"ttZ0AA==\",\r\n \"_self\": \"dbs/ttZ0AA==/\",\r\n \"_etag\": \"\\\"00001901-0000-0100-0000-5ee11e570000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591811671\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"JpU1AA==\",\r\n \"_self\": \"dbs/JpU1AA==/\",\r\n \"_etag\": \"\\\"0000a531-0000-0100-0000-602c1b160000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613503254\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0217f9c1-c842-4192-a40d-bf8f1b8de3ef" + "9d60fa35-e0c9-4e52-896b-3fbba080944a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1809,13 +1764,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/a237ad36-77b3-4835-b7ce-779d327e8632?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a237ad36-77b3-4835-b7ce-779d327e8632?api-version=2021-01-15" ], "x-ms-request-id": [ - "05ba3736-a805-4752-98a3-0aed32279d80" + "a237ad36-77b3-4835-b7ce-779d327e8632" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,47 +1785,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "fd85a4c8-da24-4a4a-a8c8-2564346bb0b4" + "ba247a7e-d0f8-47bf-982d-3ed4103610c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175750Z:fd85a4c8-da24-4a4a-a8c8-2564346bb0b4" + "WESTUS2:20210216T192359Z:ba247a7e-d0f8-47bf-982d-3ed4103610c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:57:50 GMT" + "Tue, 16 Feb 2021 19:23:59 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a54916aa-a2ed-4c73-a1b9-bc44101f2f21" + "16101d11-8cf7-4e02-baba-6abee0fe6100" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1881,13 +1833,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/50085aab-d628-451b-929a-a646dba5874b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50085aab-d628-451b-929a-a646dba5874b?api-version=2021-01-15" ], "x-ms-request-id": [ - "43c6be5a-4396-42e5-a25f-66bf892eb78f" + "50085aab-d628-451b-929a-a646dba5874b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1902,41 +1854,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "9210facd-40ba-46b4-8f0f-ba56df1f0fb0" + "730d25f9-665c-43e4-8f06-2c4d91a85ff2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175853Z:9210facd-40ba-46b4-8f0f-ba56df1f0fb0" + "WESTUS2:20210216T192503Z:730d25f9-665c-43e4-8f06-2c4d91a85ff2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:52 GMT" + "Tue, 16 Feb 2021 19:25:02 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDViYTM3MzYtYTgwNS00NzUyLTk4YTMtMGFlZDMyMjc5ZDgwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a237ad36-77b3-4835-b7ce-779d327e8632?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTIzN2FkMzYtNzdiMy00ODM1LWI3Y2UtNzc5ZDMyN2U4NjMyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9d60fa35-e0c9-4e52-896b-3fbba080944a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1956,47 +1908,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11972" ], "x-ms-request-id": [ - "a41c8fd0-5b73-4b2f-9cc2-44c242585894" + "e269dd47-4f6f-45d4-a353-102ecd02db1a" ], "x-ms-correlation-request-id": [ - "a41c8fd0-5b73-4b2f-9cc2-44c242585894" + "e269dd47-4f6f-45d4-a353-102ecd02db1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175820Z:a41c8fd0-5b73-4b2f-9cc2-44c242585894" + "WESTUS2:20210216T192430Z:e269dd47-4f6f-45d4-a353-102ecd02db1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:20 GMT" + "Tue, 16 Feb 2021 19:24:29 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvMDViYTM3MzYtYTgwNS00NzUyLTk4YTMtMGFlZDMyMjc5ZDgwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/a237ad36-77b3-4835-b7ce-779d327e8632?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvYTIzN2FkMzYtNzdiMy00ODM1LWI3Y2UtNzc5ZDMyN2U4NjMyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9d60fa35-e0c9-4e52-896b-3fbba080944a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2016,50 +1968,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11971" ], "x-ms-request-id": [ - "9deab5bf-69d8-4a9c-8955-594e608030e8" + "0f07922f-2d2d-4f86-8fad-4116bfe3e6e7" ], "x-ms-correlation-request-id": [ - "9deab5bf-69d8-4a9c-8955-594e608030e8" + "0f07922f-2d2d-4f86-8fad-4116bfe3e6e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175820Z:9deab5bf-69d8-4a9c-8955-594e608030e8" + "WESTUS2:20210216T192430Z:0f07922f-2d2d-4f86-8fad-4116bfe3e6e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:20 GMT" + "Tue, 16 Feb 2021 19:24:29 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/05ba3736-a805-4752-98a3-0aed32279d80?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0412116b-7c63-42f4-a1d9-78f7a9a03b9e" + "452fdf93-2fb0-4f4d-a1ea-7ce8b830022a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2070,13 +2019,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/75355800-a179-4a3b-ba47-e0baeed13dc5?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/75355800-a179-4a3b-ba47-e0baeed13dc5?api-version=2021-01-15" ], "x-ms-request-id": [ - "f17604f9-48a9-4aed-9426-2aa5d88e3547" + "75355800-a179-4a3b-ba47-e0baeed13dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2088,50 +2037,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "b0e0b831-7895-49f7-8a70-e891332f5256" + "72f1d1d6-4863-46c4-b1cf-30ce30316323" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175821Z:b0e0b831-7895-49f7-8a70-e891332f5256" + "WESTUS2:20210216T192431Z:72f1d1d6-4863-46c4-b1cf-30ce30316323" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:21 GMT" + "Tue, 16 Feb 2021 19:24:30 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2015f15-0549-45d0-8e00-40a575bfd881" + "28392550-26a0-475a-bf95-a21f61d71f31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2142,13 +2088,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/89e48bdb-4a24-496c-95d2-c424accbf5c3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89e48bdb-4a24-496c-95d2-c424accbf5c3?api-version=2021-01-15" ], "x-ms-request-id": [ - "57048632-a3a2-4332-b22e-1ec4eaf1bcfe" + "89e48bdb-4a24-496c-95d2-c424accbf5c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2163,41 +2109,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "b43cd1fe-4abc-4904-9487-217bbc101e44" + "5d220c1d-fd2f-4c0b-9564-176afd3de698" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175924Z:b43cd1fe-4abc-4904-9487-217bbc101e44" + "WESTUS2:20210216T192535Z:5d220c1d-fd2f-4c0b-9564-176afd3de698" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:59:24 GMT" + "Tue, 16 Feb 2021 19:25:34 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjE3NjA0ZjktNDhhOS00YWVkLTk0MjYtMmFhNWQ4OGUzNTQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/75355800-a179-4a3b-ba47-e0baeed13dc5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzUzNTU4MDAtYTE3OS00YTNiLWJhNDctZTBiYWVlZDEzZGM1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "452fdf93-2fb0-4f4d-a1ea-7ce8b830022a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2217,47 +2163,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-request-id": [ - "9921aed5-39ba-48b0-94b5-f864a6317e50" + "3e553d91-fc75-431e-8d43-41a66d16d19a" ], "x-ms-correlation-request-id": [ - "9921aed5-39ba-48b0-94b5-f864a6317e50" + "3e553d91-fc75-431e-8d43-41a66d16d19a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175851Z:9921aed5-39ba-48b0-94b5-f864a6317e50" + "WESTUS2:20210216T192501Z:3e553d91-fc75-431e-8d43-41a66d16d19a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:51 GMT" + "Tue, 16 Feb 2021 19:25:01 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9vcGVyYXRpb25SZXN1bHRzL2YxNzYwNGY5LTQ4YTktNGFlZC05NDI2LTJhYTVkODhlMzU0Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/75355800-a179-4a3b-ba47-e0baeed13dc5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9vcGVyYXRpb25SZXN1bHRzLzc1MzU1ODAwLWExNzktNGEzYi1iYTQ3LWUwYmFlZWQxM2RjNT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "452fdf93-2fb0-4f4d-a1ea-7ce8b830022a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2277,44 +2223,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-request-id": [ - "a8c6a7a9-de7a-4dd8-aaf1-865dc26e0bcc" + "2758dcd6-2317-4f0e-8bfe-caf24700128f" ], "x-ms-correlation-request-id": [ - "a8c6a7a9-de7a-4dd8-aaf1-865dc26e0bcc" + "2758dcd6-2317-4f0e-8bfe-caf24700128f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175852Z:a8c6a7a9-de7a-4dd8-aaf1-865dc26e0bcc" + "WESTUS2:20210216T192502Z:2758dcd6-2317-4f0e-8bfe-caf24700128f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:58:51 GMT" + "Tue, 16 Feb 2021 19:25:02 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/f17604f9-48a9-4aed-9426-2aa5d88e3547?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDNjNmJlNWEtNDM5Ni00MmU1LWEyNWYtNjZiZjg5MmViNzhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/50085aab-d628-451b-929a-a646dba5874b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTAwODVhYWItZDYyOC00NTFiLTkyOWEtYTY0NmRiYTU4NzRiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "16101d11-8cf7-4e02-baba-6abee0fe6100" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2337,44 +2283,44 @@ "11999" ], "x-ms-request-id": [ - "8e272a0c-1833-416d-9b52-80db31e17cdd" + "84cb3f27-2b39-436f-8ccb-ac8f464f3015" ], "x-ms-correlation-request-id": [ - "8e272a0c-1833-416d-9b52-80db31e17cdd" + "84cb3f27-2b39-436f-8ccb-ac8f464f3015" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175923Z:8e272a0c-1833-416d-9b52-80db31e17cdd" + "WESTUS2:20210216T192533Z:84cb3f27-2b39-436f-8ccb-ac8f464f3015" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:59:23 GMT" + "Tue, 16 Feb 2021 19:25:33 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvNDNjNmJlNWEtNDM5Ni00MmU1LWEyNWYtNjZiZjg5MmViNzhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/50085aab-d628-451b-929a-a646dba5874b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvNTAwODVhYWItZDYyOC00NTFiLTkyOWEtYTY0NmRiYTU4NzRiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "16101d11-8cf7-4e02-baba-6abee0fe6100" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2397,41 +2343,41 @@ "11998" ], "x-ms-request-id": [ - "63eb5fee-dac7-4850-82b2-5c32c8a31155" + "b0cf2e03-c817-46a4-a9c2-e79c7a60d99a" ], "x-ms-correlation-request-id": [ - "63eb5fee-dac7-4850-82b2-5c32c8a31155" + "b0cf2e03-c817-46a4-a9c2-e79c7a60d99a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175923Z:63eb5fee-dac7-4850-82b2-5c32c8a31155" + "WESTUS2:20210216T192534Z:b0cf2e03-c817-46a4-a9c2-e79c7a60d99a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:59:23 GMT" + "Tue, 16 Feb 2021 19:25:33 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/graphs/graph1/operationResults/43c6be5a-4396-42e5-a25f-66bf892eb78f?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTcwNDg2MzItYTNhMi00MzMyLWIyMmUtMWVjNGVhZjFiY2ZlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/89e48bdb-4a24-496c-95d2-c424accbf5c3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODllNDhiZGItNGEyNC00OTZjLTk1ZDItYzQyNGFjY2JmNWMzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "28392550-26a0-475a-bf95-a21f61d71f31" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2454,44 +2400,44 @@ "11999" ], "x-ms-request-id": [ - "4ed88db8-2812-45c7-b15b-ea76149aff52" + "da960219-7ec8-4461-a714-b574aac857f5" ], "x-ms-correlation-request-id": [ - "4ed88db8-2812-45c7-b15b-ea76149aff52" + "da960219-7ec8-4461-a714-b574aac857f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175954Z:4ed88db8-2812-45c7-b15b-ea76149aff52" + "WESTUS2:20210216T192605Z:da960219-7ec8-4461-a714-b574aac857f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:59:54 GMT" + "Tue, 16 Feb 2021 19:26:05 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9vcGVyYXRpb25SZXN1bHRzLzU3MDQ4NjMyLWEzYTItNDMzMi1iMjJlLTFlYzRlYWYxYmNmZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/89e48bdb-4a24-496c-95d2-c424accbf5c3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMi9vcGVyYXRpb25SZXN1bHRzLzg5ZTQ4YmRiLTRhMjQtNDk2Yy05NWQyLWM0MjRhY2NiZjVjMz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "28392550-26a0-475a-bf95-a21f61d71f31" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2514,25 +2460,22 @@ "11998" ], "x-ms-request-id": [ - "fe631207-23c0-4b45-b8e6-6501f99e223e" + "4f8811d8-cb4d-474d-a77a-861e8b7d676d" ], "x-ms-correlation-request-id": [ - "fe631207-23c0-4b45-b8e6-6501f99e223e" + "4f8811d8-cb4d-474d-a77a-861e8b7d676d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T175955Z:fe631207-23c0-4b45-b8e6-6501f99e223e" + "WESTUS2:20210216T192605Z:4f8811d8-cb4d-474d-a77a-861e8b7d676d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 17:59:54 GMT" + "Tue, 16 Feb 2021 19:26:05 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/57048632-a3a2-4332-b22e-1ec4eaf1bcfe?api-version=2020-04-01" ] }, "ResponseBody": "", 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 7a46f4f1ddd1..152ce99b3c05 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b97a912-90d9-43a5-82dc-426ef4142752" + "b2c33d6b-09f6-4463-8497-4ab5a09ceff8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "21d43f6a-72d4-4e3a-8486-00bbd06da14c" + "9cbac89e-a961-4552-bc49-28953579612b" ], "x-ms-correlation-request-id": [ - "21d43f6a-72d4-4e3a-8486-00bbd06da14c" + "9cbac89e-a961-4552-bc49-28953579612b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193108Z:21d43f6a-72d4-4e3a-8486-00bbd06da14c" + "WESTUS2:20210216T191425Z:9cbac89e-a961-4552-bc49-28953579612b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:08 GMT" + "Tue, 16 Feb 2021 19:14:25 GMT" ], "Content-Length": [ - "1710" + "1780" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 9b97a912-90d9-43a5-82dc-426ef4142752, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:31:08.1645690Z, RequestEndTime: 2020-06-10T19:31:08.1645690Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:31:08.1645690Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132362198869244353s, LSN: 317, GlobalCommittedLsn: 317, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#317, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:31:08.1645690Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, LSN: 317, GlobalCommittedLsn: 317, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#317, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: b2c33d6b-09f6-4463-8497-4ab5a09ceff8, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-16T19:14:25.3804114Z, RequestEndTime: 2021-02-16T19:14:25.3804114Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-16T19:14:25.3804114Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1673, GlobalCommittedLsn: 1673, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1673, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-16T19:14:25.3804114Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1673, GlobalCommittedLsn: 1673, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1673, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName30, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b2c33d6b-09f6-4463-8497-4ab5a09ceff8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,59 +96,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "0ec5b7e1-ca81-432a-9a4e-123a4572fdea" + "e1fa15c0-cdd5-4fd7-b386-088be22c8472" ], "x-ms-correlation-request-id": [ - "0ec5b7e1-ca81-432a-9a4e-123a4572fdea" + "e1fa15c0-cdd5-4fd7-b386-088be22c8472" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193139Z:0ec5b7e1-ca81-432a-9a4e-123a4572fdea" + "WESTUS2:20210216T191457Z:e1fa15c0-cdd5-4fd7-b386-088be22c8472" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:39 GMT" + "Tue, 16 Feb 2021 19:14:57 GMT" ], "Content-Length": [ - "451" + "454" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"aAFiAA==\",\r\n \"_self\": \"dbs/aAFiAA==/\",\r\n \"_etag\": \"\\\"00003b01-0000-0100-0000-5ee135010000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591817473\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName30\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName30\",\r\n \"_rid\": \"oSwjAA==\",\r\n \"_self\": \"dbs/oSwjAA==/\",\r\n \"_etag\": \"\\\"00008e31-0000-0100-0000-602c19970000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613502871\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName30\"\r\n },\r\n \"options\": {\r\n \"throughput\": 1200\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d19815f1-842f-4525-871d-3d29128f7f59" + "b2c33d6b-09f6-4463-8497-4ab5a09ceff8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "129" + "130" ] }, "ResponseHeaders": { @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/8abdb2b4-50a3-4bc6-973c-c773a7eeb1af?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/operationResults/39286854-b0d5-4935-946d-d2f5b93887a7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8abdb2b4-50a3-4bc6-973c-c773a7eeb1af?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/39286854-b0d5-4935-946d-d2f5b93887a7?api-version=2021-01-15" ], "x-ms-request-id": [ - "8abdb2b4-50a3-4bc6-973c-c773a7eeb1af" + "39286854-b0d5-4935-946d-d2f5b93887a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "47724f22-12b0-4494-b57d-5e989a11a1f6" + "37026e2d-1b30-4697-8883-0092494445d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193109Z:47724f22-12b0-4494-b57d-5e989a11a1f6" + "WESTUS2:20210216T191426Z:37026e2d-1b30-4697-8883-0092494445d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:08 GMT" + "Tue, 16 Feb 2021 19:14:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8abdb2b4-50a3-4bc6-973c-c773a7eeb1af?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGFiZGIyYjQtNTBhMy00YmM2LTk3M2MtYzc3M2E3ZWViMWFmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/39286854-b0d5-4935-946d-d2f5b93887a7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzkyODY4NTQtYjBkNS00OTM1LTk0NmQtZDJmNWI5Mzg4N2E3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b2c33d6b-09f6-4463-8497-4ab5a09ceff8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -234,53 +231,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "1d7c3045-8879-4fdd-9a04-b3234cbfcd0b" + "9991f950-10ab-4f43-9cb3-e4a63e33074a" ], "x-ms-correlation-request-id": [ - "1d7c3045-8879-4fdd-9a04-b3234cbfcd0b" + "9991f950-10ab-4f43-9cb3-e4a63e33074a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193139Z:1d7c3045-8879-4fdd-9a04-b3234cbfcd0b" + "WESTUS2:20210216T191457Z:9991f950-10ab-4f43-9cb3-e4a63e33074a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:39 GMT" + "Tue, 16 Feb 2021 19:14:57 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8abdb2b4-50a3-4bc6-973c-c773a7eeb1af?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c02fa56-e29c-445a-874e-578d63862238" + "5215bb92-777c-4156-ba9a-24008b674ebb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,47 +294,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "a5549bbc-684d-421d-a381-ad29b046d9e2" + "06c11c86-4b03-444c-80cc-1d44bd8531f4" ], "x-ms-correlation-request-id": [ - "a5549bbc-684d-421d-a381-ad29b046d9e2" + "06c11c86-4b03-444c-80cc-1d44bd8531f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193140Z:a5549bbc-684d-421d-a381-ad29b046d9e2" + "WESTUS2:20210216T191458Z:06c11c86-4b03-444c-80cc-1d44bd8531f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:39 GMT" + "Tue, 16 Feb 2021 19:14:58 GMT" ], "Content-Length": [ - "377" + "378" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"5wYv\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"Jwe4\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "60f446d2-21b3-4400-bb75-f316ee38d9ae" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -360,47 +354,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "7f1ad10f-3145-4cb1-816e-c8da71fa59ba" + "92076306-8351-4823-b28b-7a415312f4fd" ], "x-ms-correlation-request-id": [ - "7f1ad10f-3145-4cb1-816e-c8da71fa59ba" + "92076306-8351-4823-b28b-7a415312f4fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193211Z:7f1ad10f-3145-4cb1-816e-c8da71fa59ba" + "WESTUS2:20210216T191529Z:92076306-8351-4823-b28b-7a415312f4fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:10 GMT" + "Tue, 16 Feb 2021 19:15:29 GMT" ], "Content-Length": [ - "377" + "378" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"5wYv\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"Jwe4\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "45f4e24b-b75c-4362-acdc-8520ff9d6f2d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -420,47 +414,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "9fcae87a-39c7-446c-b7a6-349b88c331cb" + "92557a42-e429-4cf0-a5d2-5081e3d34c21" ], "x-ms-correlation-request-id": [ - "9fcae87a-39c7-446c-b7a6-349b88c331cb" + "92557a42-e429-4cf0-a5d2-5081e3d34c21" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193242Z:9fcae87a-39c7-446c-b7a6-349b88c331cb" + "WESTUS2:20210216T191601Z:92557a42-e429-4cf0-a5d2-5081e3d34c21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:41 GMT" + "Tue, 16 Feb 2021 19:16:01 GMT" ], "Content-Length": [ - "377" + "378" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"5wYv\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"Jwe4\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be759805-04ee-475a-9e87-6722dc2ffff8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -480,53 +474,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "b6d97f89-1319-485b-ad85-e7b88d1c55f0" + "d7ba7247-dca0-49b9-83ce-16a107be9478" ], "x-ms-correlation-request-id": [ - "b6d97f89-1319-485b-ad85-e7b88d1c55f0" + "d7ba7247-dca0-49b9-83ce-16a107be9478" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193339Z:b6d97f89-1319-485b-ad85-e7b88d1c55f0" + "WESTUS2:20210216T191633Z:d7ba7247-dca0-49b9-83ce-16a107be9478" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:33:38 GMT" + "Tue, 16 Feb 2021 19:16:32 GMT" ], "Content-Length": [ - "376" + "377" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"5wYv\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings\",\r\n \"name\": \"Jwe4\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "614e0042-1106-495f-b20b-0012f023cf56" + "60f446d2-21b3-4400-bb75-f316ee38d9ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default/operationResults/7f2fb681-8615-4bcf-a855-7ed9080c040e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default/operationResults/8962c928-d202-4457-8118-6ac135233a4f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f2fb681-8615-4bcf-a855-7ed9080c040e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8962c928-d202-4457-8118-6ac135233a4f?api-version=2021-01-15" ], "x-ms-request-id": [ - "7f2fb681-8615-4bcf-a855-7ed9080c040e" + "8962c928-d202-4457-8118-6ac135233a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +555,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "2534cdf0-050d-47e0-8b4f-657ff4989003" + "9406b8d2-907a-4ac0-9c4b-b34db953b1b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193140Z:2534cdf0-050d-47e0-8b4f-657ff4989003" + "WESTUS2:20210216T191458Z:9406b8d2-907a-4ac0-9c4b-b34db953b1b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:31:40 GMT" + "Tue, 16 Feb 2021 19:14:58 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "cd6ce4e7-8141-46ba-9896-e29807705e20" + "45f4e24b-b75c-4362-acdc-8520ff9d6f2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +609,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default/operationResults/c3bf2c01-6eaf-4210-bc5c-be77b25e6d82?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default/operationResults/7be4870e-3a3b-4b2d-a793-e87de1adc22e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3bf2c01-6eaf-4210-bc5c-be77b25e6d82?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7be4870e-3a3b-4b2d-a793-e87de1adc22e?api-version=2021-01-15" ], "x-ms-request-id": [ - "c3bf2c01-6eaf-4210-bc5c-be77b25e6d82" + "7be4870e-3a3b-4b2d-a793-e87de1adc22e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +630,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "a541d3cf-1882-45ed-8c97-ee8359c4128a" + "70019449-ee98-4643-bcfa-367dcddea7fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193212Z:a541d3cf-1882-45ed-8c97-ee8359c4128a" + "WESTUS2:20210216T191530Z:70019449-ee98-4643-bcfa-367dcddea7fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:11 GMT" + "Tue, 16 Feb 2021 19:15:29 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "978d8528-ffa1-4d37-90b8-5c59aad67a24" + "be759805-04ee-475a-9e87-6722dc2ffff8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +684,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default/operationResults/289275da-6a7a-4d72-979c-f97d71799b30?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/throughputSettings/default/operationResults/6f2481c1-bf0b-44d0-a9a3-d2f815a8c2c1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/289275da-6a7a-4d72-979c-f97d71799b30?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6f2481c1-bf0b-44d0-a9a3-d2f815a8c2c1?api-version=2021-01-15" ], "x-ms-request-id": [ - "289275da-6a7a-4d72-979c-f97d71799b30" + "6f2481c1-bf0b-44d0-a9a3-d2f815a8c2c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +705,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "3dda39de-acfa-47fe-9cc5-a7be8cc14ed4" + "f9532081-2b98-4402-a320-1c76e5e13387" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193243Z:3dda39de-acfa-47fe-9cc5-a7be8cc14ed4" + "WESTUS2:20210216T191602Z:f9532081-2b98-4402-a320-1c76e5e13387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:42 GMT" + "Tue, 16 Feb 2021 19:16:02 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f2fb681-8615-4bcf-a855-7ed9080c040e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyZmI2ODEtODYxNS00YmNmLWE4NTUtN2VkOTA4MGMwNDBlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8962c928-d202-4457-8118-6ac135233a4f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODk2MmM5MjgtZDIwMi00NDU3LTgxMTgtNmFjMTM1MjMzYTRmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "60f446d2-21b3-4400-bb75-f316ee38d9ae" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -774,47 +759,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "3d30b313-463b-4970-839d-22c96e01b4b0" + "4b0c3386-0185-49b7-957d-28e0b9879736" ], "x-ms-correlation-request-id": [ - "3d30b313-463b-4970-839d-22c96e01b4b0" + "4b0c3386-0185-49b7-957d-28e0b9879736" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193211Z:3d30b313-463b-4970-839d-22c96e01b4b0" + "WESTUS2:20210216T191529Z:4b0c3386-0185-49b7-957d-28e0b9879736" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:10 GMT" + "Tue, 16 Feb 2021 19:15:28 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f2fb681-8615-4bcf-a855-7ed9080c040e?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3bf2c01-6eaf-4210-bc5c-be77b25e6d82?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzNiZjJjMDEtNmVhZi00MjEwLWJjNWMtYmU3N2IyNWU2ZDgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7be4870e-3a3b-4b2d-a793-e87de1adc22e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2JlNDg3MGUtM2EzYi00YjJkLWE3OTMtZTg3ZGUxYWRjMjJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "45f4e24b-b75c-4362-acdc-8520ff9d6f2d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -834,53 +819,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "169c5f17-e646-4fc1-9cb0-3c31dfe01679" + "f78ccf22-2618-4e72-85cd-3e3fec83027d" ], "x-ms-correlation-request-id": [ - "169c5f17-e646-4fc1-9cb0-3c31dfe01679" + "f78ccf22-2618-4e72-85cd-3e3fec83027d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193242Z:169c5f17-e646-4fc1-9cb0-3c31dfe01679" + "WESTUS2:20210216T191600Z:f78ccf22-2618-4e72-85cd-3e3fec83027d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:41 GMT" + "Tue, 16 Feb 2021 19:16:00 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3bf2c01-6eaf-4210-bc5c-be77b25e6d82?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c232527f-4f13-4f58-ae49-d891dd219cbe" + "88917a0d-5385-4bbc-992c-175adc27939e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -900,47 +882,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "cee52971-1a6b-48e2-b02b-ff78757342ac" + "1c76509b-a24c-4967-9da3-dcfcd38d52f2" ], "x-ms-correlation-request-id": [ - "cee52971-1a6b-48e2-b02b-ff78757342ac" + "1c76509b-a24c-4967-9da3-dcfcd38d52f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193242Z:cee52971-1a6b-48e2-b02b-ff78757342ac" + "WESTUS2:20210216T191601Z:1c76509b-a24c-4967-9da3-dcfcd38d52f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:32:41 GMT" + "Tue, 16 Feb 2021 19:16:01 GMT" ], "Content-Length": [ - "1826" + "2195" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002\",\r\n \"name\": \"db1002\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Gremlin (graph)\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-06T00:30:37.9129493Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db1002.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://db1002.gremlin.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": true,\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 \"instanceId\": \"3b2daee5-6294-414f-be12-844f62f701f7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db1002-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\": \"db1002-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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/289275da-6a7a-4d72-979c-f97d71799b30?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjg5Mjc1ZGEtNmE3YS00ZDcyLTk3OWMtZjk3ZDcxNzk5YjMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6f2481c1-bf0b-44d0-a9a3-d2f815a8c2c1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmYyNDgxYzEtYmYwYi00NGQwLWE5YTMtZDJmODE1YThjMmMxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be759805-04ee-475a-9e87-6722dc2ffff8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -960,53 +942,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-request-id": [ - "453508e9-0544-4a85-88b4-c41a33423174" + "e9fa82d3-0bfb-4a17-9e00-a607fc70a915" ], "x-ms-correlation-request-id": [ - "453508e9-0544-4a85-88b4-c41a33423174" + "e9fa82d3-0bfb-4a17-9e00-a607fc70a915" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193336Z:453508e9-0544-4a85-88b4-c41a33423174" + "WESTUS2:20210216T191632Z:e9fa82d3-0bfb-4a17-9e00-a607fc70a915" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:33:36 GMT" + "Tue, 16 Feb 2021 19:16:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/289275da-6a7a-4d72-979c-f97d71799b30?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb5bcc53-3d26-4569-a1b9-08ccfa64797a" + "b669f682-06a0-439f-bec6-6ad14f8ddabd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1026,47 +1005,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-request-id": [ - "eca785c5-2579-4dc9-bd72-6d63173a2b74" + "5b6bbad0-8a27-4e66-9d03-0eadf15f088d" ], "x-ms-correlation-request-id": [ - "eca785c5-2579-4dc9-bd72-6d63173a2b74" + "5b6bbad0-8a27-4e66-9d03-0eadf15f088d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193339Z:eca785c5-2579-4dc9-bd72-6d63173a2b74" + "WESTUS2:20210216T191633Z:5b6bbad0-8a27-4e66-9d03-0eadf15f088d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:33:39 GMT" + "Tue, 16 Feb 2021 19:16:32 GMT" ], "Content-Length": [ - "1730" + "1800" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: fb5bcc53-3d26-4569-a1b9-08ccfa64797a, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:33:39.5624319Z, RequestEndTime: 2020-06-10T19:33:39.5724339Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:33:39.5724339Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132359612586073388s, LSN: 321, GlobalCommittedLsn: 321, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#321, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:33:39.5724339Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132361913595521312s, LSN: 321, GlobalCommittedLsn: 321, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#321, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: b669f682-06a0-439f-bec6-6ad14f8ddabd, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-16T19:16:33.3787401Z, RequestEndTime: 2021-02-16T19:16:33.3787401Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-16T19:16:33.3787401Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1677, GlobalCommittedLsn: 1677, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1677, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-16T19:16:33.3787401Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1677, GlobalCommittedLsn: 1677, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1677, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName30/colls/graphName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b669f682-06a0-439f-bec6-6ad14f8ddabd" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1086,53 +1065,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11985" ], "x-ms-request-id": [ - "50d51a4c-2c1b-4e3e-a551-7afe129c48a4" + "e6c50408-e9fc-4262-b7a7-b83d2f5c22e7" ], "x-ms-correlation-request-id": [ - "50d51a4c-2c1b-4e3e-a551-7afe129c48a4" + "e6c50408-e9fc-4262-b7a7-b83d2f5c22e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193411Z:50d51a4c-2c1b-4e3e-a551-7afe129c48a4" + "WESTUS2:20210216T191704Z:e6c50408-e9fc-4262-b7a7-b83d2f5c22e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:10 GMT" + "Tue, 16 Feb 2021 19:17:04 GMT" ], "Content-Length": [ - "1024" + "1056" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"aAFiAJFJ8G0=\",\r\n \"_ts\": 1591817624,\r\n \"_self\": \"dbs/aAFiAA==/colls/aAFiAJFJ8G0=/\",\r\n \"_etag\": \"\\\"00004501-0000-0100-0000-5ee135980000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"oSwjAOxDXiU=\",\r\n \"_ts\": 1613502998,\r\n \"_self\": \"dbs/oSwjAA==/colls/oSwjAOxDXiU=/\",\r\n \"_etag\": \"\\\"00009a31-0000-0100-0000-602c1a160000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "b323e362-81a0-454b-963b-4a449d5e8f1b" + "b669f682-06a0-439f-bec6-6ad14f8ddabd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1125,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/6557acb9-ef08-4824-865c-5bdb87232f35?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/operationResults/901722ff-8f17-4266-88ce-744bb0a12148?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6557acb9-ef08-4824-865c-5bdb87232f35?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/901722ff-8f17-4266-88ce-744bb0a12148?api-version=2021-01-15" ], "x-ms-request-id": [ - "6557acb9-ef08-4824-865c-5bdb87232f35" + "901722ff-8f17-4266-88ce-744bb0a12148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,44 +1143,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "903ff3a2-a540-43d8-9caf-0c0bf26bff9d" + "efda89bc-0c82-4592-b634-2f190937568c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193340Z:903ff3a2-a540-43d8-9caf-0c0bf26bff9d" + "WESTUS2:20210216T191634Z:efda89bc-0c82-4592-b634-2f190937568c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:33:40 GMT" + "Tue, 16 Feb 2021 19:16:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6557acb9-ef08-4824-865c-5bdb87232f35?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjU1N2FjYjktZWYwOC00ODI0LTg2NWMtNWJkYjg3MjMyZjM1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/901722ff-8f17-4266-88ce-744bb0a12148?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTAxNzIyZmYtOGYxNy00MjY2LTg4Y2UtNzQ0YmIwYTEyMTQ4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b669f682-06a0-439f-bec6-6ad14f8ddabd" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1224,53 +1200,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-request-id": [ - "4e70cca9-4d31-42bd-9f89-88b58afd4ffb" + "7989acfb-6998-4d24-bd70-2b0193379a9e" ], "x-ms-correlation-request-id": [ - "4e70cca9-4d31-42bd-9f89-88b58afd4ffb" + "7989acfb-6998-4d24-bd70-2b0193379a9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193410Z:4e70cca9-4d31-42bd-9f89-88b58afd4ffb" + "WESTUS2:20210216T191704Z:7989acfb-6998-4d24-bd70-2b0193379a9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:10 GMT" + "Tue, 16 Feb 2021 19:17:04 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6557acb9-ef08-4824-865c-5bdb87232f35?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e1bf9d0-104e-4ea7-a64a-db0a9c1034f8" + "a4ddb3b6-8dc3-4040-ae17-f1367594f621" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1290,47 +1263,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-request-id": [ - "c2a7f234-1301-42b6-820e-5ca7eb0c7c10" + "94583e81-e37e-4585-946b-4aefd2db75d9" ], "x-ms-correlation-request-id": [ - "c2a7f234-1301-42b6-820e-5ca7eb0c7c10" + "94583e81-e37e-4585-946b-4aefd2db75d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193411Z:c2a7f234-1301-42b6-820e-5ca7eb0c7c10" + "WESTUS2:20210216T191705Z:94583e81-e37e-4585-946b-4aefd2db75d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:10 GMT" + "Tue, 16 Feb 2021 19:17:04 GMT" ], "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"6ITV\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"D6nn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68c3dc90-dd30-4df1-93fb-ad6c6ce34dc2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1350,47 +1323,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11982" ], "x-ms-request-id": [ - "5034679a-497b-46b1-b112-b52e7dc361ab" + "614d4084-5ec9-4160-a6a3-89fe49328430" ], "x-ms-correlation-request-id": [ - "5034679a-497b-46b1-b112-b52e7dc361ab" + "614d4084-5ec9-4160-a6a3-89fe49328430" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193442Z:5034679a-497b-46b1-b112-b52e7dc361ab" + "WESTUS2:20210216T191736Z:614d4084-5ec9-4160-a6a3-89fe49328430" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:42 GMT" + "Tue, 16 Feb 2021 19:17:36 GMT" ], "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"6ITV\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"D6nn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "faebb910-9fa9-45ff-b046-f84c38b00c8a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1410,47 +1383,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11980" ], "x-ms-request-id": [ - "15bcd060-280c-4078-ac45-60fe527a6a64" + "6dc1c3c6-679e-4a54-8489-2b0c5f21b696" ], "x-ms-correlation-request-id": [ - "15bcd060-280c-4078-ac45-60fe527a6a64" + "6dc1c3c6-679e-4a54-8489-2b0c5f21b696" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193514Z:15bcd060-280c-4078-ac45-60fe527a6a64" + "WESTUS2:20210216T191808Z:6dc1c3c6-679e-4a54-8489-2b0c5f21b696" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:14 GMT" + "Tue, 16 Feb 2021 19:18:08 GMT" ], "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"6ITV\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"D6nn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ce3b0337-ed5f-47b1-aa0b-68dd9944810a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1470,53 +1443,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11978" ], "x-ms-request-id": [ - "b1a72701-dbe8-47ec-9ed9-18b7224b8130" + "48730abe-36c2-4907-b7dd-6ac194601cdd" ], "x-ms-correlation-request-id": [ - "b1a72701-dbe8-47ec-9ed9-18b7224b8130" + "48730abe-36c2-4907-b7dd-6ac194601cdd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193545Z:b1a72701-dbe8-47ec-9ed9-18b7224b8130" + "WESTUS2:20210216T191839Z:48730abe-36c2-4907-b7dd-6ac194601cdd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:44 GMT" + "Tue, 16 Feb 2021 19:18:39 GMT" ], "Content-Length": [ - "400" + "401" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"6ITV\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings\",\r\n \"name\": \"D6nn\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "093069da-7988-4b17-a9c2-80bc4af0b5e5" + "68c3dc90-dd30-4df1-93fb-ad6c6ce34dc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,13 +1503,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/3e5c56e7-8235-4dac-ba9e-b17129ef1641?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default/operationResults/1de3cc7e-b9e6-419e-8ef4-5c044f1daf2b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e5c56e7-8235-4dac-ba9e-b17129ef1641?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1de3cc7e-b9e6-419e-8ef4-5c044f1daf2b?api-version=2021-01-15" ], "x-ms-request-id": [ - "3e5c56e7-8235-4dac-ba9e-b17129ef1641" + "1de3cc7e-b9e6-419e-8ef4-5c044f1daf2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,50 +1521,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "f354789b-4cd2-4bf7-acd5-595aff588640" + "eafe6740-d235-42c0-beab-a72c6c2895eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193412Z:f354789b-4cd2-4bf7-acd5-595aff588640" + "WESTUS2:20210216T191705Z:eafe6740-d235-42c0-beab-a72c6c2895eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:11 GMT" + "Tue, 16 Feb 2021 19:17:05 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "c300f058-9251-4a9c-9cbd-85d5af4e3fa5" + "faebb910-9fa9-45ff-b046-f84c38b00c8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,13 +1578,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/e44473b7-bccb-4ab0-8e54-a7304a87add2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default/operationResults/9e55228c-80a5-4ea0-a3ab-0c8ad2f5dd23?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e44473b7-bccb-4ab0-8e54-a7304a87add2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e55228c-80a5-4ea0-a3ab-0c8ad2f5dd23?api-version=2021-01-15" ], "x-ms-request-id": [ - "e44473b7-bccb-4ab0-8e54-a7304a87add2" + "9e55228c-80a5-4ea0-a3ab-0c8ad2f5dd23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,50 +1596,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "c4bba13c-0556-4e38-b54f-aeb09561f4c3" + "93648aef-db80-43af-88c2-67d0f4d2eea1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193443Z:c4bba13c-0556-4e38-b54f-aeb09561f4c3" + "WESTUS2:20210216T191737Z:93648aef-db80-43af-88c2-67d0f4d2eea1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:42 GMT" + "Tue, 16 Feb 2021 19:17:36 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "668658a6-723b-43e1-bc21-57b62ed5a6b1" + "ce3b0337-ed5f-47b1-aa0b-68dd9944810a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,13 +1653,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default/operationResults/bd4b4cd3-08f3-420a-89b2-f419c675c108?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/throughputSettings/default/operationResults/1c392bd4-3798-4026-babb-25ce6a65c798?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bd4b4cd3-08f3-420a-89b2-f419c675c108?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c392bd4-3798-4026-babb-25ce6a65c798?api-version=2021-01-15" ], "x-ms-request-id": [ - "bd4b4cd3-08f3-420a-89b2-f419c675c108" + "1c392bd4-3798-4026-babb-25ce6a65c798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,44 +1671,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "1cfa8a73-f448-4b8f-a581-23bbf551f771" + "bfad0e70-dde2-4729-9076-34dd28c5d2ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193514Z:1cfa8a73-f448-4b8f-a581-23bbf551f771" + "WESTUS2:20210216T191808Z:bfad0e70-dde2-4729-9076-34dd28c5d2ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:14 GMT" + "Tue, 16 Feb 2021 19:18:08 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e5c56e7-8235-4dac-ba9e-b17129ef1641?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2U1YzU2ZTctODIzNS00ZGFjLWJhOWUtYjE3MTI5ZWYxNjQxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1de3cc7e-b9e6-419e-8ef4-5c044f1daf2b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWRlM2NjN2UtYjllNi00MTllLThlZjQtNWMwNDRmMWRhZjJiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68c3dc90-dd30-4df1-93fb-ad6c6ce34dc2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1764,47 +1728,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-request-id": [ - "b9f61566-3830-4f7d-8f84-c7ec8163cdbc" + "b34483a7-6093-483a-bda6-9b597ddac922" ], "x-ms-correlation-request-id": [ - "b9f61566-3830-4f7d-8f84-c7ec8163cdbc" + "b34483a7-6093-483a-bda6-9b597ddac922" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193442Z:b9f61566-3830-4f7d-8f84-c7ec8163cdbc" + "WESTUS2:20210216T191736Z:b34483a7-6093-483a-bda6-9b597ddac922" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:34:41 GMT" + "Tue, 16 Feb 2021 19:17:35 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3e5c56e7-8235-4dac-ba9e-b17129ef1641?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e44473b7-bccb-4ab0-8e54-a7304a87add2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTQ0NDczYjctYmNjYi00YWIwLThlNTQtYTczMDRhODdhZGQyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e55228c-80a5-4ea0-a3ab-0c8ad2f5dd23?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWU1NTIyOGMtODBhNS00ZWEwLWEzYWItMGM4YWQyZjVkZDIzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "faebb910-9fa9-45ff-b046-f84c38b00c8a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1824,47 +1788,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-request-id": [ - "4ff55187-2636-4949-878d-6c126dc9ccad" + "83b9933f-b74f-4164-823c-8db80878a41a" ], "x-ms-correlation-request-id": [ - "4ff55187-2636-4949-878d-6c126dc9ccad" + "83b9933f-b74f-4164-823c-8db80878a41a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193513Z:4ff55187-2636-4949-878d-6c126dc9ccad" + "WESTUS2:20210216T191808Z:83b9933f-b74f-4164-823c-8db80878a41a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:13 GMT" + "Tue, 16 Feb 2021 19:18:07 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e44473b7-bccb-4ab0-8e54-a7304a87add2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bd4b4cd3-08f3-420a-89b2-f419c675c108?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmQ0YjRjZDMtMDhmMy00MjBhLTg5YjItZjQxOWM2NzVjMTA4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c392bd4-3798-4026-babb-25ce6a65c798?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWMzOTJiZDQtMzc5OC00MDI2LWJhYmItMjVjZTZhNjVjNzk4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ce3b0337-ed5f-47b1-aa0b-68dd9944810a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1884,53 +1848,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11979" ], "x-ms-request-id": [ - "5c0e108e-3ca6-472f-8399-773be1a73ed5" + "36d3be35-0d98-401f-951a-69382ece83a6" ], "x-ms-correlation-request-id": [ - "5c0e108e-3ca6-472f-8399-773be1a73ed5" + "36d3be35-0d98-401f-951a-69382ece83a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193544Z:5c0e108e-3ca6-472f-8399-773be1a73ed5" + "WESTUS2:20210216T191839Z:36d3be35-0d98-401f-951a-69382ece83a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:44 GMT" + "Tue, 16 Feb 2021 19:18:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bd4b4cd3-08f3-420a-89b2-f419c675c108?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "699806df-6b20-412e-a215-a1bcb5ece4c2" + "e4ce3ba0-4698-4439-b0e9-6fa57ae1c239" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1941,13 +1902,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/operationResults/78f49110-c9a5-44b9-8d5c-c8030e76f339?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78f49110-c9a5-44b9-8d5c-c8030e76f339?api-version=2021-01-15" ], "x-ms-request-id": [ - "531ef467-3b66-4c1f-b9ab-619d582f8323" + "78f49110-c9a5-44b9-8d5c-c8030e76f339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1962,47 +1923,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "c5e3aa43-4827-4f26-ae79-edd2014c9f13" + "6ba968be-22a0-4642-97e1-54fc2a6accba" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193545Z:c5e3aa43-4827-4f26-ae79-edd2014c9f13" + "WESTUS2:20210216T191840Z:6ba968be-22a0-4642-97e1-54fc2a6accba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:35:45 GMT" + "Tue, 16 Feb 2021 19:18:39 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df3b02e6-c9bd-498e-aa86-a7f31bfa8d2c" + "8bb9ce66-c481-4514-bef8-2737cc0e364e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2013,13 +1971,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/operationResults/bacb8436-9a15-4544-9942-d8e7cfc5874f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bacb8436-9a15-4544-9942-d8e7cfc5874f?api-version=2021-01-15" ], "x-ms-request-id": [ - "29c3e0f5-9c85-4930-9719-519df7a5b659" + "bacb8436-9a15-4544-9942-d8e7cfc5874f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,41 +1992,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "b9e53f1a-aca9-4b4a-9d4e-d9dd899a6210" + "30d91957-de7a-4cf8-8346-128f174eed8e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193649Z:b9e53f1a-aca9-4b4a-9d4e-d9dd899a6210" + "WESTUS2:20210216T191943Z:30d91957-de7a-4cf8-8346-128f174eed8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:48 GMT" + "Tue, 16 Feb 2021 19:19:43 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTMxZWY0NjctM2I2Ni00YzFmLWI5YWItNjE5ZDU4MmY4MzIzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78f49110-c9a5-44b9-8d5c-c8030e76f339?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhmNDkxMTAtYzlhNS00NGI5LThkNWMtYzgwMzBlNzZmMzM5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e4ce3ba0-4698-4439-b0e9-6fa57ae1c239" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,47 +2046,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11977" ], "x-ms-request-id": [ - "5f282ee5-9962-44d6-bcd7-145535832d78" + "91be44e2-0765-455c-8fec-fc7f111e2b2f" ], "x-ms-correlation-request-id": [ - "5f282ee5-9962-44d6-bcd7-145535832d78" + "91be44e2-0765-455c-8fec-fc7f111e2b2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193616Z:5f282ee5-9962-44d6-bcd7-145535832d78" + "WESTUS2:20210216T191910Z:91be44e2-0765-455c-8fec-fc7f111e2b2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:15 GMT" + "Tue, 16 Feb 2021 19:19:10 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvNTMxZWY0NjctM2I2Ni00YzFmLWI5YWItNjE5ZDU4MmY4MzIzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/operationResults/78f49110-c9a5-44b9-8d5c-c8030e76f339?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS9vcGVyYXRpb25SZXN1bHRzLzc4ZjQ5MTEwLWM5YTUtNDRiOS04ZDVjLWM4MDMwZTc2ZjMzOT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e4ce3ba0-4698-4439-b0e9-6fa57ae1c239" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,50 +2106,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11976" ], "x-ms-request-id": [ - "31f57796-7296-4252-970e-176e7ce0afcf" + "4d978fc5-4ce5-4b9b-9389-5739ec1b2db2" ], "x-ms-correlation-request-id": [ - "31f57796-7296-4252-970e-176e7ce0afcf" + "4d978fc5-4ce5-4b9b-9389-5739ec1b2db2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193616Z:31f57796-7296-4252-970e-176e7ce0afcf" + "WESTUS2:20210216T191910Z:4d978fc5-4ce5-4b9b-9389-5739ec1b2db2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:15 GMT" + "Tue, 16 Feb 2021 19:19:10 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/531ef467-3b66-4c1f-b9ab-619d582f8323?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d81708fa-6c24-44a1-92cf-e5ce1b70c7fa" + "68b4ca99-268a-4475-bce7-8dbeef5065b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,13 +2157,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/operationResults/e8bf21e5-4372-465b-8849-48a62db0574d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8bf21e5-4372-465b-8849-48a62db0574d?api-version=2021-01-15" ], "x-ms-request-id": [ - "359f1fc7-b4de-47c7-b193-85f2a7f20749" + "e8bf21e5-4372-465b-8849-48a62db0574d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,47 +2178,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "d3d996f3-e0a9-4f5c-9897-e191d0b7e6ca" + "875030a1-b52a-4511-ba03-7c7831f394ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193617Z:d3d996f3-e0a9-4f5c-9897-e191d0b7e6ca" + "WESTUS2:20210216T191912Z:875030a1-b52a-4511-ba03-7c7831f394ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:16 GMT" + "Tue, 16 Feb 2021 19:19:12 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2534bb20-2445-4a81-b702-239a89939f0d" + "4a2fd96c-f493-4520-a430-fc4dd015f020" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2274,13 +2226,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/operationResults/03aa9e31-ce1d-413a-aa12-d75dd5453906?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03aa9e31-ce1d-413a-aa12-d75dd5453906?api-version=2021-01-15" ], "x-ms-request-id": [ - "9b56450d-7a63-42aa-bf5e-468cb5ff48e7" + "03aa9e31-ce1d-413a-aa12-d75dd5453906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2295,41 +2247,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "a06c1356-6654-4acb-ae73-73661821ca9d" + "7340f76a-0aff-4b40-82b6-49e3bd1b475d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193720Z:a06c1356-6654-4acb-ae73-73661821ca9d" + "WESTUS2:20210216T192015Z:7340f76a-0aff-4b40-82b6-49e3bd1b475d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:37:20 GMT" + "Tue, 16 Feb 2021 19:20:15 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU5ZjFmYzctYjRkZS00N2M3LWIxOTMtODVmMmE3ZjIwNzQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e8bf21e5-4372-465b-8849-48a62db0574d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZThiZjIxZTUtNDM3Mi00NjViLTg4NDktNDhhNjJkYjA1NzRkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68b4ca99-268a-4475-bce7-8dbeef5065b1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2349,47 +2301,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "ccf6c6f2-70be-4335-a291-85799a632436" + "e9f612d3-b50d-4061-b3bb-dfda332b74f8" ], "x-ms-correlation-request-id": [ - "ccf6c6f2-70be-4335-a291-85799a632436" + "e9f612d3-b50d-4061-b3bb-dfda332b74f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193647Z:ccf6c6f2-70be-4335-a291-85799a632436" + "WESTUS2:20210216T191942Z:e9f612d3-b50d-4061-b3bb-dfda332b74f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:46 GMT" + "Tue, 16 Feb 2021 19:19:42 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzM1OWYxZmM3LWI0ZGUtNDdjNy1iMTkzLTg1ZjJhN2YyMDc0OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/operationResults/e8bf21e5-4372-465b-8849-48a62db0574d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvb3BlcmF0aW9uUmVzdWx0cy9lOGJmMjFlNS00MzcyLTQ2NWItODg0OS00OGE2MmRiMDU3NGQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68b4ca99-268a-4475-bce7-8dbeef5065b1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2409,44 +2361,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "5c38f328-ebff-4182-9144-05aca5fb9405" + "059e8d27-0a25-41f1-8f51-2e8a5f15c2bd" ], "x-ms-correlation-request-id": [ - "5c38f328-ebff-4182-9144-05aca5fb9405" + "059e8d27-0a25-41f1-8f51-2e8a5f15c2bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193648Z:5c38f328-ebff-4182-9144-05aca5fb9405" + "WESTUS2:20210216T191942Z:059e8d27-0a25-41f1-8f51-2e8a5f15c2bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:36:47 GMT" + "Tue, 16 Feb 2021 19:19:42 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/359f1fc7-b4de-47c7-b193-85f2a7f20749?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjljM2UwZjUtOWM4NS00OTMwLTk3MTktNTE5ZGY3YTViNjU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bacb8436-9a15-4544-9942-d8e7cfc5874f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFjYjg0MzYtOWExNS00NTQ0LTk5NDItZDhlN2NmYzU4NzRmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8bb9ce66-c481-4514-bef8-2737cc0e364e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2469,44 +2421,44 @@ "11999" ], "x-ms-request-id": [ - "d8e9edd8-568f-4fb3-af02-f650ef4c74ee" + "6083a28b-5fbf-4c1f-b6d7-93b845068c7a" ], "x-ms-correlation-request-id": [ - "d8e9edd8-568f-4fb3-af02-f650ef4c74ee" + "6083a28b-5fbf-4c1f-b6d7-93b845068c7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193719Z:d8e9edd8-568f-4fb3-af02-f650ef4c74ee" + "WESTUS2:20210216T192013Z:6083a28b-5fbf-4c1f-b6d7-93b845068c7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:37:18 GMT" + "Tue, 16 Feb 2021 19:20:12 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9ncmFwaHMvZ3JhcGhOYW1lL29wZXJhdGlvblJlc3VsdHMvMjljM2UwZjUtOWM4NS00OTMwLTk3MTktNTE5ZGY3YTViNjU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/graphs/graphName/operationResults/bacb8436-9a15-4544-9942-d8e7cfc5874f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvZ3JhcGhzL2dyYXBoTmFtZS9vcGVyYXRpb25SZXN1bHRzL2JhY2I4NDM2LTlhMTUtNDU0NC05OTQyLWQ4ZTdjZmM1ODc0Zj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8bb9ce66-c481-4514-bef8-2737cc0e364e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2529,41 +2481,41 @@ "11998" ], "x-ms-request-id": [ - "09d97223-112f-40ba-a407-17e52bfa4d19" + "e8debbe8-6c00-4de5-b99c-133035ebcbe8" ], "x-ms-correlation-request-id": [ - "09d97223-112f-40ba-a407-17e52bfa4d19" + "e8debbe8-6c00-4de5-b99c-133035ebcbe8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193719Z:09d97223-112f-40ba-a407-17e52bfa4d19" + "WESTUS2:20210216T192014Z:e8debbe8-6c00-4de5-b99c-133035ebcbe8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:37:18 GMT" + "Tue, 16 Feb 2021 19:20:13 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/graphs/graphName/operationResults/29c3e0f5-9c85-4930-9719-519df7a5b659?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWI1NjQ1MGQtN2E2My00MmFhLWJmNWUtNDY4Y2I1ZmY0OGU3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/03aa9e31-ce1d-413a-aa12-d75dd5453906?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDNhYTllMzEtY2UxZC00MTNhLWFhMTItZDc1ZGQ1NDUzOTA2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2fd96c-f493-4520-a430-fc4dd015f020" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2586,44 +2538,44 @@ "11999" ], "x-ms-request-id": [ - "10ebe9ed-c7ad-44cd-86a3-51ee8590ec35" + "ab072b8e-a3e7-4181-ab82-7c37489d9690" ], "x-ms-correlation-request-id": [ - "10ebe9ed-c7ad-44cd-86a3-51ee8590ec35" + "ab072b8e-a3e7-4181-ab82-7c37489d9690" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193750Z:10ebe9ed-c7ad-44cd-86a3-51ee8590ec35" + "WESTUS2:20210216T192045Z:ab072b8e-a3e7-4181-ab82-7c37489d9690" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:37:50 GMT" + "Tue, 16 Feb 2021 19:20:45 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMy9vcGVyYXRpb25SZXN1bHRzLzliNTY0NTBkLTdhNjMtNDJhYS1iZjVlLTQ2OGNiNWZmNDhlNz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName30/operationResults/03aa9e31-ce1d-413a-aa12-d75dd5453906?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMzAvb3BlcmF0aW9uUmVzdWx0cy8wM2FhOWUzMS1jZTFkLTQxM2EtYWExMi1kNzVkZDU0NTM5MDY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2fd96c-f493-4520-a430-fc4dd015f020" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2646,25 +2598,22 @@ "11998" ], "x-ms-request-id": [ - "fac376dc-51e4-40fc-a0d1-e01b40843eb5" + "e2beedf7-f078-49c1-9926-a00bf3e3a1df" ], "x-ms-correlation-request-id": [ - "fac376dc-51e4-40fc-a0d1-e01b40843eb5" + "e2beedf7-f078-49c1-9926-a00bf3e3a1df" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193751Z:fac376dc-51e4-40fc-a0d1-e01b40843eb5" + "WESTUS2:20210216T192045Z:e2beedf7-f078-49c1-9926-a00bf3e3a1df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:37:50 GMT" + "Tue, 16 Feb 2021 19:20:45 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName3/operationResults/9b56450d-7a63-42aa-bf5e-468cb5ff48e7?api-version=2020-04-01" ] }, "ResponseBody": "", 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 325041a6137c..658abb982f0b 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36f3d2cd-0162-46f2-9c7d-a885728afb69" + "ae75cc5c-3286-4b24-a999-32858ef68e33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "7c2f294a-c016-4619-86f0-c3516de64594" + "e0f14ebc-4237-49ff-91e4-2946a789cb45" ], "x-ms-correlation-request-id": [ - "7c2f294a-c016-4619-86f0-c3516de64594" + "e0f14ebc-4237-49ff-91e4-2946a789cb45" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002207Z:7c2f294a-c016-4619-86f0-c3516de64594" + "WESTUS2:20210213T030941Z:e0f14ebc-4237-49ff-91e4-2946a789cb45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:07 GMT" + "Sat, 13 Feb 2021 03:09:41 GMT" ], "Content-Length": [ - "1773" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01" ] }, - "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: 36f3d2cd-0162-46f2-9c7d-a885728afb69, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132433658762266671s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:22:07.8834562Z, RequestEndTime: 2020-09-03T00:22:07.8934864Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:22:07.8934864Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132433658762266671s, LSN: 776, GlobalCommittedLsn: 776, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#776, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:22:07.8934864Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132432848086651693s, LSN: 776, GlobalCommittedLsn: 776, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#776, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: ae75cc5c-3286-4b24-a999-32858ef68e33, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:09:41.8151649Z, RequestEndTime: 2021-02-13T03:09:41.8151649Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:09:41.8151649Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1431, GlobalCommittedLsn: 1431, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1431, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:09:41.8151649Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1431, GlobalCommittedLsn: 1431, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1431, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ae75cc5c-3286-4b24-a999-32858ef68e33" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "a2dff57a-a70f-45c4-878a-0b53eadc738e" + "e5ae840c-0a5f-465e-8e90-63ce1cbbcf31" ], "x-ms-correlation-request-id": [ - "a2dff57a-a70f-45c4-878a-0b53eadc738e" + "e5ae840c-0a5f-465e-8e90-63ce1cbbcf31" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002238Z:a2dff57a-a70f-45c4-878a-0b53eadc738e" + "WESTUS2:20210213T031012Z:e5ae840c-0a5f-465e-8e90-63ce1cbbcf31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:38 GMT" + "Sat, 13 Feb 2021 03:10:12 GMT" ], "Content-Length": [ "390" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"SA89AA==\",\r\n \"_etag\": \"\\\"0000ad0f-0000-0100-0000-5f5037350000\\\"\",\r\n \"_ts\": 1599092533\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName4\",\r\n \"_rid\": \"-Gk7AA==\",\r\n \"_etag\": \"\\\"00007100-0000-0100-0000-602742fb0000\\\"\",\r\n \"_ts\": 1613185787\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "a68a8064-34b6-431b-8f2b-d741463a009c" + "ae75cc5c-3286-4b24-a999-32858ef68e33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/b1512323-74a4-4b33-baf1-357882962412?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/9c22b094-4cba-422d-b54e-5e172945a047?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1512323-74a4-4b33-baf1-357882962412?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9c22b094-4cba-422d-b54e-5e172945a047?api-version=2021-01-15" ], "x-ms-request-id": [ - "b1512323-74a4-4b33-baf1-357882962412" + "9c22b094-4cba-422d-b54e-5e172945a047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "2a336728-16d4-4ec4-b159-b3ea5d407801" + "2b273a68-6737-4f8d-a8f0-884b5afc3a4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002208Z:2a336728-16d4-4ec4-b159-b3ea5d407801" + "WESTUS2:20210213T030942Z:2b273a68-6737-4f8d-a8f0-884b5afc3a4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:08 GMT" + "Sat, 13 Feb 2021 03:09:41 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1512323-74a4-4b33-baf1-357882962412?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjE1MTIzMjMtNzRhNC00YjMzLWJhZjEtMzU3ODgyOTYyNDEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9c22b094-4cba-422d-b54e-5e172945a047?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWMyMmIwOTQtNGNiYS00MjJkLWI1NGUtNWUxNzI5NDVhMDQ3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ae75cc5c-3286-4b24-a999-32858ef68e33" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -234,53 +231,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "0d2a5342-96be-4e89-92de-4db929559707" + "7f81b164-ba75-40c5-be2b-e625a5871ba9" ], "x-ms-correlation-request-id": [ - "0d2a5342-96be-4e89-92de-4db929559707" + "7f81b164-ba75-40c5-be2b-e625a5871ba9" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002238Z:0d2a5342-96be-4e89-92de-4db929559707" + "WESTUS2:20210213T031012Z:7f81b164-ba75-40c5-be2b-e625a5871ba9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:37 GMT" + "Sat, 13 Feb 2021 03:10:12 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b1512323-74a4-4b33-baf1-357882962412?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b6a3bd0-ee9b-443b-bb9b-a32a00442c5e" + "900aed32-5f80-4e85-b246-8373c7687d2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,53 +294,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "db5d86c7-f352-41fc-a2c7-3f9d1487a076" + "01e84691-716e-4f18-ad58-3234204c1f1a" ], "x-ms-correlation-request-id": [ - "db5d86c7-f352-41fc-a2c7-3f9d1487a076" + "01e84691-716e-4f18-ad58-3234204c1f1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002239Z:db5d86c7-f352-41fc-a2c7-3f9d1487a076" + "WESTUS2:20210213T031013Z:01e84691-716e-4f18-ad58-3234204c1f1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:38 GMT" + "Sat, 13 Feb 2021 03:10:12 GMT" ], "Content-Length": [ "376" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"cGVe\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"Z7mS\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "102423e7-8ac1-4527-a67a-7941e365ba9b" + "fe655ce2-fc3d-4df6-bc4f-ac28fabe9158" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/4a583805-0686-4116-9e3e-767b68398830?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4a583805-0686-4116-9e3e-767b68398830?api-version=2021-01-15" ], "x-ms-request-id": [ - "fad54db6-cd43-480f-9039-3d18999bbab1" + "4a583805-0686-4116-9e3e-767b68398830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "7d850ebe-1285-415e-a719-885a4eaa7d0a" + "d9deec6b-b6ec-461b-a29a-fea0fc66956a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002239Z:7d850ebe-1285-415e-a719-885a4eaa7d0a" + "WESTUS2:20210213T031013Z:d9deec6b-b6ec-461b-a29a-fea0fc66956a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:22:38 GMT" + "Sat, 13 Feb 2021 03:10:13 GMT" ], "Content-Length": [ "21" @@ -400,16 +391,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmFkNTRkYjYtY2Q0My00ODBmLTkwMzktM2QxODk5OWJiYWIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4a583805-0686-4116-9e3e-767b68398830?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE1ODM4MDUtMDY4Ni00MTE2LTllM2UtNzY3YjY4Mzk4ODMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fe655ce2-fc3d-4df6-bc4f-ac28fabe9158" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -429,47 +423,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "0bb2af34-8313-463b-9422-554a8658066c" + "d2f7af5a-3b32-418b-8fc2-de640e72187d" ], "x-ms-correlation-request-id": [ - "0bb2af34-8313-463b-9422-554a8658066c" + "d2f7af5a-3b32-418b-8fc2-de640e72187d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002309Z:0bb2af34-8313-463b-9422-554a8658066c" + "WESTUS2:20210213T031043Z:d2f7af5a-3b32-418b-8fc2-de640e72187d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:09 GMT" + "Sat, 13 Feb 2021 03:10:43 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2ZhZDU0ZGI2LWNkNDMtNDgwZi05MDM5LTNkMTg5OTliYmFiMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/4a583805-0686-4116-9e3e-767b68398830?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzRhNTgzODA1LTA2ODYtNDExNi05ZTNlLTc2N2I2ODM5ODgzMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fe655ce2-fc3d-4df6-bc4f-ac28fabe9158" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -489,53 +483,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "d186ee72-316c-47e4-b463-b2dafdf39d76" + "45443673-9d2c-4d54-8091-f7f8e3e00687" ], "x-ms-correlation-request-id": [ - "d186ee72-316c-47e4-b463-b2dafdf39d76" + "45443673-9d2c-4d54-8091-f7f8e3e00687" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002310Z:d186ee72-316c-47e4-b463-b2dafdf39d76" + "WESTUS2:20210213T031043Z:45443673-9d2c-4d54-8091-f7f8e3e00687" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:10 GMT" + "Sat, 13 Feb 2021 03:10:43 GMT" ], "Content-Length": [ "457" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/fad54db6-cd43-480f-9039-3d18999bbab1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"cGVe\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"Z7mS\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a598e6d-c4c0-48c9-b645-37fd5008ec22" + "a34e11d6-908d-4cd9-a707-1fbb12fbeab3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -555,53 +546,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "01635b83-a07f-4ef0-b605-97f0c644028b" + "db79839c-2c06-4909-b0a6-e81093125add" ], "x-ms-correlation-request-id": [ - "01635b83-a07f-4ef0-b605-97f0c644028b" + "db79839c-2c06-4909-b0a6-e81093125add" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002310Z:01635b83-a07f-4ef0-b605-97f0c644028b" + "WESTUS2:20210213T031044Z:db79839c-2c06-4909-b0a6-e81093125add" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:10 GMT" + "Sat, 13 Feb 2021 03:10:43 GMT" ], "Content-Length": [ - "2083" + "2192" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T19:15:07.9711767Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"ab545459-41a1-41fe-83e3-bc36bfbad31c\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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\": \"AllowSelfServeUpgradeToMongo36\"\r\n },\r\n {\r\n \"name\": \"DisableRateLimitingResponses\"\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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T19:15:07.9711767Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"ab545459-41a1-41fe-83e3-bc36bfbad31c\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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\": \"AllowSelfServeUpgradeToMongo36\"\r\n },\r\n {\r\n \"name\": \"DisableRateLimitingResponses\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08e29def-3dc0-4472-8836-8c53a8e3b9ef" + "b999d53c-6948-433b-985b-a32e1109366a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -612,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/92d6f315-f895-4b1d-a9af-d2a28a7430f9?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/92d6f315-f895-4b1d-a9af-d2a28a7430f9?api-version=2021-01-15" ], "x-ms-request-id": [ - "0aade969-a1a6-4fbb-8db0-9f3166d1db9d" + "92d6f315-f895-4b1d-a9af-d2a28a7430f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,16 +621,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e8c8f423-5d7a-4f31-96b3-21f4d2086205" + "bd390819-0983-40a1-a2e0-03dc875dfb8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002310Z:e8c8f423-5d7a-4f31-96b3-21f4d2086205" + "WESTUS2:20210213T031044Z:bd390819-0983-40a1-a2e0-03dc875dfb8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:10 GMT" + "Sat, 13 Feb 2021 03:10:44 GMT" ], "Content-Length": [ "21" @@ -655,16 +643,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGFhZGU5NjktYTFhNi00ZmJiLThkYjAtOWYzMTY2ZDFkYjlkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/92d6f315-f895-4b1d-a9af-d2a28a7430f9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTJkNmYzMTUtZjg5NS00YjFkLWE5YWYtZDJhMjhhNzQzMGY5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b999d53c-6948-433b-985b-a32e1109366a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -684,47 +675,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "6a9bc7d9-8dff-4cfa-a0fb-16eda94eedcf" + "8ba18769-0bfa-4dc8-a3af-126a1f6162ed" ], "x-ms-correlation-request-id": [ - "6a9bc7d9-8dff-4cfa-a0fb-16eda94eedcf" + "8ba18769-0bfa-4dc8-a3af-126a1f6162ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002340Z:6a9bc7d9-8dff-4cfa-a0fb-16eda94eedcf" + "WESTUS2:20210213T031114Z:8ba18769-0bfa-4dc8-a3af-126a1f6162ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:40 GMT" + "Sat, 13 Feb 2021 03:11:14 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy8wYWFkZTk2OS1hMWE2LTRmYmItOGRiMC05ZjMxNjZkMWRiOWQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/92d6f315-f895-4b1d-a9af-d2a28a7430f9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy85MmQ2ZjMxNS1mODk1LTRiMWQtYTlhZi1kMmEyOGE3NDMwZjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b999d53c-6948-433b-985b-a32e1109366a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -744,53 +735,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "10b39a3d-b4bc-4a33-a4ae-3c366d4cfe3a" + "5b0f7256-116b-48bc-bb3e-b12c9a554865" ], "x-ms-correlation-request-id": [ - "10b39a3d-b4bc-4a33-a4ae-3c366d4cfe3a" + "5b0f7256-116b-48bc-bb3e-b12c9a554865" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002341Z:10b39a3d-b4bc-4a33-a4ae-3c366d4cfe3a" + "WESTUS2:20210213T031115Z:5b0f7256-116b-48bc-bb3e-b12c9a554865" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:40 GMT" + "Sat, 13 Feb 2021 03:11:14 GMT" ], "Content-Length": [ "428" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/0aade969-a1a6-4fbb-8db0-9f3166d1db9d?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"cGVe\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"Z7mS\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5ebc7aa-e0d0-4ab9-bb74-80a5e63fa868" + "d8392e06-0529-44df-aec0-470616a3de59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -810,47 +798,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "f052f86b-463f-4f94-a829-8e85283cd9c0" + "99ed7664-2eb8-416d-9285-a63b024f8a63" ], "x-ms-correlation-request-id": [ - "f052f86b-463f-4f94-a829-8e85283cd9c0" + "99ed7664-2eb8-416d-9285-a63b024f8a63" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002341Z:f052f86b-463f-4f94-a829-8e85283cd9c0" + "WESTUS2:20210213T031115Z:99ed7664-2eb8-416d-9285-a63b024f8a63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:41 GMT" + "Sat, 13 Feb 2021 03:11:15 GMT" ], "Content-Length": [ - "1798" + "1804" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01" ] }, - "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: b5ebc7aa-e0d0-4ab9-bb74-80a5e63fa868, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132432865763176002s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:23:41.2954383Z, RequestEndTime: 2020-09-03T00:23:41.2954383Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:23:41.2954383Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132432865763176002s, LSN: 781, GlobalCommittedLsn: 781, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#781, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:23:41.2954383Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132433658762266671s, LSN: 781, GlobalCommittedLsn: 781, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#781, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/collectionName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: d8392e06-0529-44df-aec0-470616a3de59, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:11:15.2117231Z, RequestEndTime: 2021-02-13T03:11:15.2117231Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:11:15.2117231Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1434, GlobalCommittedLsn: 1434, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1434, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:11:15.2117231Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1434, GlobalCommittedLsn: 1434, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1434, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/collectionName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8392e06-0529-44df-aec0-470616a3de59" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -870,53 +858,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "a9653a21-ad79-422d-94c1-a600a09b318a" + "d5fe2b3a-1ba7-41d9-88f4-98ab982da45b" ], "x-ms-correlation-request-id": [ - "a9653a21-ad79-422d-94c1-a600a09b318a" + "d5fe2b3a-1ba7-41d9-88f4-98ab982da45b" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002412Z:a9653a21-ad79-422d-94c1-a600a09b318a" + "WESTUS2:20210213T031146Z:d5fe2b3a-1ba7-41d9-88f4-98ab982da45b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:12 GMT" + "Sat, 13 Feb 2021 03:11:45 GMT" ], "Content-Length": [ - "551" + "589" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collectionName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"_rid\": \"SA89AKFhqoo=\",\r\n \"_etag\": \"\\\"0000bd0f-0000-0100-0000-5f5037920000\\\"\",\r\n \"_ts\": 1599092626,\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n },\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collectionName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"_rid\": \"-Gk7ANnTD+M=\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-602743570000\\\"\",\r\n \"_ts\": 1613185879,\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n },\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n },\r\n \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "e01a74ca-e2e4-420f-a8a5-4b82727d7a60" + "d8392e06-0529-44df-aec0-470616a3de59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,13 +918,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/3d3a5caa-5f48-46d4-9816-3c40ff187569?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/ee679334-a385-4c48-a1b1-2e947eec8a1d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d3a5caa-5f48-46d4-9816-3c40ff187569?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ee679334-a385-4c48-a1b1-2e947eec8a1d?api-version=2021-01-15" ], "x-ms-request-id": [ - "3d3a5caa-5f48-46d4-9816-3c40ff187569" + "ee679334-a385-4c48-a1b1-2e947eec8a1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,41 +939,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "8599c0e2-945c-4b8d-8629-7d4d368f9dac" + "b67e7277-b449-485b-9ca8-986719e46ecd" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002341Z:8599c0e2-945c-4b8d-8629-7d4d368f9dac" + "WESTUS2:20210213T031115Z:b67e7277-b449-485b-9ca8-986719e46ecd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:23:41 GMT" + "Sat, 13 Feb 2021 03:11:15 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d3a5caa-5f48-46d4-9816-3c40ff187569?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2QzYTVjYWEtNWY0OC00NmQ0LTk4MTYtM2M0MGZmMTg3NTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ee679334-a385-4c48-a1b1-2e947eec8a1d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWU2NzkzMzQtYTM4NS00YzQ4LWExYjEtMmU5NDdlZWM4YTFkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8392e06-0529-44df-aec0-470616a3de59" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1008,53 +993,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "bd54e30b-435a-41aa-a2bd-1ff49a5f898d" + "b82ec89f-8824-4d26-ada0-e857721471ab" ], "x-ms-correlation-request-id": [ - "bd54e30b-435a-41aa-a2bd-1ff49a5f898d" + "b82ec89f-8824-4d26-ada0-e857721471ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002412Z:bd54e30b-435a-41aa-a2bd-1ff49a5f898d" + "WESTUS2:20210213T031145Z:b82ec89f-8824-4d26-ada0-e857721471ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:11 GMT" + "Sat, 13 Feb 2021 03:11:45 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d3a5caa-5f48-46d4-9816-3c40ff187569?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2525103-2cba-42c8-8cc1-c455c5dbfa63" + "7e3030e3-efdd-4426-97d9-d6bc2c905066" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1074,53 +1056,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "8de82e94-7d3e-4896-8150-3d34403aecdc" + "7443382b-df26-4364-a13b-7ccec7dc7373" ], "x-ms-correlation-request-id": [ - "8de82e94-7d3e-4896-8150-3d34403aecdc" + "7443382b-df26-4364-a13b-7ccec7dc7373" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002413Z:8de82e94-7d3e-4896-8150-3d34403aecdc" + "WESTUS2:20210213T031146Z:7443382b-df26-4364-a13b-7ccec7dc7373" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:12 GMT" + "Sat, 13 Feb 2021 03:11:46 GMT" ], "Content-Length": [ "414" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"5XDO\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"wrf-\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af15dbb-1877-4924-8cd0-df0fb0637e4b" + "c103e288-d5f6-4f17-9b7a-d1fb36702470" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1131,13 +1110,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/ed56cb96-68ee-4fac-8d6b-904e167f3755?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed56cb96-68ee-4fac-8d6b-904e167f3755?api-version=2021-01-15" ], "x-ms-request-id": [ - "e85bfc71-4502-48dd-bcaf-dc5d347175e4" + "ed56cb96-68ee-4fac-8d6b-904e167f3755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,16 +1131,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "6ab27c41-4fca-4bb5-8e91-f4807ccdc4cd" + "cb838cd8-96ca-45d0-b649-476df32fc63d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002413Z:6ab27c41-4fca-4bb5-8e91-f4807ccdc4cd" + "WESTUS2:20210213T031147Z:cb838cd8-96ca-45d0-b649-476df32fc63d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:13 GMT" + "Sat, 13 Feb 2021 03:11:46 GMT" ], "Content-Length": [ "21" @@ -1174,16 +1153,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTg1YmZjNzEtNDUwMi00OGRkLWJjYWYtZGM1ZDM0NzE3NWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ed56cb96-68ee-4fac-8d6b-904e167f3755?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ1NmNiOTYtNjhlZS00ZmFjLThkNmItOTA0ZTE2N2YzNzU1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c103e288-d5f6-4f17-9b7a-d1fb36702470" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1203,47 +1185,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "bc358f6e-f241-4346-9b00-f7fd0c2a4fcf" + "2eacf60b-75b7-487a-8d46-b19ad41c47bf" ], "x-ms-correlation-request-id": [ - "bc358f6e-f241-4346-9b00-f7fd0c2a4fcf" + "2eacf60b-75b7-487a-8d46-b19ad41c47bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002443Z:bc358f6e-f241-4346-9b00-f7fd0c2a4fcf" + "WESTUS2:20210213T031217Z:2eacf60b-75b7-487a-8d46-b19ad41c47bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:42 GMT" + "Sat, 13 Feb 2021 03:12:17 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2U4NWJmYzcxLTQ1MDItNDhkZC1iY2FmLWRjNWQzNDcxNzVlND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/ed56cb96-68ee-4fac-8d6b-904e167f3755?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2VkNTZjYjk2LTY4ZWUtNGZhYy04ZDZiLTkwNGUxNjdmMzc1NT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c103e288-d5f6-4f17-9b7a-d1fb36702470" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1263,53 +1245,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "6949fd0e-143d-4972-83cb-242f8d211eb4" + "364d60af-0927-4e1e-b952-957991c9e858" ], "x-ms-correlation-request-id": [ - "6949fd0e-143d-4972-83cb-242f8d211eb4" + "364d60af-0927-4e1e-b952-957991c9e858" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002444Z:6949fd0e-143d-4972-83cb-242f8d211eb4" + "WESTUS2:20210213T031217Z:364d60af-0927-4e1e-b952-957991c9e858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:43 GMT" + "Sat, 13 Feb 2021 03:12:17 GMT" ], "Content-Length": [ "496" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale/operationResults/e85bfc71-4502-48dd-bcaf-dc5d347175e4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"5XDO\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"wrf-\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12060587-9fa4-4ec6-95a9-475e05befd67" + "6175bf55-44ea-441a-b5e6-6ab0d4bed396" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1320,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/f401a12e-1ba7-4373-bc7d-bb6549c478c0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f401a12e-1ba7-4373-bc7d-bb6549c478c0?api-version=2021-01-15" ], "x-ms-request-id": [ - "4e701f5f-14ef-4af5-ae91-669d940cb616" + "f401a12e-1ba7-4373-bc7d-bb6549c478c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,16 +1320,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "dbe005c8-b17a-4fc8-8966-726383037463" + "c204cad2-f1dd-4ad8-adc1-e6b529279076" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002444Z:dbe005c8-b17a-4fc8-8966-726383037463" + "WESTUS2:20210213T031218Z:c204cad2-f1dd-4ad8-adc1-e6b529279076" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:24:43 GMT" + "Sat, 13 Feb 2021 03:12:18 GMT" ], "Content-Length": [ "21" @@ -1363,16 +1342,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGU3MDFmNWYtMTRlZi00YWY1LWFlOTEtNjY5ZDk0MGNiNjE2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f401a12e-1ba7-4373-bc7d-bb6549c478c0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjQwMWExMmUtMWJhNy00MzczLWJjN2QtYmI2NTQ5YzQ3OGMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6175bf55-44ea-441a-b5e6-6ab0d4bed396" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1392,47 +1374,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "988ab353-33fd-4c00-9453-c3a022015879" + "abb94a03-6b23-48eb-8991-c8201d281ee6" ], "x-ms-correlation-request-id": [ - "988ab353-33fd-4c00-9453-c3a022015879" + "abb94a03-6b23-48eb-8991-c8201d281ee6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002514Z:988ab353-33fd-4c00-9453-c3a022015879" + "WESTUS2:20210213T031248Z:abb94a03-6b23-48eb-8991-c8201d281ee6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:14 GMT" + "Sat, 13 Feb 2021 03:12:47 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy80ZTcwMWY1Zi0xNGVmLTRhZjUtYWU5MS02NjlkOTQwY2I2MTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/f401a12e-1ba7-4373-bc7d-bb6549c478c0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9mNDAxYTEyZS0xYmE3LTQzNzMtYmM3ZC1iYjY1NDljNDc4YzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6175bf55-44ea-441a-b5e6-6ab0d4bed396" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1452,53 +1434,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "f2689670-922b-40e9-b058-9f25125063c5" + "d2d5d371-36db-48e6-b34c-f9be25d915da" ], "x-ms-correlation-request-id": [ - "f2689670-922b-40e9-b058-9f25125063c5" + "d2d5d371-36db-48e6-b34c-f9be25d915da" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002514Z:f2689670-922b-40e9-b058-9f25125063c5" + "WESTUS2:20210213T031249Z:d2d5d371-36db-48e6-b34c-f9be25d915da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:14 GMT" + "Sat, 13 Feb 2021 03:12:49 GMT" ], "Content-Length": [ "467" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput/operationResults/4e701f5f-14ef-4af5-ae91-669d940cb616?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"5XDO\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"wrf-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5404f2de-44a5-4752-9e27-4e86159cb3f6" + "892bbbd2-58c8-49dc-813d-647e5697cd16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1509,13 +1488,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/c5cb1d1d-7e72-4ab8-9015-51a4c6e883ba?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c5cb1d1d-7e72-4ab8-9015-51a4c6e883ba?api-version=2021-01-15" ], "x-ms-request-id": [ - "f39e9c43-208a-4081-adce-f9a5eace4fbe" + "c5cb1d1d-7e72-4ab8-9015-51a4c6e883ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1527,50 +1506,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "d9fc0942-8dc2-4ee0-98a2-fdfeadf193f0" + "76d8b854-6f7b-4775-b7cd-c91b4a371f4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002515Z:d9fc0942-8dc2-4ee0-98a2-fdfeadf193f0" + "WESTUS2:20210213T031250Z:76d8b854-6f7b-4775-b7cd-c91b4a371f4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:15 GMT" + "Sat, 13 Feb 2021 03:12:50 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdaa9506-f7c5-43ba-9cc4-dd64f2383f4a" + "f853aa28-a3ba-4ce5-bd84-5fba9d8c610d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1581,13 +1557,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/ff2164a5-a06e-4032-92a4-79c5c212ac25?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff2164a5-a06e-4032-92a4-79c5c212ac25?api-version=2021-01-15" ], "x-ms-request-id": [ - "78cd42a2-ec0b-467c-b4f6-911731318222" + "ff2164a5-a06e-4032-92a4-79c5c212ac25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1602,41 +1578,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "75719389-78ce-4881-a33e-29ba2e8b3222" + "02919a45-0e08-47b6-a4d6-932d67a5d19d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002617Z:75719389-78ce-4881-a33e-29ba2e8b3222" + "WESTUS2:20210213T031353Z:02919a45-0e08-47b6-a4d6-932d67a5d19d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:16 GMT" + "Sat, 13 Feb 2021 03:13:53 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjM5ZTljNDMtMjA4YS00MDgxLWFkY2UtZjlhNWVhY2U0ZmJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c5cb1d1d-7e72-4ab8-9015-51a4c6e883ba?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzVjYjFkMWQtN2U3Mi00YWI4LTkwMTUtNTFhNGM2ZTg4M2JhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "892bbbd2-58c8-49dc-813d-647e5697cd16" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1656,47 +1632,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "bc56cce0-bf41-45e3-aec3-49fab70fa001" + "2ed0297d-bbcf-4e0c-88dd-cf2b41403757" ], "x-ms-correlation-request-id": [ - "bc56cce0-bf41-45e3-aec3-49fab70fa001" + "2ed0297d-bbcf-4e0c-88dd-cf2b41403757" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002545Z:bc56cce0-bf41-45e3-aec3-49fab70fa001" + "WESTUS2:20210213T031320Z:2ed0297d-bbcf-4e0c-88dd-cf2b41403757" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:45 GMT" + "Sat, 13 Feb 2021 03:13:19 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvZjM5ZTljNDMtMjA4YS00MDgxLWFkY2UtZjlhNWVhY2U0ZmJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/c5cb1d1d-7e72-4ab8-9015-51a4c6e883ba?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvYzVjYjFkMWQtN2U3Mi00YWI4LTkwMTUtNTFhNGM2ZTg4M2JhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "892bbbd2-58c8-49dc-813d-647e5697cd16" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1716,50 +1692,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "c09f42b8-6584-49c3-8f86-b4a5c0ded476" + "23082fd9-f839-4354-97ce-7c602082bbca" ], "x-ms-correlation-request-id": [ - "c09f42b8-6584-49c3-8f86-b4a5c0ded476" + "23082fd9-f839-4354-97ce-7c602082bbca" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002545Z:c09f42b8-6584-49c3-8f86-b4a5c0ded476" + "WESTUS2:20210213T031320Z:23082fd9-f839-4354-97ce-7c602082bbca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:45 GMT" + "Sat, 13 Feb 2021 03:13:20 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/f39e9c43-208a-4081-adce-f9a5eace4fbe?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb652ec8-49d0-45b9-b785-92c915787e83" + "71006951-c930-4f80-8294-0559a0f65d7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1770,13 +1743,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/97351635-74b2-41a8-8c60-9d961f2481ff?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/97351635-74b2-41a8-8c60-9d961f2481ff?api-version=2021-01-15" ], "x-ms-request-id": [ - "a2f52f90-90c2-4790-a048-8442cedb76f7" + "97351635-74b2-41a8-8c60-9d961f2481ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,47 +1764,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "f643387e-1f55-48c8-bbb6-96a683f04401" + "0ba58e12-c120-4529-9c39-f489580383fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002546Z:f643387e-1f55-48c8-bbb6-96a683f04401" + "WESTUS2:20210213T031321Z:0ba58e12-c120-4529-9c39-f489580383fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:25:45 GMT" + "Sat, 13 Feb 2021 03:13:21 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b0c11ce-d0b0-468e-b646-e9b022fb1443" + "f189ed17-6d8e-4715-8600-20f363264d3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1842,13 +1812,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/398b10fb-e27d-42ac-b48b-cc51b94279bc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/398b10fb-e27d-42ac-b48b-cc51b94279bc?api-version=2021-01-15" ], "x-ms-request-id": [ - "721298e8-8a65-4aa0-9b43-49eff20478a2" + "398b10fb-e27d-42ac-b48b-cc51b94279bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1863,41 +1833,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "c2c30084-6994-4cfa-a089-fa0677c6a5c6" + "c1299485-9d64-418a-b0c5-18974561805a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002648Z:c2c30084-6994-4cfa-a089-fa0677c6a5c6" + "WESTUS2:20210213T031424Z:c1299485-9d64-418a-b0c5-18974561805a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:47 GMT" + "Sat, 13 Feb 2021 03:14:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTJmNTJmOTAtOTBjMi00NzkwLWEwNDgtODQ0MmNlZGI3NmY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/97351635-74b2-41a8-8c60-9d961f2481ff?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTczNTE2MzUtNzRiMi00MWE4LThjNjAtOWQ5NjFmMjQ4MWZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71006951-c930-4f80-8294-0559a0f65d7d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1917,47 +1887,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "320c0547-52eb-4d62-b29d-37231704c6ba" + "59d1703e-8bcc-4f82-a68d-00430ab2d6e6" ], "x-ms-correlation-request-id": [ - "320c0547-52eb-4d62-b29d-37231704c6ba" + "59d1703e-8bcc-4f82-a68d-00430ab2d6e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002616Z:320c0547-52eb-4d62-b29d-37231704c6ba" + "WESTUS2:20210213T031352Z:59d1703e-8bcc-4f82-a68d-00430ab2d6e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:16 GMT" + "Sat, 13 Feb 2021 03:13:51 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvYTJmNTJmOTAtOTBjMi00NzkwLWEwNDgtODQ0MmNlZGI3NmY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/97351635-74b2-41a8-8c60-9d961f2481ff?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvOTczNTE2MzUtNzRiMi00MWE4LThjNjAtOWQ5NjFmMjQ4MWZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71006951-c930-4f80-8294-0559a0f65d7d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1977,44 +1947,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "9fb8e6dc-0e13-4fcd-9e8b-88de9b5e8ba6" + "ac6a7aba-7920-4869-a3ca-391b20c559e4" ], "x-ms-correlation-request-id": [ - "9fb8e6dc-0e13-4fcd-9e8b-88de9b5e8ba6" + "ac6a7aba-7920-4869-a3ca-391b20c559e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002616Z:9fb8e6dc-0e13-4fcd-9e8b-88de9b5e8ba6" + "WESTUS2:20210213T031352Z:ac6a7aba-7920-4869-a3ca-391b20c559e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:16 GMT" + "Sat, 13 Feb 2021 03:13:51 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/a2f52f90-90c2-4790-a048-8442cedb76f7?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhjZDQyYTItZWMwYi00NjdjLWI0ZjYtOTExNzMxMzE4MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff2164a5-a06e-4032-92a4-79c5c212ac25?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmYyMTY0YTUtYTA2ZS00MDMyLTkyYTQtNzljNWMyMTJhYzI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f853aa28-a3ba-4ce5-bd84-5fba9d8c610d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2034,47 +2004,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "6a7e670d-e48e-473f-821a-ca0c260b58bd" + "624456d6-df96-4481-8a3e-90d6d2a8ba1f" ], "x-ms-correlation-request-id": [ - "6a7e670d-e48e-473f-821a-ca0c260b58bd" + "624456d6-df96-4481-8a3e-90d6d2a8ba1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002647Z:6a7e670d-e48e-473f-821a-ca0c260b58bd" + "WESTUS2:20210213T031423Z:624456d6-df96-4481-8a3e-90d6d2a8ba1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:47 GMT" + "Sat, 13 Feb 2021 03:14:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvNzhjZDQyYTItZWMwYi00NjdjLWI0ZjYtOTExNzMxMzE4MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/ff2164a5-a06e-4032-92a4-79c5c212ac25?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvZmYyMTY0YTUtYTA2ZS00MDMyLTkyYTQtNzljNWMyMTJhYzI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f853aa28-a3ba-4ce5-bd84-5fba9d8c610d" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2094,44 +2064,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "16a39e99-ff7b-4766-b5e0-a73bc4a01616" + "c9167b70-140e-4d66-8f14-12f03fb73a90" ], "x-ms-correlation-request-id": [ - "16a39e99-ff7b-4766-b5e0-a73bc4a01616" + "c9167b70-140e-4d66-8f14-12f03fb73a90" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002647Z:16a39e99-ff7b-4766-b5e0-a73bc4a01616" + "WESTUS2:20210213T031423Z:c9167b70-140e-4d66-8f14-12f03fb73a90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:26:47 GMT" + "Sat, 13 Feb 2021 03:14:23 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/collections/collectionName/operationResults/78cd42a2-ec0b-467c-b4f6-911731318222?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzIxMjk4ZTgtOGE2NS00YWEwLTliNDMtNDllZmYyMDQ3OGEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/398b10fb-e27d-42ac-b48b-cc51b94279bc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzk4YjEwZmItZTI3ZC00MmFjLWI0OGItY2M1MWI5NDI3OWJjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f189ed17-6d8e-4715-8600-20f363264d3b" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2151,47 +2121,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "838465ec-d6c6-4991-ac93-8e887c9a9c8f" + "63f4910b-7c15-4ebe-abca-8d9d86b43033" ], "x-ms-correlation-request-id": [ - "838465ec-d6c6-4991-ac93-8e887c9a9c8f" + "63f4910b-7c15-4ebe-abca-8d9d86b43033" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002718Z:838465ec-d6c6-4991-ac93-8e887c9a9c8f" + "WESTUS2:20210213T031455Z:63f4910b-7c15-4ebe-abca-8d9d86b43033" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:17 GMT" + "Sat, 13 Feb 2021 03:14:54 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvNzIxMjk4ZTgtOGE2NS00YWEwLTliNDMtNDllZmYyMDQ3OGEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/398b10fb-e27d-42ac-b48b-cc51b94279bc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvMzk4YjEwZmItZTI3ZC00MmFjLWI0OGItY2M1MWI5NDI3OWJjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f189ed17-6d8e-4715-8600-20f363264d3b" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2211,28 +2181,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "817368b5-816c-4881-850a-f836ac423a17" + "b0691f49-6465-49c3-8618-ce9de0d826d6" ], "x-ms-correlation-request-id": [ - "817368b5-816c-4881-850a-f836ac423a17" + "b0691f49-6465-49c3-8618-ce9de0d826d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002718Z:817368b5-816c-4881-850a-f836ac423a17" + "WESTUS2:20210213T031455Z:b0691f49-6465-49c3-8618-ce9de0d826d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:17 GMT" + "Sat, 13 Feb 2021 03:14:54 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName4/operationResults/721298e8-8a65-4aa0-9b43-49eff20478a2?api-version=2020-04-01" ] }, "ResponseBody": "", 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 d5f188d1ca62..4249103722fb 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a015910e-6a7c-47da-98e2-df01be969ea7" + "d8ec35f4-db1d-4f2b-9b7a-d39d02734333" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "11e84dd4-6056-4473-8141-5c468208b59d" + "61461a8c-1bfa-4024-9ff5-7e089223d3a7" ], "x-ms-correlation-request-id": [ - "11e84dd4-6056-4473-8141-5c468208b59d" + "61461a8c-1bfa-4024-9ff5-7e089223d3a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215533Z:11e84dd4-6056-4473-8141-5c468208b59d" + "WESTUS2:20210213T025900Z:61461a8c-1bfa-4024-9ff5-7e089223d3a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:55:33 GMT" + "Sat, 13 Feb 2021 02:59:00 GMT" ], "Content-Length": [ - "1709" + "1778" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: a015910e-6a7c-47da-98e2-df01be969ea7, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:55:33.9255414Z, RequestEndTime: 2020-06-10T21:55:33.9255414Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:55:33.9255414Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, LSN: 654, GlobalCommittedLsn: 654, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#654, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:55:33.9255414Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 654, GlobalCommittedLsn: 654, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#654, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: d8ec35f4-db1d-4f2b-9b7a-d39d02734333, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:59:00.6827759Z, RequestEndTime: 2021-02-13T02:59:00.6827759Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:59:00.6827759Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1408, GlobalCommittedLsn: 1408, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1408, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:59:00.6827759Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1408, GlobalCommittedLsn: 1408, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1408, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8ec35f4-db1d-4f2b-9b7a-d39d02734333" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "7c4d73e6-2b24-424a-9fba-0662b07a6686" + "ab9aa4ec-ef61-4c52-af4b-4f1bab75374d" ], "x-ms-correlation-request-id": [ - "7c4d73e6-2b24-424a-9fba-0662b07a6686" + "ab9aa4ec-ef61-4c52-af4b-4f1bab75374d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215604Z:7c4d73e6-2b24-424a-9fba-0662b07a6686" + "WESTUS2:20210213T025932Z:ab9aa4ec-ef61-4c52-af4b-4f1bab75374d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:04 GMT" + "Sat, 13 Feb 2021 02:59:31 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155f4159-9c23-4e89-8ebf-853f81bfa83c" + "c1ea4945-ad8e-4d2d-8eba-a867f3cd9077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "ced7d76a-94b9-416b-916a-0d874d8d53b3" + "1593b285-008e-40e8-8c2c-95a454c7c543" ], "x-ms-correlation-request-id": [ - "ced7d76a-94b9-416b-916a-0d874d8d53b3" + "1593b285-008e-40e8-8c2c-95a454c7c543" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215605Z:ced7d76a-94b9-416b-916a-0d874d8d53b3" + "WESTUS2:20210213T025932Z:1593b285-008e-40e8-8c2c-95a454c7c543" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:04 GMT" + "Sat, 13 Feb 2021 02:59:31 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5e1bf5-221c-437e-b44a-63b25da58740" + "9afd4087-4f9c-45a1-9989-c22c89246c12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,50 +225,47 @@ "11991" ], "x-ms-request-id": [ - "040b5f8e-4fdb-4145-8189-f47d1b2f9ee7" + "22a65c8a-61c4-4448-bafa-faa0fc3b77b6" ], "x-ms-correlation-request-id": [ - "040b5f8e-4fdb-4145-8189-f47d1b2f9ee7" + "22a65c8a-61c4-4448-bafa-faa0fc3b77b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215636Z:040b5f8e-4fdb-4145-8189-f47d1b2f9ee7" + "WESTUS2:20210213T030004Z:22a65c8a-61c4-4448-bafa-faa0fc3b77b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:36 GMT" + "Sat, 13 Feb 2021 03:00:04 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb1663d9-5aa5-4dc0-8865-efa0ecd4615b" + "4197be74-509b-4056-be8b-f9a90a0ea010" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -297,44 +288,44 @@ "11987" ], "x-ms-request-id": [ - "cffd8523-e76d-42b9-b071-e584353bfacc" + "a9739fc1-b510-4ec5-96d4-a262c9abb1d7" ], "x-ms-correlation-request-id": [ - "cffd8523-e76d-42b9-b071-e584353bfacc" + "a9739fc1-b510-4ec5-96d4-a262c9abb1d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215637Z:cffd8523-e76d-42b9-b071-e584353bfacc" + "WESTUS2:20210213T030005Z:a9739fc1-b510-4ec5-96d4-a262c9abb1d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:37 GMT" + "Sat, 13 Feb 2021 03:00:05 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4197be74-509b-4056-be8b-f9a90a0ea010" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,50 +348,47 @@ "11985" ], "x-ms-request-id": [ - "49848744-27e0-40fd-be65-8984e282f720" + "86e96880-494a-4e06-9aee-f1ab62cfea32" ], "x-ms-correlation-request-id": [ - "49848744-27e0-40fd-be65-8984e282f720" + "86e96880-494a-4e06-9aee-f1ab62cfea32" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215708Z:49848744-27e0-40fd-be65-8984e282f720" + "WESTUS2:20210213T030036Z:86e96880-494a-4e06-9aee-f1ab62cfea32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:07 GMT" + "Sat, 13 Feb 2021 03:00:35 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "74614ee9-74d2-41da-91b7-34bdbd9119d5" + "d8ec35f4-db1d-4f2b-9b7a-d39d02734333" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/8f699f80-959a-4a7b-b989-2fadd17291b5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/4ca5b66a-753c-424a-89f1-10c797c5e72f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f699f80-959a-4a7b-b989-2fadd17291b5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4ca5b66a-753c-424a-89f1-10c797c5e72f?api-version=2021-01-15" ], "x-ms-request-id": [ - "8f699f80-959a-4a7b-b989-2fadd17291b5" + "4ca5b66a-753c-424a-89f1-10c797c5e72f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,47 +426,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "d9b0a628-dbe8-4855-9fcd-384d8b638fa6" + "e3da623e-cf8d-44f8-860a-d8b4dc43b669" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215534Z:d9b0a628-dbe8-4855-9fcd-384d8b638fa6" + "WESTUS2:20210213T025901Z:e3da623e-cf8d-44f8-860a-d8b4dc43b669" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:55:34 GMT" + "Sat, 13 Feb 2021 02:59:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e6af4c6-cd51-453c-ad95-3baedf457d15" + "4197be74-509b-4056-be8b-f9a90a0ea010" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,13 +480,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/a86d88da-6f22-47b3-82dc-93623b7ff6be?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/c1e077ad-9208-44d8-8754-b305f7daf24c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a86d88da-6f22-47b3-82dc-93623b7ff6be?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1e077ad-9208-44d8-8754-b305f7daf24c?api-version=2021-01-15" ], "x-ms-request-id": [ - "a86d88da-6f22-47b3-82dc-93623b7ff6be" + "c1e077ad-9208-44d8-8754-b305f7daf24c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,41 +501,41 @@ "1197" ], "x-ms-correlation-request-id": [ - "919aab48-0a8f-45e6-8c7b-7cd4450c6229" + "eea255d1-1bfe-43e9-8059-41e0c056053e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215638Z:919aab48-0a8f-45e6-8c7b-7cd4450c6229" + "WESTUS2:20210213T030005Z:eea255d1-1bfe-43e9-8059-41e0c056053e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:37 GMT" + "Sat, 13 Feb 2021 03:00:05 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f699f80-959a-4a7b-b989-2fadd17291b5?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGY2OTlmODAtOTU5YS00YTdiLWI5ODktMmZhZGQxNzI5MWI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4ca5b66a-753c-424a-89f1-10c797c5e72f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGNhNWI2NmEtNzUzYy00MjRhLTg5ZjEtMTBjNzk3YzVlNzJmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8ec35f4-db1d-4f2b-9b7a-d39d02734333" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -573,50 +558,47 @@ "11998" ], "x-ms-request-id": [ - "34dca0d4-9abe-4681-a2d1-7ac5adcd7497" + "c894c0d7-42c4-47d2-b9b2-c97db55c3acb" ], "x-ms-correlation-request-id": [ - "34dca0d4-9abe-4681-a2d1-7ac5adcd7497" + "c894c0d7-42c4-47d2-b9b2-c97db55c3acb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215604Z:34dca0d4-9abe-4681-a2d1-7ac5adcd7497" + "WESTUS2:20210213T025931Z:c894c0d7-42c4-47d2-b9b2-c97db55c3acb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:04 GMT" + "Sat, 13 Feb 2021 02:59:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8f699f80-959a-4a7b-b989-2fadd17291b5?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01fca30e-23c0-422c-8d8a-31fb2b7bb0c4" + "0cbcccb5-8c52-4df3-9232-14494d504998" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -639,44 +621,44 @@ "11995" ], "x-ms-request-id": [ - "d2bc1c84-cb47-4ce1-aa6b-9f4c31342c51" + "5d87b103-242a-4795-a1bc-0c78ce4dd4d3" ], "x-ms-correlation-request-id": [ - "d2bc1c84-cb47-4ce1-aa6b-9f4c31342c51" + "5d87b103-242a-4795-a1bc-0c78ce4dd4d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215605Z:d2bc1c84-cb47-4ce1-aa6b-9f4c31342c51" + "WESTUS2:20210213T025932Z:5d87b103-242a-4795-a1bc-0c78ce4dd4d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:04 GMT" + "Sat, 13 Feb 2021 02:59:32 GMT" ], "Content-Length": [ - "1731" + "1800" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 01fca30e-23c0-422c-8d8a-31fb2b7bb0c4, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:56:05.3485227Z, RequestEndTime: 2020-06-10T21:56:05.3485227Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:56:05.3485227Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 655, GlobalCommittedLsn: 655, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#655, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:56:05.3485227Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 655, GlobalCommittedLsn: 655, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#655, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 0cbcccb5-8c52-4df3-9232-14494d504998, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:59:32.4714244Z, RequestEndTime: 2021-02-13T02:59:32.4814246Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:59:32.4814246Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1409, GlobalCommittedLsn: 1409, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1409, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:59:32.4814246Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1409, GlobalCommittedLsn: 1409, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1409, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0cbcccb5-8c52-4df3-9232-14494d504998" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -699,50 +681,47 @@ "11993" ], "x-ms-request-id": [ - "cf2b77c0-9d29-44a2-bf2e-abab86ad872b" + "d2165328-2cda-4f00-aacb-f45f59762693" ], "x-ms-correlation-request-id": [ - "cf2b77c0-9d29-44a2-bf2e-abab86ad872b" + "d2165328-2cda-4f00-aacb-f45f59762693" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215636Z:cf2b77c0-9d29-44a2-bf2e-abab86ad872b" + "WESTUS2:20210213T030003Z:d2165328-2cda-4f00-aacb-f45f59762693" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:35 GMT" + "Sat, 13 Feb 2021 03:00:02 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00007b00-0000-0100-0000-5ee156f90000\\\"\",\r\n \"_ts\": 1591826169,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005600-0000-0100-0000-602740980000\\\"\",\r\n \"_ts\": 1613185176,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d9c782-11c5-421c-94a6-dce73196aca8" + "bbcafcd8-65bc-4e3b-baf0-33ee7c0ec625" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -765,50 +744,47 @@ "11992" ], "x-ms-request-id": [ - "e330342d-bb78-49d7-a23b-33aa98e3f10b" + "ae5dc848-eb1d-40c7-83f8-59787500a570" ], "x-ms-correlation-request-id": [ - "e330342d-bb78-49d7-a23b-33aa98e3f10b" + "ae5dc848-eb1d-40c7-83f8-59787500a570" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215636Z:e330342d-bb78-49d7-a23b-33aa98e3f10b" + "WESTUS2:20210213T030004Z:ae5dc848-eb1d-40c7-83f8-59787500a570" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:36 GMT" + "Sat, 13 Feb 2021 03:00:04 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00007b00-0000-0100-0000-5ee156f90000\\\"\",\r\n \"_ts\": 1591826169,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005600-0000-0100-0000-602740980000\\\"\",\r\n \"_ts\": 1613185176,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01a6853a-10e8-4bd1-8371-983193010fd0" + "9d565dad-5757-421f-b684-66d634dd1e0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -831,50 +807,47 @@ "11990" ], "x-ms-request-id": [ - "927c3611-489a-452c-8a5f-8ca4a1aec175" + "1e0e1fd9-206b-4ae2-b0f9-38dd0bfc7c2f" ], "x-ms-correlation-request-id": [ - "927c3611-489a-452c-8a5f-8ca4a1aec175" + "1e0e1fd9-206b-4ae2-b0f9-38dd0bfc7c2f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215637Z:927c3611-489a-452c-8a5f-8ca4a1aec175" + "WESTUS2:20210213T030004Z:1e0e1fd9-206b-4ae2-b0f9-38dd0bfc7c2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:36 GMT" + "Sat, 13 Feb 2021 03:00:04 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00007b00-0000-0100-0000-5ee156f90000\\\"\",\r\n \"_ts\": 1591826169,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005600-0000-0100-0000-602740980000\\\"\",\r\n \"_ts\": 1613185176,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc76fc58-2ab1-41ed-8f80-ea97ec29ffe9" + "4e1f0878-be49-41cd-8ba8-60407b37a256" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -897,44 +870,44 @@ "11983" ], "x-ms-request-id": [ - "c7a78b7a-0634-4c78-b8e3-48f57e2104a3" + "615a20ee-48a8-4152-96a6-5b01c9165d7c" ], "x-ms-correlation-request-id": [ - "c7a78b7a-0634-4c78-b8e3-48f57e2104a3" + "615a20ee-48a8-4152-96a6-5b01c9165d7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215709Z:c7a78b7a-0634-4c78-b8e3-48f57e2104a3" + "WESTUS2:20210213T030036Z:615a20ee-48a8-4152-96a6-5b01c9165d7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:08 GMT" + "Sat, 13 Feb 2021 03:00:36 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00007b00-0000-0100-0000-5ee156f90000\\\"\",\r\n \"_ts\": 1591826169,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005600-0000-0100-0000-602740980000\\\"\",\r\n \"_ts\": 1613185176,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4e1f0878-be49-41cd-8ba8-60407b37a256" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -957,50 +930,47 @@ "11981" ], "x-ms-request-id": [ - "d3978b78-40be-4e14-929c-be964a533329" + "daa9bdb1-8929-42d3-9341-5a6e397715d6" ], "x-ms-correlation-request-id": [ - "d3978b78-40be-4e14-929c-be964a533329" + "daa9bdb1-8929-42d3-9341-5a6e397715d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215740Z:d3978b78-40be-4e14-929c-be964a533329" + "WESTUS2:20210213T030108Z:daa9bdb1-8929-42d3-9341-5a6e397715d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:40 GMT" + "Sat, 13 Feb 2021 03:01:07 GMT" ], "Content-Length": [ "654" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00008200-0000-0100-0000-5ee157390000\\\"\",\r\n \"_ts\": 1591826233,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005d00-0000-0100-0000-602740d80000\\\"\",\r\n \"_ts\": 1613185240,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"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": [ - "c348f051-d7e5-4200-ac89-3e423715f116" + "0cbcccb5-8c52-4df3-9232-14494d504998" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,13 +987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/d3eb7237-fb6e-43cc-9b1c-07cb9e2d507d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/91f347f5-5f9b-4fb8-bf55-336d00b215fa?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3eb7237-fb6e-43cc-9b1c-07cb9e2d507d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/91f347f5-5f9b-4fb8-bf55-336d00b215fa?api-version=2021-01-15" ], "x-ms-request-id": [ - "d3eb7237-fb6e-43cc-9b1c-07cb9e2d507d" + "91f347f5-5f9b-4fb8-bf55-336d00b215fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,47 +1008,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "dc87fde3-71fa-4564-88b9-8a4a4e1c806d" + "2265781e-1364-4970-bd4a-eb61051297de" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215605Z:dc87fde3-71fa-4564-88b9-8a4a4e1c806d" + "WESTUS2:20210213T025933Z:2265781e-1364-4970-bd4a-eb61051297de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:05 GMT" + "Sat, 13 Feb 2021 02:59:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"_ts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\r\n ]\r\n },\r\n \"options\": {\r\n \"unique\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5efefdbc-22fb-48f5-a3c3-dc29b1c3fc3d" + "4e1f0878-be49-41cd-8ba8-60407b37a256" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1095,13 +1062,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/f5a5f0a6-90f9-4d2d-81b4-b267e54ae386?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/600188dc-b38f-463c-9bcd-2c2233535f99?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5a5f0a6-90f9-4d2d-81b4-b267e54ae386?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/600188dc-b38f-463c-9bcd-2c2233535f99?api-version=2021-01-15" ], "x-ms-request-id": [ - "f5a5f0a6-90f9-4d2d-81b4-b267e54ae386" + "600188dc-b38f-463c-9bcd-2c2233535f99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,41 +1083,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "60dcc5e8-1983-498e-af74-844148704266" + "13be4b84-77c6-437c-b768-319f8f4439a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215709Z:60dcc5e8-1983-498e-af74-844148704266" + "WESTUS2:20210213T030037Z:13be4b84-77c6-437c-b768-319f8f4439a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:08 GMT" + "Sat, 13 Feb 2021 03:00:36 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3eb7237-fb6e-43cc-9b1c-07cb9e2d507d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDNlYjcyMzctZmI2ZS00M2NjLTliMWMtMDdjYjllMmQ1MDdkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/91f347f5-5f9b-4fb8-bf55-336d00b215fa?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTFmMzQ3ZjUtNWY5Yi00ZmI4LWJmNTUtMzM2ZDAwYjIxNWZhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0cbcccb5-8c52-4df3-9232-14494d504998" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1173,50 +1140,47 @@ "11994" ], "x-ms-request-id": [ - "1e887e74-423d-4d9c-8fd9-48ff7e299bf7" + "170280c6-4a56-4ffd-a27c-7d67539e102a" ], "x-ms-correlation-request-id": [ - "1e887e74-423d-4d9c-8fd9-48ff7e299bf7" + "170280c6-4a56-4ffd-a27c-7d67539e102a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215636Z:1e887e74-423d-4d9c-8fd9-48ff7e299bf7" + "WESTUS2:20210213T030003Z:170280c6-4a56-4ffd-a27c-7d67539e102a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:35 GMT" + "Sat, 13 Feb 2021 03:00:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3eb7237-fb6e-43cc-9b1c-07cb9e2d507d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dce9de60-8efa-4e68-86d2-62256a4b6eaf" + "b5dd25f1-df1b-4b40-ad3e-f5edcf7fbfc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1239,50 +1203,47 @@ "11989" ], "x-ms-request-id": [ - "22728c84-1997-4764-a4e2-1afb3b309622" + "cfbf778d-f44c-432f-9b49-b43ad26a8f80" ], "x-ms-correlation-request-id": [ - "22728c84-1997-4764-a4e2-1afb3b309622" + "cfbf778d-f44c-432f-9b49-b43ad26a8f80" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215637Z:22728c84-1997-4764-a4e2-1afb3b309622" + "WESTUS2:20210213T030004Z:cfbf778d-f44c-432f-9b49-b43ad26a8f80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:36 GMT" + "Sat, 13 Feb 2021 03:00:04 GMT" ], "Content-Length": [ - "1710" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: dce9de60-8efa-4e68-86d2-62256a4b6eaf, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:56:37.2898989Z, RequestEndTime: 2020-06-10T21:56:37.2898989Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:56:37.2898989Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, LSN: 656, GlobalCommittedLsn: 656, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#656, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:56:37.2898989Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 656, GlobalCommittedLsn: 656, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#656, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: b5dd25f1-df1b-4b40-ad3e-f5edcf7fbfc5, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:00:04.7437647Z, RequestEndTime: 2021-02-13T03:00:04.7537477Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:00:04.7537477Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1410, GlobalCommittedLsn: 1410, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1410, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:00:04.7537477Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1410, GlobalCommittedLsn: 1410, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1410, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb5b2f84-6d73-41f8-9d47-fd815af3b338" + "c71e8f19-3d9a-47e6-aefb-9e94b58047c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1305,44 +1266,44 @@ "11988" ], "x-ms-request-id": [ - "142b8150-74cc-436d-976c-d46410d93c55" + "00ab1d24-77cd-4d25-b07b-8377873a1d13" ], "x-ms-correlation-request-id": [ - "142b8150-74cc-436d-976c-d46410d93c55" + "00ab1d24-77cd-4d25-b07b-8377873a1d13" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215637Z:142b8150-74cc-436d-976c-d46410d93c55" + "WESTUS2:20210213T030005Z:00ab1d24-77cd-4d25-b07b-8377873a1d13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:56:36 GMT" + "Sat, 13 Feb 2021 03:00:05 GMT" ], "Content-Length": [ - "1731" + "1800" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: fb5b2f84-6d73-41f8-9d47-fd815af3b338, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:56:37.5098441Z, RequestEndTime: 2020-06-10T21:56:37.5198942Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:56:37.5198942Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 656, GlobalCommittedLsn: 656, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#656, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:56:37.5198942Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 656, GlobalCommittedLsn: 656, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#656, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: c71e8f19-3d9a-47e6-aefb-9e94b58047c2, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:00:04.9837434Z, RequestEndTime: 2021-02-13T03:00:04.9837434Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:00:04.9837434Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1410, GlobalCommittedLsn: 1410, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1410, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:00:04.9837434Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1410, GlobalCommittedLsn: 1410, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1410, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a86d88da-6f22-47b3-82dc-93623b7ff6be?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTg2ZDg4ZGEtNmYyMi00N2IzLTgyZGMtOTM2MjNiN2ZmNmJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c1e077ad-9208-44d8-8754-b305f7daf24c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzFlMDc3YWQtOTIwOC00NGQ4LTg3NTQtYjMwNWY3ZGFmMjRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4197be74-509b-4056-be8b-f9a90a0ea010" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1365,50 +1326,47 @@ "11986" ], "x-ms-request-id": [ - "76acebae-f730-4504-b3de-b89c6ad74d17" + "4ff946fa-a08b-4c84-9640-bbca2ba115ea" ], "x-ms-correlation-request-id": [ - "76acebae-f730-4504-b3de-b89c6ad74d17" + "4ff946fa-a08b-4c84-9640-bbca2ba115ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215708Z:76acebae-f730-4504-b3de-b89c6ad74d17" + "WESTUS2:20210213T030035Z:4ff946fa-a08b-4c84-9640-bbca2ba115ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:07 GMT" + "Sat, 13 Feb 2021 03:00:35 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a86d88da-6f22-47b3-82dc-93623b7ff6be?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b344b8f4-0eff-4400-9647-f770c4294c25" + "e11acb0c-5635-4249-8423-a90817eb4e2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1431,44 +1389,44 @@ "11984" ], "x-ms-request-id": [ - "b299f04d-d0bb-4cbd-94e3-548193e6ca60" + "873e050c-3586-4384-b625-b14fb985888d" ], "x-ms-correlation-request-id": [ - "b299f04d-d0bb-4cbd-94e3-548193e6ca60" + "873e050c-3586-4384-b625-b14fb985888d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215708Z:b299f04d-d0bb-4cbd-94e3-548193e6ca60" + "WESTUS2:20210213T030036Z:873e050c-3586-4384-b625-b14fb985888d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:07 GMT" + "Sat, 13 Feb 2021 03:00:36 GMT" ], "Content-Length": [ "374" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"JeyT\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"+Z6S\",\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/f5a5f0a6-90f9-4d2d-81b4-b267e54ae386?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVhNWYwYTYtOTBmOS00ZDJkLTgxYjQtYjI2N2U1NGFlMzg2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/600188dc-b38f-463c-9bcd-2c2233535f99?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjAwMTg4ZGMtYjM4Zi00NjNjLTliY2QtMmMyMjMzNTM1Zjk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4e1f0878-be49-41cd-8ba8-60407b37a256" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1491,50 +1449,47 @@ "11982" ], "x-ms-request-id": [ - "9422be30-69c0-4ae1-9d19-fb9995b1098b" + "463bac80-9ffc-4a6d-9e1e-5f98119cfb97" ], "x-ms-correlation-request-id": [ - "9422be30-69c0-4ae1-9d19-fb9995b1098b" + "463bac80-9ffc-4a6d-9e1e-5f98119cfb97" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215740Z:9422be30-69c0-4ae1-9d19-fb9995b1098b" + "WESTUS2:20210213T030107Z:463bac80-9ffc-4a6d-9e1e-5f98119cfb97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:39 GMT" + "Sat, 13 Feb 2021 03:01:07 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f5a5f0a6-90f9-4d2d-81b4-b267e54ae386?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c101d107-bc3c-4daa-96a5-1d0fd3dd5035" + "28cebf61-72e7-4547-b5df-c6c619eed51d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1557,50 +1512,47 @@ "11980" ], "x-ms-request-id": [ - "70a04048-caeb-4e17-9b84-9c83b9888503" + "e2e868b9-1356-41df-8285-85b3d2626eb3" ], "x-ms-correlation-request-id": [ - "70a04048-caeb-4e17-9b84-9c83b9888503" + "e2e868b9-1356-41df-8285-85b3d2626eb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215740Z:70a04048-caeb-4e17-9b84-9c83b9888503" + "WESTUS2:20210213T030108Z:e2e868b9-1356-41df-8285-85b3d2626eb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:40 GMT" + "Sat, 13 Feb 2021 03:01:07 GMT" ], "Content-Length": [ "666" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"nz1RAJUbsj4=\",\r\n \"_etag\": \"\\\"00008200-0000-0100-0000-5ee157390000\\\"\",\r\n \"_ts\": 1591826233,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"6+cRAIXY5i8=\",\r\n \"_etag\": \"\\\"00005d00-0000-0100-0000-602740d80000\\\"\",\r\n \"_ts\": 1613185240,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "525b804c-e63a-4b6b-b1e5-a5669d44b28c" + "2d923a9e-0db6-4cfe-a296-789235ffbe28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1623,50 +1575,47 @@ "11979" ], "x-ms-request-id": [ - "56b6f006-5881-4824-9414-3d9fb8d006b5" + "844e3d0c-bf9a-4c3c-aa90-d7def5b9ed74" ], "x-ms-correlation-request-id": [ - "56b6f006-5881-4824-9414-3d9fb8d006b5" + "844e3d0c-bf9a-4c3c-aa90-d7def5b9ed74" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215740Z:56b6f006-5881-4824-9414-3d9fb8d006b5" + "WESTUS2:20210213T030108Z:844e3d0c-bf9a-4c3c-aa90-d7def5b9ed74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:40 GMT" + "Sat, 13 Feb 2021 03:01:07 GMT" ], "Content-Length": [ - "2306" + "399" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db4\",\r\n \"_rid\": \"6JwAAA==\",\r\n \"_etag\": \"\\\"00005400-0000-0100-0000-5ed572550000\\\"\",\r\n \"_ts\": 1591046741\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"LYwCAA==\",\r\n \"_etag\": \"\\\"00004c00-0000-0100-0000-5ed56b5b0000\\\"\",\r\n \"_ts\": 1591044955\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db124\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db124\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db124\",\r\n \"_rid\": \"7oUHAA==\",\r\n \"_etag\": \"\\\"00006200-0000-0100-0000-5ed57d980000\\\"\",\r\n \"_ts\": 1591049624\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nz1RAA==\",\r\n \"_etag\": \"\\\"00007700-0000-0100-0000-5ee156da0000\\\"\",\r\n \"_ts\": 1591826138\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db123\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db123\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db123\",\r\n \"_rid\": \"DxRbAA==\",\r\n \"_etag\": \"\\\"00005b00-0000-0100-0000-5ed57d0b0000\\\"\",\r\n \"_ts\": 1591049483\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"AAtoAA==\",\r\n \"_etag\": \"\\\"0000b500-0000-0100-0000-5ecd58f50000\\\"\",\r\n \"_ts\": 1590515957\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6+cRAA==\",\r\n \"_etag\": \"\\\"00005200-0000-0100-0000-602740790000\\\"\",\r\n \"_ts\": 1613185145\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c47f508-f41a-40ac-8efa-34c992ee1035" + "abfcf8e1-c9b2-42dd-8979-3ed562050e2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1677,13 +1626,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/9b3e4756-86eb-4583-a113-a837c7c7d49c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9b3e4756-86eb-4583-a113-a837c7c7d49c?api-version=2021-01-15" ], "x-ms-request-id": [ - "b744f443-dcd4-4550-8664-3d9a06522740" + "9b3e4756-86eb-4583-a113-a837c7c7d49c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,47 +1647,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "c440e483-442d-4cdf-a37e-ae7d1b666f73" + "f27b4f25-1756-4e42-9f16-9dc2b208ba1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215741Z:c440e483-442d-4cdf-a37e-ae7d1b666f73" + "WESTUS2:20210213T030108Z:f27b4f25-1756-4e42-9f16-9dc2b208ba1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:57:40 GMT" + "Sat, 13 Feb 2021 03:01:08 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "073cdf5a-9363-48fe-b706-2c7860140c64" + "ffc1e2dc-f813-4195-9596-378ffca01fcb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1749,13 +1695,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/16d63eb9-dfa3-4108-bf28-e7049d5794a0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16d63eb9-dfa3-4108-bf28-e7049d5794a0?api-version=2021-01-15" ], "x-ms-request-id": [ - "7f35e7f8-61bf-4e9b-ad78-958343fb9b6c" + "16d63eb9-dfa3-4108-bf28-e7049d5794a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,44 +1713,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "fd3e4545-6638-4bf1-908a-84bd96a6fc45" + "2c7d883f-5b4e-4d95-b40c-7ed94e960534" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215842Z:fd3e4545-6638-4bf1-908a-84bd96a6fc45" + "WESTUS2:20210213T030212Z:2c7d883f-5b4e-4d95-b40c-7ed94e960534" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:41 GMT" + "Sat, 13 Feb 2021 03:02:11 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjc0NGY0NDMtZGNkNC00NTUwLTg2NjQtM2Q5YTA2NTIyNzQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9b3e4756-86eb-4583-a113-a837c7c7d49c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWIzZTQ3NTYtODZlYi00NTgzLWExMTMtYTgzN2M3YzdkNDljP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "abfcf8e1-c9b2-42dd-8979-3ed562050e2c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1827,44 +1773,44 @@ "11978" ], "x-ms-request-id": [ - "911b0f82-6458-4d59-99f8-d207aa17bb7d" + "fb542001-b1f3-40bd-80fd-056a497d7617" ], "x-ms-correlation-request-id": [ - "911b0f82-6458-4d59-99f8-d207aa17bb7d" + "fb542001-b1f3-40bd-80fd-056a497d7617" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215811Z:911b0f82-6458-4d59-99f8-d207aa17bb7d" + "WESTUS2:20210213T030139Z:fb542001-b1f3-40bd-80fd-056a497d7617" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:10 GMT" + "Sat, 13 Feb 2021 03:01:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy9iNzQ0ZjQ0My1kY2Q0LTQ1NTAtODY2NC0zZDlhMDY1MjI3NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/9b3e4756-86eb-4583-a113-a837c7c7d49c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy85YjNlNDc1Ni04NmViLTQ1ODMtYTExMy1hODM3YzdjN2Q0OWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "abfcf8e1-c9b2-42dd-8979-3ed562050e2c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1887,47 +1833,44 @@ "11977" ], "x-ms-request-id": [ - "0e440b43-8a2f-49cf-9f82-60864d7af085" + "77312bba-8ee7-49dd-8337-0cb126adac06" ], "x-ms-correlation-request-id": [ - "0e440b43-8a2f-49cf-9f82-60864d7af085" + "77312bba-8ee7-49dd-8337-0cb126adac06" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215811Z:0e440b43-8a2f-49cf-9f82-60864d7af085" + "WESTUS2:20210213T030139Z:77312bba-8ee7-49dd-8337-0cb126adac06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:10 GMT" + "Sat, 13 Feb 2021 03:01:39 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/b744f443-dcd4-4550-8664-3d9a06522740?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37eca1b6-80ca-4d00-aec4-7b91e2b666d1" + "56d026d5-b20b-4ea4-89ae-eba9d1b0de3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1938,13 +1881,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/e29b7899-68fb-47fc-b1ef-2c1d220819ec?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e29b7899-68fb-47fc-b1ef-2c1d220819ec?api-version=2021-01-15" ], "x-ms-request-id": [ - "2b21929f-ebd9-4ac3-9ef3-45baab9d27fc" + "e29b7899-68fb-47fc-b1ef-2c1d220819ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,47 +1902,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "55e51cc8-d7ee-40d0-9d54-266198400298" + "d0218320-111a-4013-912d-a17353ba8898" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215812Z:55e51cc8-d7ee-40d0-9d54-266198400298" + "WESTUS2:20210213T030140Z:d0218320-111a-4013-912d-a17353ba8898" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:11 GMT" + "Sat, 13 Feb 2021 03:01:39 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ed3fed4-acc3-48e9-ade1-80b014dd5aac" + "2a9c05a7-9f60-4a5d-8ccf-81ed1ad610e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2010,13 +1950,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/f08f9048-a56e-4600-8ace-4074648b460d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f08f9048-a56e-4600-8ace-4074648b460d?api-version=2021-01-15" ], "x-ms-request-id": [ - "a8e6b76d-d7b1-489a-98d3-a43c88cdbaad" + "f08f9048-a56e-4600-8ace-4074648b460d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,41 +1971,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "e06f6c7b-9aa5-4628-ae55-c3299a097d63" + "9488dae9-f387-4c29-b954-cc97233f5e81" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215914Z:e06f6c7b-9aa5-4628-ae55-c3299a097d63" + "WESTUS2:20210213T030244Z:9488dae9-f387-4c29-b954-cc97233f5e81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:59:13 GMT" + "Sat, 13 Feb 2021 03:02:43 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmIyMTkyOWYtZWJkOS00YWMzLTllZjMtNDViYWFiOWQyN2ZjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e29b7899-68fb-47fc-b1ef-2c1d220819ec?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTI5Yjc4OTktNjhmYi00N2ZjLWIxZWYtMmMxZDIyMDgxOWVjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "56d026d5-b20b-4ea4-89ae-eba9d1b0de3f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2085,47 +2025,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "7f3cbbce-ff40-41bf-aca0-2a906cb1772b" + "99440a39-014e-404e-a25c-02b104b543dd" ], "x-ms-correlation-request-id": [ - "7f3cbbce-ff40-41bf-aca0-2a906cb1772b" + "99440a39-014e-404e-a25c-02b104b543dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215842Z:7f3cbbce-ff40-41bf-aca0-2a906cb1772b" + "WESTUS2:20210213T030211Z:99440a39-014e-404e-a25c-02b104b543dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:41 GMT" + "Sat, 13 Feb 2021 03:02:11 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8yYjIxOTI5Zi1lYmQ5LTRhYzMtOWVmMy00NWJhYWI5ZDI3ZmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/e29b7899-68fb-47fc-b1ef-2c1d220819ec?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9lMjliNzg5OS02OGZiLTQ3ZmMtYjFlZi0yYzFkMjIwODE5ZWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "56d026d5-b20b-4ea4-89ae-eba9d1b0de3f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2145,44 +2085,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "316e9938-9715-4e2f-ac1d-e4be2b852622" + "7d80bfee-2ca1-4b37-ab9e-3ef610a7964f" ], "x-ms-correlation-request-id": [ - "316e9938-9715-4e2f-ac1d-e4be2b852622" + "7d80bfee-2ca1-4b37-ab9e-3ef610a7964f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215842Z:316e9938-9715-4e2f-ac1d-e4be2b852622" + "WESTUS2:20210213T030211Z:7d80bfee-2ca1-4b37-ab9e-3ef610a7964f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:58:41 GMT" + "Sat, 13 Feb 2021 03:02:11 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/2b21929f-ebd9-4ac3-9ef3-45baab9d27fc?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YzNWU3ZjgtNjFiZi00ZTliLWFkNzgtOTU4MzQzZmI5YjZjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/16d63eb9-dfa3-4108-bf28-e7049d5794a0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTZkNjNlYjktZGZhMy00MTA4LWJmMjgtZTcwNDlkNTc5NGEwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ffc1e2dc-f813-4195-9596-378ffca01fcb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,47 +2142,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "8b00a832-05f3-424f-bfda-b50b4bf08476" + "8d5ae008-d44d-4011-8986-9e0a2f1daec0" ], "x-ms-correlation-request-id": [ - "8b00a832-05f3-424f-bfda-b50b4bf08476" + "8d5ae008-d44d-4011-8986-9e0a2f1daec0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215913Z:8b00a832-05f3-424f-bfda-b50b4bf08476" + "WESTUS2:20210213T030242Z:8d5ae008-d44d-4011-8986-9e0a2f1daec0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:59:13 GMT" + "Sat, 13 Feb 2021 03:02:42 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy83ZjM1ZTdmOC02MWJmLTRlOWItYWQ3OC05NTgzNDNmYjliNmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/16d63eb9-dfa3-4108-bf28-e7049d5794a0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8xNmQ2M2ViOS1kZmEzLTQxMDgtYmYyOC1lNzA0OWQ1Nzk0YTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ffc1e2dc-f813-4195-9596-378ffca01fcb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2262,44 +2202,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "53231913-e67b-44b0-87d9-51d8ceb509bb" + "59ef8e97-e9d6-4c77-9813-0378a8d7e661" ], "x-ms-correlation-request-id": [ - "53231913-e67b-44b0-87d9-51d8ceb509bb" + "59ef8e97-e9d6-4c77-9813-0378a8d7e661" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215913Z:53231913-e67b-44b0-87d9-51d8ceb509bb" + "WESTUS2:20210213T030243Z:59ef8e97-e9d6-4c77-9813-0378a8d7e661" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:59:13 GMT" + "Sat, 13 Feb 2021 03:02:42 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/7f35e7f8-61bf-4e9b-ad78-958343fb9b6c?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYThlNmI3NmQtZDdiMS00ODlhLTk4ZDMtYTQzYzg4Y2RiYWFkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f08f9048-a56e-4600-8ace-4074648b460d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjA4ZjkwNDgtYTU2ZS00NjAwLThhY2UtNDA3NDY0OGI0NjBkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a9c05a7-9f60-4a5d-8ccf-81ed1ad610e9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2322,44 +2262,44 @@ "11999" ], "x-ms-request-id": [ - "cd4bd035-e8d6-4e1e-b37a-2f37d6c9e8b6" + "6f434531-d7dd-4517-baa4-f438c5d025a9" ], "x-ms-correlation-request-id": [ - "cd4bd035-e8d6-4e1e-b37a-2f37d6c9e8b6" + "6f434531-d7dd-4517-baa4-f438c5d025a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215944Z:cd4bd035-e8d6-4e1e-b37a-2f37d6c9e8b6" + "WESTUS2:20210213T030314Z:6f434531-d7dd-4517-baa4-f438c5d025a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:59:43 GMT" + "Sat, 13 Feb 2021 03:03:14 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9hOGU2Yjc2ZC1kN2IxLTQ4OWEtOThkMy1hNDNjODhjZGJhYWQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/f08f9048-a56e-4600-8ace-4074648b460d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mMDhmOTA0OC1hNTZlLTQ2MDAtOGFjZS00MDc0NjQ4YjQ2MGQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a9c05a7-9f60-4a5d-8ccf-81ed1ad610e9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2382,25 +2322,22 @@ "11998" ], "x-ms-request-id": [ - "ba64b808-eb50-4ba2-9444-c2f46faf74d2" + "5230d086-77e6-4a11-afd6-eceb75f93921" ], "x-ms-correlation-request-id": [ - "ba64b808-eb50-4ba2-9444-c2f46faf74d2" + "5230d086-77e6-4a11-afd6-eceb75f93921" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215944Z:ba64b808-eb50-4ba2-9444-c2f46faf74d2" + "WESTUS2:20210213T030314Z:5230d086-77e6-4a11-afd6-eceb75f93921" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:59:43 GMT" + "Sat, 13 Feb 2021 03:03:14 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/a8e6b76d-d7b1-489a-98d3-a43c88cdbaad?api-version=2020-04-01" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdletsUsingInputObject.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdletsUsingInputObject.json index 3de09e851ce6..4d0c1acfd0d9 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdletsUsingInputObject.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoOperationsCmdletsUsingInputObject.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "422c1046-1e6f-4c4b-98b5-308970bfcf06" + "b6fd6be3-eb61-4743-a1d7-8f95546f039c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,53 +36,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "fc1861ec-38f0-4409-a4ee-6e98ae3c5940" + "a4e2d312-110a-4735-b7e2-398adf1fb8b4" ], "x-ms-correlation-request-id": [ - "fc1861ec-38f0-4409-a4ee-6e98ae3c5940" + "a4e2d312-110a-4735-b7e2-398adf1fb8b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215013Z:fc1861ec-38f0-4409-a4ee-6e98ae3c5940" + "WESTUS2:20210213T025336Z:a4e2d312-110a-4735-b7e2-398adf1fb8b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:13 GMT" + "Sat, 13 Feb 2021 02:53:36 GMT" ], "Content-Length": [ - "1742" + "2192" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T19:15:07.9711767Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"ab545459-41a1-41fe-83e3-bc36bfbad31c\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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\": \"AllowSelfServeUpgradeToMongo36\"\r\n },\r\n {\r\n \"name\": \"DisableRateLimitingResponses\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efde2c72-f67c-4f66-9016-a408bec15755" + "7f93c322-92ef-4bf6-a6f8-e947e4f5fa09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -102,47 +99,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "3cfd090d-7b79-401e-b4d4-2cbd0a71803d" + "cbaf7062-256f-491a-b893-1d7dd27842cb" ], "x-ms-correlation-request-id": [ - "3cfd090d-7b79-401e-b4d4-2cbd0a71803d" + "cbaf7062-256f-491a-b893-1d7dd27842cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215014Z:3cfd090d-7b79-401e-b4d4-2cbd0a71803d" + "WESTUS2:20210213T025337Z:cbaf7062-256f-491a-b893-1d7dd27842cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:13 GMT" + "Sat, 13 Feb 2021 02:53:36 GMT" ], "Content-Length": [ - "1709" + "1778" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: efde2c72-f67c-4f66-9016-a408bec15755, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:50:14.4262343Z, RequestEndTime: 2020-06-10T21:50:14.4262343Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:50:14.4262343Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 643, GlobalCommittedLsn: 643, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#643, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:50:14.4262343Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 643, GlobalCommittedLsn: 643, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#643, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 7f93c322-92ef-4bf6-a6f8-e947e4f5fa09, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:53:37.3580578Z, RequestEndTime: 2021-02-13T02:53:37.3580578Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:53:37.3580578Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1397, GlobalCommittedLsn: 1397, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1397, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:53:37.3580578Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1397, GlobalCommittedLsn: 1397, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1397, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7f93c322-92ef-4bf6-a6f8-e947e4f5fa09" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -162,53 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "eeeb7e88-c75d-434a-a603-75608d67f549" + "9b3e602b-a6ec-40b7-9c06-e1dac4e7adb4" ], "x-ms-correlation-request-id": [ - "eeeb7e88-c75d-434a-a603-75608d67f549" + "9b3e602b-a6ec-40b7-9c06-e1dac4e7adb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215046Z:eeeb7e88-c75d-434a-a603-75608d67f549" + "WESTUS2:20210213T025408Z:9b3e602b-a6ec-40b7-9c06-e1dac4e7adb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:45 GMT" + "Sat, 13 Feb 2021 02:54:08 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e78ca66-675f-45ba-995e-e9da6f91a88d" + "93e51d70-ff76-40d2-aa36-d4cf7323d365" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,53 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "dad88f49-1be9-4fe9-99e1-8531001ee4e4" + "b55c527e-c2d5-40d0-8155-aa5b93d687ba" ], "x-ms-correlation-request-id": [ - "dad88f49-1be9-4fe9-99e1-8531001ee4e4" + "b55c527e-c2d5-40d0-8155-aa5b93d687ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215046Z:dad88f49-1be9-4fe9-99e1-8531001ee4e4" + "WESTUS2:20210213T025409Z:b55c527e-c2d5-40d0-8155-aa5b93d687ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:45 GMT" + "Sat, 13 Feb 2021 02:54:08 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "089a7208-cb3e-48ae-b4df-72729fe6f8d6" + "f263ec07-1a90-45a5-9eab-dbee8006b795" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -294,53 +285,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "83878edb-58e6-42a1-9048-d75bdb548858" + "d85b8084-ef06-4f3b-86ea-d222f4c18305" ], "x-ms-correlation-request-id": [ - "83878edb-58e6-42a1-9048-d75bdb548858" + "d85b8084-ef06-4f3b-86ea-d222f4c18305" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215118Z:83878edb-58e6-42a1-9048-d75bdb548858" + "WESTUS2:20210213T025441Z:d85b8084-ef06-4f3b-86ea-d222f4c18305" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:18 GMT" + "Sat, 13 Feb 2021 02:54:40 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0e5876d-fcf2-4676-ba2e-4e6c263d71fd" + "db11fcf0-ea71-44eb-9db2-2ab807456c10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -360,47 +348,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11982" ], "x-ms-request-id": [ - "b7409046-4998-4a2d-947e-d4c65c69bc7e" + "7a0c1a07-594f-4c62-9640-49cffa03249a" ], "x-ms-correlation-request-id": [ - "b7409046-4998-4a2d-947e-d4c65c69bc7e" + "7a0c1a07-594f-4c62-9640-49cffa03249a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215118Z:b7409046-4998-4a2d-947e-d4c65c69bc7e" + "WESTUS2:20210213T025442Z:7a0c1a07-594f-4c62-9640-49cffa03249a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:18 GMT" + "Sat, 13 Feb 2021 02:54:41 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "db11fcf0-ea71-44eb-9db2-2ab807456c10" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -420,53 +408,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "ba2b3ecd-f08f-446b-bd13-a95607e6567a" + "e65a39e6-b64b-4035-882c-a6d0da434100" ], "x-ms-correlation-request-id": [ - "ba2b3ecd-f08f-446b-bd13-a95607e6567a" + "e65a39e6-b64b-4035-882c-a6d0da434100" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215150Z:ba2b3ecd-f08f-446b-bd13-a95607e6567a" + "WESTUS2:20210213T025513Z:e65a39e6-b64b-4035-882c-a6d0da434100" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:49 GMT" + "Sat, 13 Feb 2021 02:55:13 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2e05c6e-39e6-488b-83eb-5d1146ea94c7" + "bd557ed0-b28a-47cc-9733-c19b6839fc35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -486,47 +471,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "d8c7cb5e-16bb-4678-8e6e-e4ac5978006d" + "1dce6c94-ce2f-4d91-a7d0-80a72ac673bd" ], "x-ms-correlation-request-id": [ - "d8c7cb5e-16bb-4678-8e6e-e4ac5978006d" + "1dce6c94-ce2f-4d91-a7d0-80a72ac673bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215150Z:d8c7cb5e-16bb-4678-8e6e-e4ac5978006d" + "WESTUS2:20210213T025514Z:1dce6c94-ce2f-4d91-a7d0-80a72ac673bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:50 GMT" + "Sat, 13 Feb 2021 02:55:13 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd557ed0-b28a-47cc-9733-c19b6839fc35" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -546,53 +531,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-request-id": [ - "5b576f48-66dc-4298-ad83-c7d97c085ace" + "87ff2f08-709e-42d3-8fff-31285c43efbc" ], "x-ms-correlation-request-id": [ - "5b576f48-66dc-4298-ad83-c7d97c085ace" + "87ff2f08-709e-42d3-8fff-31285c43efbc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215221Z:5b576f48-66dc-4298-ad83-c7d97c085ace" + "WESTUS2:20210213T025545Z:87ff2f08-709e-42d3-8fff-31285c43efbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:21 GMT" + "Sat, 13 Feb 2021 02:55:44 GMT" ], "Content-Length": [ "387" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "c786f415-a0d9-4322-a99b-42131d967c43" + "7f93c322-92ef-4bf6-a6f8-e947e4f5fa09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -609,13 +591,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/1b431000-6773-4f34-b96a-018fb0f1edbf?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/5d6b51a9-8b0f-4704-8df8-2a786b4a7489?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b431000-6773-4f34-b96a-018fb0f1edbf?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d6b51a9-8b0f-4704-8df8-2a786b4a7489?api-version=2021-01-15" ], "x-ms-request-id": [ - "1b431000-6773-4f34-b96a-018fb0f1edbf" + "5d6b51a9-8b0f-4704-8df8-2a786b4a7489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -630,47 +612,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "4f93b4fe-fe0d-4235-8825-1a755b9eac94" + "6fa43aed-7db7-4f0e-98e5-c22bd9f6d6e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215015Z:4f93b4fe-fe0d-4235-8825-1a755b9eac94" + "WESTUS2:20210213T025337Z:6fa43aed-7db7-4f0e-98e5-c22bd9f6d6e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:14 GMT" + "Sat, 13 Feb 2021 02:53:37 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9996f6c4-cd0f-4c49-bd21-7bb5c032ce64" + "db11fcf0-ea71-44eb-9db2-2ab807456c10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,13 +666,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/e9faeb4e-d8ef-4fe5-b735-60d61ff1cdca?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/c6966099-851e-4fb7-9028-21e2ef9b1ee7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e9faeb4e-d8ef-4fe5-b735-60d61ff1cdca?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c6966099-851e-4fb7-9028-21e2ef9b1ee7?api-version=2021-01-15" ], "x-ms-request-id": [ - "e9faeb4e-d8ef-4fe5-b735-60d61ff1cdca" + "c6966099-851e-4fb7-9028-21e2ef9b1ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,47 +687,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "88fbba2e-464c-4bb5-b3c5-11a67aa509a4" + "ba54fd1a-d616-4c21-9412-d9bfbb5c7a13" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215119Z:88fbba2e-464c-4bb5-b3c5-11a67aa509a4" + "WESTUS2:20210213T025443Z:ba54fd1a-d616-4c21-9412-d9bfbb5c7a13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:19 GMT" + "Sat, 13 Feb 2021 02:54:42 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "d034fd6b-6df1-4074-a977-e756fd0b6390" + "bd557ed0-b28a-47cc-9733-c19b6839fc35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,13 +741,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/3387baeb-1270-48d5-a52c-f0bb5d066aa6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/941a1a4d-5ee2-4e9f-8993-ad091796ec49?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3387baeb-1270-48d5-a52c-f0bb5d066aa6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/941a1a4d-5ee2-4e9f-8993-ad091796ec49?api-version=2021-01-15" ], "x-ms-request-id": [ - "3387baeb-1270-48d5-a52c-f0bb5d066aa6" + "941a1a4d-5ee2-4e9f-8993-ad091796ec49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -786,41 +762,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "f40babd5-fb18-4898-a499-947ff65acacb" + "2a60dd2c-c9c4-440e-bfa3-5ae511085325" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215151Z:f40babd5-fb18-4898-a499-947ff65acacb" + "WESTUS2:20210213T025514Z:2a60dd2c-c9c4-440e-bfa3-5ae511085325" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:50 GMT" + "Sat, 13 Feb 2021 02:55:14 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b431000-6773-4f34-b96a-018fb0f1edbf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWI0MzEwMDAtNjc3My00ZjM0LWI5NmEtMDE4ZmIwZjFlZGJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d6b51a9-8b0f-4704-8df8-2a786b4a7489?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWQ2YjUxYTktOGIwZi00NzA0LThkZjgtMmE3ODZiNGE3NDg5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7f93c322-92ef-4bf6-a6f8-e947e4f5fa09" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -840,53 +816,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "658bdf40-cd58-4aff-a9ce-fdc5c9e2e27d" + "6bca4ce5-3919-49a1-afce-36ead434ca53" ], "x-ms-correlation-request-id": [ - "658bdf40-cd58-4aff-a9ce-fdc5c9e2e27d" + "6bca4ce5-3919-49a1-afce-36ead434ca53" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215045Z:658bdf40-cd58-4aff-a9ce-fdc5c9e2e27d" + "WESTUS2:20210213T025408Z:6bca4ce5-3919-49a1-afce-36ead434ca53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:45 GMT" + "Sat, 13 Feb 2021 02:54:08 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b431000-6773-4f34-b96a-018fb0f1edbf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4e173fe-c246-4a1d-b2a5-6139bfc5afe4" + "3044aabc-014e-4b51-b4bd-85fab25b2f99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -906,47 +879,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "58dcee9a-9c1f-453d-9b03-de1bbca1a819" + "8c711119-1d0f-4f4d-9714-f13307be4a0f" ], "x-ms-correlation-request-id": [ - "58dcee9a-9c1f-453d-9b03-de1bbca1a819" + "8c711119-1d0f-4f4d-9714-f13307be4a0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215046Z:58dcee9a-9c1f-453d-9b03-de1bbca1a819" + "WESTUS2:20210213T025409Z:8c711119-1d0f-4f4d-9714-f13307be4a0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:45 GMT" + "Sat, 13 Feb 2021 02:54:09 GMT" ], "Content-Length": [ - "1731" + "1800" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: d4e173fe-c246-4a1d-b2a5-6139bfc5afe4, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:50:46.4445498Z, RequestEndTime: 2020-06-10T21:50:46.4445498Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:50:46.4445498Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 644, GlobalCommittedLsn: 644, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#644, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:50:46.4445498Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 644, GlobalCommittedLsn: 644, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#644, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 3044aabc-014e-4b51-b4bd-85fab25b2f99, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:54:09.3104766Z, RequestEndTime: 2021-02-13T02:54:09.3104766Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:54:09.3104766Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1398, GlobalCommittedLsn: 1398, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1398, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:54:09.3104766Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1398, GlobalCommittedLsn: 1398, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1398, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3044aabc-014e-4b51-b4bd-85fab25b2f99" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -966,53 +939,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "b24988d0-903e-48bc-9388-9c388f3736fb" + "ecfdfccc-cfb9-4b92-82a9-753d30dcef1b" ], "x-ms-correlation-request-id": [ - "b24988d0-903e-48bc-9388-9c388f3736fb" + "ecfdfccc-cfb9-4b92-82a9-753d30dcef1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215117Z:b24988d0-903e-48bc-9388-9c388f3736fb" + "WESTUS2:20210213T025440Z:ecfdfccc-cfb9-4b92-82a9-753d30dcef1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:17 GMT" + "Sat, 13 Feb 2021 02:54:40 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00006900-0000-0100-0000-5ee155ba0000\\\"\",\r\n \"_ts\": 1591825850,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004400-0000-0100-0000-60273f550000\\\"\",\r\n \"_ts\": 1613184853,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ccc717c-c05c-47f6-9649-643d5ee1352b" + "642f938e-4d7d-46ba-a512-eba9e5a1c92d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1032,53 +1002,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "2c1db0e7-f8d4-48d4-8269-e739cefdf48a" + "eff83579-af44-402e-adad-9b917373de82" ], "x-ms-correlation-request-id": [ - "2c1db0e7-f8d4-48d4-8269-e739cefdf48a" + "eff83579-af44-402e-adad-9b917373de82" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215117Z:2c1db0e7-f8d4-48d4-8269-e739cefdf48a" + "WESTUS2:20210213T025441Z:eff83579-af44-402e-adad-9b917373de82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:17 GMT" + "Sat, 13 Feb 2021 02:54:40 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00006900-0000-0100-0000-5ee155ba0000\\\"\",\r\n \"_ts\": 1591825850,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004400-0000-0100-0000-60273f550000\\\"\",\r\n \"_ts\": 1613184853,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf2a712-8829-4896-ba7f-2b7ec1887f2e" + "95e0c2e2-0a26-47c0-9aee-c1d140f52d50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1098,53 +1065,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-request-id": [ - "515dc638-73a3-4e10-8fab-54be53ece084" + "724aad48-7204-4e6f-8454-0c163ca1dcee" ], "x-ms-correlation-request-id": [ - "515dc638-73a3-4e10-8fab-54be53ece084" + "724aad48-7204-4e6f-8454-0c163ca1dcee" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215118Z:515dc638-73a3-4e10-8fab-54be53ece084" + "WESTUS2:20210213T025441Z:724aad48-7204-4e6f-8454-0c163ca1dcee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:18 GMT" + "Sat, 13 Feb 2021 02:54:40 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00006900-0000-0100-0000-5ee155ba0000\\\"\",\r\n \"_ts\": 1591825850,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004400-0000-0100-0000-60273f550000\\\"\",\r\n \"_ts\": 1613184853,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "364aa913-45b7-4622-b50d-25c77b0554d3" + "dda71d17-b073-421f-8c40-5b9cd11fac5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1164,47 +1128,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "1c18f338-0452-4ce0-a05c-d57a2eac616e" + "bb46a6a2-0d21-4d77-880c-3d7e245295ac" ], "x-ms-correlation-request-id": [ - "1c18f338-0452-4ce0-a05c-d57a2eac616e" + "bb46a6a2-0d21-4d77-880c-3d7e245295ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215222Z:1c18f338-0452-4ce0-a05c-d57a2eac616e" + "WESTUS2:20210213T025546Z:bb46a6a2-0d21-4d77-880c-3d7e245295ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:21 GMT" + "Sat, 13 Feb 2021 02:55:45 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00006900-0000-0100-0000-5ee155ba0000\\\"\",\r\n \"_ts\": 1591825850,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004400-0000-0100-0000-60273f550000\\\"\",\r\n \"_ts\": 1613184853,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dda71d17-b073-421f-8c40-5b9cd11fac5d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1224,53 +1188,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11974" ], "x-ms-request-id": [ - "a5674301-bee1-424b-ab6d-9fe117547295" + "32cdf7b9-c4a4-4238-888b-c76b51cfa2e6" ], "x-ms-correlation-request-id": [ - "a5674301-bee1-424b-ab6d-9fe117547295" + "32cdf7b9-c4a4-4238-888b-c76b51cfa2e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215253Z:a5674301-bee1-424b-ab6d-9fe117547295" + "WESTUS2:20210213T025617Z:32cdf7b9-c4a4-4238-888b-c76b51cfa2e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:52 GMT" + "Sat, 13 Feb 2021 02:56:17 GMT" ], "Content-Length": [ "654" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00007300-0000-0100-0000-5ee1561a0000\\\"\",\r\n \"_ts\": 1591825946,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004e00-0000-0100-0000-60273fb60000\\\"\",\r\n \"_ts\": 1613184950,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4a1c886-58b7-48b1-931a-ab1b42badbf9" + "2b29bcab-85b0-4133-ab65-2be60070dd43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1290,47 +1251,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11973" ], "x-ms-request-id": [ - "ed4254f6-a9c0-44e8-b904-699ee32ba83c" + "061b7f4c-0784-445a-9ded-0234345b57bf" ], "x-ms-correlation-request-id": [ - "ed4254f6-a9c0-44e8-b904-699ee32ba83c" + "061b7f4c-0784-445a-9ded-0234345b57bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215253Z:ed4254f6-a9c0-44e8-b904-699ee32ba83c" + "WESTUS2:20210213T025617Z:061b7f4c-0784-445a-9ded-0234345b57bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:53 GMT" + "Sat, 13 Feb 2021 02:56:17 GMT" ], "Content-Length": [ "654" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00007300-0000-0100-0000-5ee1561a0000\\\"\",\r\n \"_ts\": 1591825946,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00004e00-0000-0100-0000-60273fb60000\\\"\",\r\n \"_ts\": 1613184950,\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 \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\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 }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b29bcab-85b0-4133-ab65-2be60070dd43" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1350,53 +1311,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11971" ], "x-ms-request-id": [ - "d0de185a-f881-4b2e-8034-32d7c7d71a58" + "27b99a4e-e147-4fa7-b32c-35c1e00a5f40" ], "x-ms-correlation-request-id": [ - "d0de185a-f881-4b2e-8034-32d7c7d71a58" + "27b99a4e-e147-4fa7-b32c-35c1e00a5f40" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215324Z:d0de185a-f881-4b2e-8034-32d7c7d71a58" + "WESTUS2:20210213T025649Z:27b99a4e-e147-4fa7-b32c-35c1e00a5f40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:23 GMT" + "Sat, 13 Feb 2021 02:56:48 GMT" ], "Content-Length": [ "723" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00007500-0000-0100-0000-5ee156390000\\\"\",\r\n \"_ts\": 1591825977,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00005000-0000-0100-0000-60273fd50000\\\"\",\r\n \"_ts\": 1613184981,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"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": [ - "2f5932d1-c495-4768-81f1-5407ed75c99d" + "3044aabc-014e-4b51-b4bd-85fab25b2f99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1413,13 +1371,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/d1db4885-4b7e-4bc7-8940-b5c78e42584d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/66799629-e1bf-48ef-a763-091cf0cf4a5e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1db4885-4b7e-4bc7-8940-b5c78e42584d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66799629-e1bf-48ef-a763-091cf0cf4a5e?api-version=2021-01-15" ], "x-ms-request-id": [ - "d1db4885-4b7e-4bc7-8940-b5c78e42584d" + "66799629-e1bf-48ef-a763-091cf0cf4a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,47 +1392,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "45f77f94-3854-4228-b656-8ffa1e0517b9" + "52694318-d512-4b89-87ad-089c1370eaa4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215046Z:45f77f94-3854-4228-b656-8ffa1e0517b9" + "WESTUS2:20210213T025410Z:52694318-d512-4b89-87ad-089c1370eaa4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:50:46 GMT" + "Sat, 13 Feb 2021 02:54:09 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"_ts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"partitionkey1\",\r\n \"partitionkey2\",\r\n \"partitionkey3\"\r\n ]\r\n },\r\n \"options\": {\r\n \"unique\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "76e763b3-cf5f-4110-99f1-2e582e46afbd" + "dda71d17-b073-421f-8c40-5b9cd11fac5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1491,13 +1446,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/a63be89e-aa8b-4e34-8228-24912d4369df?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/2cfd2209-abfa-4b15-9eab-15573c956d47?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a63be89e-aa8b-4e34-8228-24912d4369df?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2cfd2209-abfa-4b15-9eab-15573c956d47?api-version=2021-01-15" ], "x-ms-request-id": [ - "a63be89e-aa8b-4e34-8228-24912d4369df" + "2cfd2209-abfa-4b15-9eab-15573c956d47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,47 +1467,44 @@ "1195" ], "x-ms-correlation-request-id": [ - "d07c6f81-7354-4bb4-8d26-681337893bdd" + "0121cb2c-026c-4c76-906c-f49e3bce72ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215222Z:d07c6f81-7354-4bb4-8d26-681337893bdd" + "WESTUS2:20210213T025547Z:0121cb2c-026c-4c76-906c-f49e3bce72ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:22 GMT" + "Sat, 13 Feb 2021 02:55:46 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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 \"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": [ - "9d13aecf-5f8c-43ff-9de8-ede0bbf9e923" + "2b29bcab-85b0-4133-ab65-2be60070dd43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1569,13 +1521,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/43f4f9f3-6c27-4768-b62e-326f15886a27?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/28e2cd97-e9d4-43c1-9a43-0bd559505746?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43f4f9f3-6c27-4768-b62e-326f15886a27?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/28e2cd97-e9d4-43c1-9a43-0bd559505746?api-version=2021-01-15" ], "x-ms-request-id": [ - "43f4f9f3-6c27-4768-b62e-326f15886a27" + "28e2cd97-e9d4-43c1-9a43-0bd559505746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1590,41 +1542,41 @@ "1194" ], "x-ms-correlation-request-id": [ - "d5c2603e-7ed2-4d55-ab3e-91ae5f65d6d2" + "fa27064b-6b22-4d2f-8d47-d6290d46028b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215254Z:d5c2603e-7ed2-4d55-ab3e-91ae5f65d6d2" + "WESTUS2:20210213T025618Z:fa27064b-6b22-4d2f-8d47-d6290d46028b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:53 GMT" + "Sat, 13 Feb 2021 02:56:17 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1db4885-4b7e-4bc7-8940-b5c78e42584d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFkYjQ4ODUtNGI3ZS00YmM3LTg5NDAtYjVjNzhlNDI1ODRkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/66799629-e1bf-48ef-a763-091cf0cf4a5e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjY3OTk2MjktZTFiZi00OGVmLWE3NjMtMDkxY2YwY2Y0YTVlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3044aabc-014e-4b51-b4bd-85fab25b2f99" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1644,53 +1596,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "46537fcd-4352-4470-8e3a-b69ebffd9512" + "e1eac9d4-56ad-4f81-975a-7e7f30206656" ], "x-ms-correlation-request-id": [ - "46537fcd-4352-4470-8e3a-b69ebffd9512" + "e1eac9d4-56ad-4f81-975a-7e7f30206656" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215117Z:46537fcd-4352-4470-8e3a-b69ebffd9512" + "WESTUS2:20210213T025440Z:e1eac9d4-56ad-4f81-975a-7e7f30206656" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:17 GMT" + "Sat, 13 Feb 2021 02:54:39 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1db4885-4b7e-4bc7-8940-b5c78e42584d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7026e1d6-1e65-4900-abe3-d943fd498544" + "6123d701-7cd4-46b5-9846-bcfa6c3bd518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1710,53 +1659,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-request-id": [ - "003e734a-87ef-414b-9c84-576bf7a0f38f" + "4b95e912-2cf3-4bbc-8c26-f1316e6d7719" ], "x-ms-correlation-request-id": [ - "003e734a-87ef-414b-9c84-576bf7a0f38f" + "4b95e912-2cf3-4bbc-8c26-f1316e6d7719" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215118Z:003e734a-87ef-414b-9c84-576bf7a0f38f" + "WESTUS2:20210213T025441Z:4b95e912-2cf3-4bbc-8c26-f1316e6d7719" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:18 GMT" + "Sat, 13 Feb 2021 02:54:41 GMT" ], "Content-Length": [ - "1710" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 7026e1d6-1e65-4900-abe3-d943fd498544, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:51:18.5511961Z, RequestEndTime: 2020-06-10T21:51:18.5511961Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:51:18.5511961Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 645, GlobalCommittedLsn: 645, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#645, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:51:18.5511961Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 645, GlobalCommittedLsn: 645, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#645, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 6123d701-7cd4-46b5-9846-bcfa6c3bd518, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:54:41.9285349Z, RequestEndTime: 2021-02-13T02:54:41.9285349Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:54:41.9285349Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1399, GlobalCommittedLsn: 1399, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1399, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:54:41.9285349Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1399, GlobalCommittedLsn: 1399, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1399, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b69aeb8d-729f-4e54-b92f-854cfd28f1b1" + "677896e0-47b9-4ee8-9c29-0b7fc4e5c179" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1776,47 +1722,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11983" ], "x-ms-request-id": [ - "ad928bab-6f12-48d6-9863-da61daf4622c" + "0b72d3e0-9193-4073-9302-0af20a91d8b0" ], "x-ms-correlation-request-id": [ - "ad928bab-6f12-48d6-9863-da61daf4622c" + "0b72d3e0-9193-4073-9302-0af20a91d8b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215118Z:ad928bab-6f12-48d6-9863-da61daf4622c" + "WESTUS2:20210213T025442Z:0b72d3e0-9193-4073-9302-0af20a91d8b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:18 GMT" + "Sat, 13 Feb 2021 02:54:41 GMT" ], "Content-Length": [ - "1731" + "1800" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: b69aeb8d-729f-4e54-b92f-854cfd28f1b1, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:51:18.7512663Z, RequestEndTime: 2020-06-10T21:51:18.7512663Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:51:18.7512663Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 645, GlobalCommittedLsn: 645, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#645, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:51:18.7512663Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, LSN: 645, GlobalCommittedLsn: 645, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#645, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 677896e0-47b9-4ee8-9c29-0b7fc4e5c179, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:54:42.2386084Z, RequestEndTime: 2021-02-13T02:54:42.2386084Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:54:42.2386084Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1399, GlobalCommittedLsn: 1399, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1399, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:54:42.2386084Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1399, GlobalCommittedLsn: 1399, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1399, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/collection2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e9faeb4e-d8ef-4fe5-b735-60d61ff1cdca?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTlmYWViNGUtZDhlZi00ZmU1LWI3MzUtNjBkNjFmZjFjZGNhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c6966099-851e-4fb7-9028-21e2ef9b1ee7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzY5NjYwOTktODUxZS00ZmI3LTkwMjgtMjFlMmVmOWIxZWU3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "db11fcf0-ea71-44eb-9db2-2ab807456c10" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1836,53 +1782,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "180a5964-49bd-4c19-bc7e-8e110ea9b8f4" + "0779167e-e9d0-4774-95b3-a3f6a41fac71" ], "x-ms-correlation-request-id": [ - "180a5964-49bd-4c19-bc7e-8e110ea9b8f4" + "0779167e-e9d0-4774-95b3-a3f6a41fac71" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215149Z:180a5964-49bd-4c19-bc7e-8e110ea9b8f4" + "WESTUS2:20210213T025513Z:0779167e-e9d0-4774-95b3-a3f6a41fac71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:49 GMT" + "Sat, 13 Feb 2021 02:55:13 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e9faeb4e-d8ef-4fe5-b735-60d61ff1cdca?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6c9e7a-3755-4899-865a-7e86f1636c6c" + "a54166e3-3a85-427d-9f23-c3a6e59fcdb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1902,53 +1845,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "51ef4d7b-acfb-4706-8132-f2bdeb8b0201" + "d31252b0-3853-4217-b5c6-96bc4b9749a4" ], "x-ms-correlation-request-id": [ - "51ef4d7b-acfb-4706-8132-f2bdeb8b0201" + "d31252b0-3853-4217-b5c6-96bc4b9749a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215150Z:51ef4d7b-acfb-4706-8132-f2bdeb8b0201" + "WESTUS2:20210213T025514Z:d31252b0-3853-4217-b5c6-96bc4b9749a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:51:50 GMT" + "Sat, 13 Feb 2021 02:55:13 GMT" ], "Content-Length": [ "374" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"-Wgo\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"UJK5\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e68d5e02-8da2-448c-ace3-0b3af1dbe112" + "cf175031-9f72-4134-89f2-069a5067025d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1968,47 +1908,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "7fe01aac-a7fe-4625-a851-0064c8e91306" + "3082fdf9-d664-4d8a-9279-0a2ad5e299a0" ], "x-ms-correlation-request-id": [ - "7fe01aac-a7fe-4625-a851-0064c8e91306" + "3082fdf9-d664-4d8a-9279-0a2ad5e299a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215221Z:7fe01aac-a7fe-4625-a851-0064c8e91306" + "WESTUS2:20210213T025545Z:3082fdf9-d664-4d8a-9279-0a2ad5e299a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:21 GMT" + "Sat, 13 Feb 2021 02:55:44 GMT" ], "Content-Length": [ "374" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"-Wgo\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"UJK5\",\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/3387baeb-1270-48d5-a52c-f0bb5d066aa6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzM4N2JhZWItMTI3MC00OGQ1LWE1MmMtZjBiYjVkMDY2YWE2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/941a1a4d-5ee2-4e9f-8993-ad091796ec49?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQxYTFhNGQtNWVlMi00ZTlmLTg5OTMtYWQwOTE3OTZlYzQ5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bd557ed0-b28a-47cc-9733-c19b6839fc35" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2028,47 +1968,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "0417b3f0-905a-40c6-9596-b84810f8b14a" + "aacb2894-34d9-429c-94d0-932e4b40e4f8" ], "x-ms-correlation-request-id": [ - "0417b3f0-905a-40c6-9596-b84810f8b14a" + "aacb2894-34d9-429c-94d0-932e4b40e4f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215221Z:0417b3f0-905a-40c6-9596-b84810f8b14a" + "WESTUS2:20210213T025545Z:aacb2894-34d9-429c-94d0-932e4b40e4f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:21 GMT" + "Sat, 13 Feb 2021 02:55:44 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3387baeb-1270-48d5-a52c-f0bb5d066aa6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a63be89e-aa8b-4e34-8228-24912d4369df?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTYzYmU4OWUtYWE4Yi00ZTM0LTgyMjgtMjQ5MTJkNDM2OWRmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2cfd2209-abfa-4b15-9eab-15573c956d47?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmNmZDIyMDktYWJmYS00YjE1LTllYWItMTU1NzNjOTU2ZDQ3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dda71d17-b073-421f-8c40-5b9cd11fac5d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,47 +2028,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-request-id": [ - "2693d2b6-b271-4e91-a67e-09ef5fe90f3f" + "69c3c1fd-4ad3-46c9-9b64-44753014d263" ], "x-ms-correlation-request-id": [ - "2693d2b6-b271-4e91-a67e-09ef5fe90f3f" + "69c3c1fd-4ad3-46c9-9b64-44753014d263" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215253Z:2693d2b6-b271-4e91-a67e-09ef5fe90f3f" + "WESTUS2:20210213T025617Z:69c3c1fd-4ad3-46c9-9b64-44753014d263" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:52:52 GMT" + "Sat, 13 Feb 2021 02:56:16 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a63be89e-aa8b-4e34-8228-24912d4369df?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43f4f9f3-6c27-4768-b62e-326f15886a27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDNmNGY5ZjMtNmMyNy00NzY4LWI2MmUtMzI2ZjE1ODg2YTI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/28e2cd97-e9d4-43c1-9a43-0bd559505746?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjhlMmNkOTctZTlkNC00M2MxLTlhNDMtMGJkNTU5NTA1NzQ2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b29bcab-85b0-4133-ab65-2be60070dd43" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,53 +2088,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11972" ], "x-ms-request-id": [ - "b36376e2-12be-4d79-9c15-4e0a4941505b" + "c01740b5-30a3-4367-bda5-d98f05decf1a" ], "x-ms-correlation-request-id": [ - "b36376e2-12be-4d79-9c15-4e0a4941505b" + "c01740b5-30a3-4367-bda5-d98f05decf1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215324Z:b36376e2-12be-4d79-9c15-4e0a4941505b" + "WESTUS2:20210213T025648Z:c01740b5-30a3-4367-bda5-d98f05decf1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:23 GMT" + "Sat, 13 Feb 2021 02:56:47 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43f4f9f3-6c27-4768-b62e-326f15886a27?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "908a9d2f-552c-40f4-9f94-7dd4f96e0908" + "39e43689-a768-4caa-bca3-d0d98801f341" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2214,53 +2151,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11970" ], "x-ms-request-id": [ - "e31b9547-ebe0-4068-8b57-a436168aaf53" + "c86c4f8d-5d4d-4737-97cc-2d6858acc39d" ], "x-ms-correlation-request-id": [ - "e31b9547-ebe0-4068-8b57-a436168aaf53" + "c86c4f8d-5d4d-4737-97cc-2d6858acc39d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215324Z:e31b9547-ebe0-4068-8b57-a436168aaf53" + "WESTUS2:20210213T025649Z:c86c4f8d-5d4d-4737-97cc-2d6858acc39d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:24 GMT" + "Sat, 13 Feb 2021 02:56:49 GMT" ], "Content-Length": [ "735" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"TaZfALYUuQc=\",\r\n \"_etag\": \"\\\"00007500-0000-0100-0000-5ee156390000\\\"\",\r\n \"_ts\": 1591825977,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"_rid\": \"L7NIAJmPKnc=\",\r\n \"_etag\": \"\\\"00005000-0000-0100-0000-60273fd50000\\\"\",\r\n \"_ts\": 1613184981,\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 \"options\": {}\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 \"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 \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd51d13-440e-4944-aadb-3977fd4c3483" + "73760f22-f1c5-4be7-a677-62a20afe1217" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2280,53 +2214,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11969" ], "x-ms-request-id": [ - "746a5f45-e617-49eb-bca1-a0a7acfd7b38" + "4c3eae54-e1dc-4b24-bdae-7c02ffb0067c" ], "x-ms-correlation-request-id": [ - "746a5f45-e617-49eb-bca1-a0a7acfd7b38" + "4c3eae54-e1dc-4b24-bdae-7c02ffb0067c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215324Z:746a5f45-e617-49eb-bca1-a0a7acfd7b38" + "WESTUS2:20210213T025650Z:4c3eae54-e1dc-4b24-bdae-7c02ffb0067c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:24 GMT" + "Sat, 13 Feb 2021 02:56:49 GMT" ], "Content-Length": [ - "2306" + "399" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db4\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db4\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db4\",\r\n \"_rid\": \"6JwAAA==\",\r\n \"_etag\": \"\\\"00005400-0000-0100-0000-5ed572550000\\\"\",\r\n \"_ts\": 1591046741\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db2\",\r\n \"_rid\": \"LYwCAA==\",\r\n \"_etag\": \"\\\"00004c00-0000-0100-0000-5ed56b5b0000\\\"\",\r\n \"_ts\": 1591044955\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db124\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db124\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db124\",\r\n \"_rid\": \"7oUHAA==\",\r\n \"_etag\": \"\\\"00006200-0000-0100-0000-5ed57d980000\\\"\",\r\n \"_ts\": 1591049624\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db123\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db123\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db123\",\r\n \"_rid\": \"DxRbAA==\",\r\n \"_etag\": \"\\\"00005b00-0000-0100-0000-5ed57d0b0000\\\"\",\r\n \"_ts\": 1591049483\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"TaZfAA==\",\r\n \"_etag\": \"\\\"00006500-0000-0100-0000-5ee1559b0000\\\"\",\r\n \"_ts\": 1591825819\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"AAtoAA==\",\r\n \"_etag\": \"\\\"0000b500-0000-0100-0000-5ecd58f50000\\\"\",\r\n \"_ts\": 1590515957\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"L7NIAA==\",\r\n \"_etag\": \"\\\"00004000-0000-0100-0000-60273f370000\\\"\",\r\n \"_ts\": 1613184823\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a61acec7-d76c-4ea6-8666-54cfee92ccf0" + "1b462b10-a92d-4fba-9fb7-1ce61e07d465" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2337,13 +2268,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/b6909b8b-53f1-492d-8697-b5f7f50bf551?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b6909b8b-53f1-492d-8697-b5f7f50bf551?api-version=2021-01-15" ], "x-ms-request-id": [ - "19a6556f-aea5-41f7-9623-155d2c26ae60" + "b6909b8b-53f1-492d-8697-b5f7f50bf551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2358,47 +2289,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "c2afb869-2d51-4f1d-8fd9-1af21a187ff5" + "6ac1b794-858c-4069-919d-19d9782c4c74" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215325Z:c2afb869-2d51-4f1d-8fd9-1af21a187ff5" + "WESTUS2:20210213T025650Z:6ac1b794-858c-4069-919d-19d9782c4c74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:24 GMT" + "Sat, 13 Feb 2021 02:56:49 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34585651-3d7c-4254-a5a9-cdd925ffead8" + "9e38b4fc-9130-45d1-b6d4-9327d5cbca73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2409,13 +2337,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/43c070f8-046b-4472-a328-50ab40a245a3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43c070f8-046b-4472-a328-50ab40a245a3?api-version=2021-01-15" ], "x-ms-request-id": [ - "4299c7f6-4a2d-4233-9611-e754642f8ff3" + "43c070f8-046b-4472-a328-50ab40a245a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2427,44 +2355,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "f6ab7506-bda6-4ad5-b8f1-9c362d4981f3" + "eaf10062-0b02-4a73-95c3-4b4331451a04" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215428Z:f6ab7506-bda6-4ad5-b8f1-9c362d4981f3" + "WESTUS2:20210213T025753Z:eaf10062-0b02-4a73-95c3-4b4331451a04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:27 GMT" + "Sat, 13 Feb 2021 02:57:53 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTlhNjU1NmYtYWVhNS00MWY3LTk2MjMtMTU1ZDJjMjZhZTYwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b6909b8b-53f1-492d-8697-b5f7f50bf551?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjY5MDliOGItNTNmMS00OTJkLTg2OTctYjVmN2Y1MGJmNTUxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1b462b10-a92d-4fba-9fb7-1ce61e07d465" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2484,47 +2412,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11968" ], "x-ms-request-id": [ - "d407847f-bda6-4d74-8fe0-ef7dd9caa67f" + "2ee31744-c77c-4058-bf49-f907391a205c" ], "x-ms-correlation-request-id": [ - "d407847f-bda6-4d74-8fe0-ef7dd9caa67f" + "2ee31744-c77c-4058-bf49-f907391a205c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215356Z:d407847f-bda6-4d74-8fe0-ef7dd9caa67f" + "WESTUS2:20210213T025720Z:2ee31744-c77c-4058-bf49-f907391a205c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:55 GMT" + "Sat, 13 Feb 2021 02:57:20 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8xOWE2NTU2Zi1hZWE1LTQxZjctOTYyMy0xNTVkMmMyNmFlNjA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/b6909b8b-53f1-492d-8697-b5f7f50bf551?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy9iNjkwOWI4Yi01M2YxLTQ5MmQtODY5Ny1iNWY3ZjUwYmY1NTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1b462b10-a92d-4fba-9fb7-1ce61e07d465" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2544,50 +2472,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11967" ], "x-ms-request-id": [ - "cb2cabbb-1458-485f-8637-9a2e77c27964" + "9dd9fdbd-05e3-48cf-875d-aec1fac5289c" ], "x-ms-correlation-request-id": [ - "cb2cabbb-1458-485f-8637-9a2e77c27964" + "9dd9fdbd-05e3-48cf-875d-aec1fac5289c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215356Z:cb2cabbb-1458-485f-8637-9a2e77c27964" + "WESTUS2:20210213T025720Z:9dd9fdbd-05e3-48cf-875d-aec1fac5289c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:55 GMT" + "Sat, 13 Feb 2021 02:57:20 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/19a6556f-aea5-41f7-9623-155d2c26ae60?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ab60b27-d9f8-4b79-b014-81399609a12c" + "c6509984-dd50-454a-a925-ac188aa0ee22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2598,13 +2523,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/aae8a591-7687-4760-b601-54534f875644?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aae8a591-7687-4760-b601-54534f875644?api-version=2021-01-15" ], "x-ms-request-id": [ - "439d7729-0670-46b8-a390-3c1fccdd9a32" + "aae8a591-7687-4760-b601-54534f875644" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2619,47 +2544,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "61b1968c-1f59-4fc5-a389-6345f47e6285" + "59b72655-7dee-4c7b-92e5-83f01ba6553f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215357Z:61b1968c-1f59-4fc5-a389-6345f47e6285" + "WESTUS2:20210213T025721Z:59b72655-7dee-4c7b-92e5-83f01ba6553f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:53:56 GMT" + "Sat, 13 Feb 2021 02:57:21 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17eb3357-0c61-48ff-902f-eb66e06036bb" + "659ff1ac-555f-4de2-af14-17b44416e703" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2670,13 +2592,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/1b8ced12-aeb6-4c79-990c-5af06361e1a2?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b8ced12-aeb6-4c79-990c-5af06361e1a2?api-version=2021-01-15" ], "x-ms-request-id": [ - "8d275cd5-7381-4773-bf75-6eb06d003af1" + "1b8ced12-aeb6-4c79-990c-5af06361e1a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2691,41 +2613,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "b6f44135-7afb-4075-a161-4c9a89cc9353" + "3a54fde8-3f14-4b77-852d-f3c786367ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215459Z:b6f44135-7afb-4075-a161-4c9a89cc9353" + "WESTUS2:20210213T025825Z:3a54fde8-3f14-4b77-852d-f3c786367ee5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:58 GMT" + "Sat, 13 Feb 2021 02:58:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDM5ZDc3MjktMDY3MC00NmI4LWEzOTAtM2MxZmNjZGQ5YTMyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/aae8a591-7687-4760-b601-54534f875644?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWFlOGE1OTEtNzY4Ny00NzYwLWI2MDEtNTQ1MzRmODc1NjQ0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c6509984-dd50-454a-a925-ac188aa0ee22" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2748,44 +2670,44 @@ "11999" ], "x-ms-request-id": [ - "eab062f8-764b-4089-9299-edb4a867205d" + "7f09d5b6-62e2-408e-b83f-e49b515e5989" ], "x-ms-correlation-request-id": [ - "eab062f8-764b-4089-9299-edb4a867205d" + "7f09d5b6-62e2-408e-b83f-e49b515e5989" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215427Z:eab062f8-764b-4089-9299-edb4a867205d" + "WESTUS2:20210213T025752Z:7f09d5b6-62e2-408e-b83f-e49b515e5989" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:26 GMT" + "Sat, 13 Feb 2021 02:57:51 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy80MzlkNzcyOS0wNjcwLTQ2YjgtYTM5MC0zYzFmY2NkZDlhMzI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/aae8a591-7687-4760-b601-54534f875644?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9hYWU4YTU5MS03Njg3LTQ3NjAtYjYwMS01NDUzNGY4NzU2NDQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c6509984-dd50-454a-a925-ac188aa0ee22" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2808,41 +2730,41 @@ "11998" ], "x-ms-request-id": [ - "1fb6b224-4feb-4ca1-ae46-152b335998c7" + "48fcb533-e3ab-440f-8f01-47e817980902" ], "x-ms-correlation-request-id": [ - "1fb6b224-4feb-4ca1-ae46-152b335998c7" + "48fcb533-e3ab-440f-8f01-47e817980902" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215427Z:1fb6b224-4feb-4ca1-ae46-152b335998c7" + "WESTUS2:20210213T025752Z:48fcb533-e3ab-440f-8f01-47e817980902" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:27 GMT" + "Sat, 13 Feb 2021 02:57:51 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/439d7729-0670-46b8-a390-3c1fccdd9a32?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDI5OWM3ZjYtNGEyZC00MjMzLTk2MTEtZTc1NDY0MmY4ZmYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/43c070f8-046b-4472-a328-50ab40a245a3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDNjMDcwZjgtMDQ2Yi00NDcyLWEzMjgtNTBhYjQwYTI0NWEzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9e38b4fc-9130-45d1-b6d4-9327d5cbca73" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2862,47 +2784,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "9207" ], "x-ms-request-id": [ - "8b52a0a3-e9c9-4116-82dc-e2ccf556fbd0" + "8dfb8a21-d9af-4e34-a0e7-71c890ef00d4" ], "x-ms-correlation-request-id": [ - "8b52a0a3-e9c9-4116-82dc-e2ccf556fbd0" + "8dfb8a21-d9af-4e34-a0e7-71c890ef00d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215458Z:8b52a0a3-e9c9-4116-82dc-e2ccf556fbd0" + "WESTUS2:20210213T025824Z:8dfb8a21-d9af-4e34-a0e7-71c890ef00d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:57 GMT" + "Sat, 13 Feb 2021 02:58:23 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy80Mjk5YzdmNi00YTJkLTQyMzMtOTYxMS1lNzU0NjQyZjhmZjM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/43c070f8-046b-4472-a328-50ab40a245a3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy80M2MwNzBmOC0wNDZiLTQ0NzItYTMyOC01MGFiNDBhMjQ1YTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9e38b4fc-9130-45d1-b6d4-9327d5cbca73" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2922,44 +2844,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "9206" ], "x-ms-request-id": [ - "47fa3f8c-de99-4338-8268-32e67fea484e" + "94044d07-eaf1-4919-880e-a3512e4e9e8c" ], "x-ms-correlation-request-id": [ - "47fa3f8c-de99-4338-8268-32e67fea484e" + "94044d07-eaf1-4919-880e-a3512e4e9e8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215458Z:47fa3f8c-de99-4338-8268-32e67fea484e" + "WESTUS2:20210213T025824Z:94044d07-eaf1-4919-880e-a3512e4e9e8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:54:57 GMT" + "Sat, 13 Feb 2021 02:58:23 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/collections/collection1/operationResults/4299c7f6-4a2d-4233-9611-e754642f8ff3?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQyNzVjZDUtNzM4MS00NzczLWJmNzUtNmViMDZkMDAzYWYxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b8ced12-aeb6-4c79-990c-5af06361e1a2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWI4Y2VkMTItYWViNi00Yzc5LTk5MGMtNWFmMDYzNjFlMWEyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "659ff1ac-555f-4de2-af14-17b44416e703" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2982,44 +2904,44 @@ "11999" ], "x-ms-request-id": [ - "e6b913a7-908d-49e2-b1dd-7aa3579fdb61" + "1975326b-952f-45ed-bd8a-798c61ca9907" ], "x-ms-correlation-request-id": [ - "e6b913a7-908d-49e2-b1dd-7aa3579fdb61" + "1975326b-952f-45ed-bd8a-798c61ca9907" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215529Z:e6b913a7-908d-49e2-b1dd-7aa3579fdb61" + "WESTUS2:20210213T025855Z:1975326b-952f-45ed-bd8a-798c61ca9907" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:55:29 GMT" + "Sat, 13 Feb 2021 02:58:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy84ZDI3NWNkNS03MzgxLTQ3NzMtYmY3NS02ZWIwNmQwMDNhZjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/1b8ced12-aeb6-4c79-990c-5af06361e1a2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8xYjhjZWQxMi1hZWI2LTRjNzktOTkwYy01YWYwNjM2MWUxYTI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "659ff1ac-555f-4de2-af14-17b44416e703" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3042,25 +2964,22 @@ "11998" ], "x-ms-request-id": [ - "10f472f7-1bd3-446c-a541-55a0106156ca" + "c09cc03e-ada5-4cb6-8d5c-984e839ea01c" ], "x-ms-correlation-request-id": [ - "10f472f7-1bd3-446c-a541-55a0106156ca" + "c09cc03e-ada5-4cb6-8d5c-984e839ea01c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T215529Z:10f472f7-1bd3-446c-a541-55a0106156ca" + "WESTUS2:20210213T025855Z:c09cc03e-ada5-4cb6-8d5c-984e839ea01c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:55:29 GMT" + "Sat, 13 Feb 2021 02:58:55 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName/operationResults/8d275cd5-7381-4773-bf75-6eb06d003af1?api-version=2020-04-01" ] }, "ResponseBody": "", 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 59ef44ea68ef..f381109fb8ef 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b73a8a1a-c80c-4c61-815b-2c5c40ccf4b8" + "bad016da-c8b1-42e2-98b1-378a4d1307c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "f1d9421a-3791-4caf-b0cf-0270f3c8ab59" + "cb847348-332b-4a51-b8a8-23677def6a6e" ], "x-ms-correlation-request-id": [ - "f1d9421a-3791-4caf-b0cf-0270f3c8ab59" + "cb847348-332b-4a51-b8a8-23677def6a6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214132Z:f1d9421a-3791-4caf-b0cf-0270f3c8ab59" + "WESTUS2:20210213T030319Z:cb847348-332b-4a51-b8a8-23677def6a6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:41:31 GMT" + "Sat, 13 Feb 2021 03:03:19 GMT" ], "Content-Length": [ - "1710" + "1779" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: b73a8a1a-c80c-4c61-815b-2c5c40ccf4b8, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:41:32.5945019Z, RequestEndTime: 2020-06-10T21:41:32.5945019Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:41:32.5945019Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 624, GlobalCommittedLsn: 624, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#624, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:41:32.5945019Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361958947725985s, LSN: 624, GlobalCommittedLsn: 624, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#624, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: bad016da-c8b1-42e2-98b1-378a4d1307c5, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:03:19.6278448Z, RequestEndTime: 2021-02-13T03:03:19.6278448Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:03:19.6278448Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132516802782246260s, LSN: 1417, GlobalCommittedLsn: 1417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1417, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:03:19.6278448Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1417, GlobalCommittedLsn: 1417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1417, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bad016da-c8b1-42e2-98b1-378a4d1307c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "6b461e1c-3f00-425c-ae8e-829a05c2e581" + "775541f0-8eae-4802-90bb-34d5829dbf56" ], "x-ms-correlation-request-id": [ - "6b461e1c-3f00-425c-ae8e-829a05c2e581" + "775541f0-8eae-4802-90bb-34d5829dbf56" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214203Z:6b461e1c-3f00-425c-ae8e-829a05c2e581" + "WESTUS2:20210213T030350Z:775541f0-8eae-4802-90bb-34d5829dbf56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:02 GMT" + "Sat, 13 Feb 2021 03:03:50 GMT" ], "Content-Length": [ "390" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"4s0IAA==\",\r\n \"_etag\": \"\\\"00005300-0000-0100-0000-5ee153910000\\\"\",\r\n \"_ts\": 1591825297\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"dbName3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName3\",\r\n \"_rid\": \"3ukQAA==\",\r\n \"_etag\": \"\\\"00005f00-0000-0100-0000-6027417c0000\\\"\",\r\n \"_ts\": 1613185404\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "77643f05-bd31-4d07-b85c-54957af8a880" + "bad016da-c8b1-42e2-98b1-378a4d1307c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/4d7fbc84-f089-4276-9b47-dabefd3006ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/fedb8186-e163-4653-ad48-920023295971?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4d7fbc84-f089-4276-9b47-dabefd3006ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fedb8186-e163-4653-ad48-920023295971?api-version=2021-01-15" ], "x-ms-request-id": [ - "4d7fbc84-f089-4276-9b47-dabefd3006ea" + "fedb8186-e163-4653-ad48-920023295971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "18c597c8-009e-4140-bfb3-f8ee4b24c60e" + "073536ee-d0e8-4dc3-9bca-5560b1f35963" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214133Z:18c597c8-009e-4140-bfb3-f8ee4b24c60e" + "WESTUS2:20210213T030320Z:073536ee-d0e8-4dc3-9bca-5560b1f35963" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:41:32 GMT" + "Sat, 13 Feb 2021 03:03:19 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4d7fbc84-f089-4276-9b47-dabefd3006ea?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGQ3ZmJjODQtZjA4OS00Mjc2LTliNDctZGFiZWZkMzAwNmVhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fedb8186-e163-4653-ad48-920023295971?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmVkYjgxODYtZTE2My00NjUzLWFkNDgtOTIwMDIzMjk1OTcxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bad016da-c8b1-42e2-98b1-378a4d1307c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -234,53 +231,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "fb19c495-f5ee-4404-9ade-c1906565a193" + "42bd262c-d7a7-43e7-82c6-dfdd0e63a9d3" ], "x-ms-correlation-request-id": [ - "fb19c495-f5ee-4404-9ade-c1906565a193" + "42bd262c-d7a7-43e7-82c6-dfdd0e63a9d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214203Z:fb19c495-f5ee-4404-9ade-c1906565a193" + "WESTUS2:20210213T030350Z:42bd262c-d7a7-43e7-82c6-dfdd0e63a9d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:02 GMT" + "Sat, 13 Feb 2021 03:03:50 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4d7fbc84-f089-4276-9b47-dabefd3006ea?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a32b18e3-a211-4cc7-964e-ae3c315602d0" + "419119b1-46a3-4c4f-8f27-0324b2b62a36" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,47 +294,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "30bfe401-c5d8-46cc-a47f-76f207cd2bfe" + "7ca90fbe-fd41-457e-bfc0-bdb2741d14d3" ], "x-ms-correlation-request-id": [ - "30bfe401-c5d8-46cc-a47f-76f207cd2bfe" + "7ca90fbe-fd41-457e-bfc0-bdb2741d14d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214204Z:30bfe401-c5d8-46cc-a47f-76f207cd2bfe" + "WESTUS2:20210213T030351Z:7ca90fbe-fd41-457e-bfc0-bdb2741d14d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:03 GMT" + "Sat, 13 Feb 2021 03:03:50 GMT" ], "Content-Length": [ "376" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"SWh+\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"8bhC\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b5a6024c-69fd-4f41-a760-41dafd783d29" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -360,47 +354,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "09063d8e-86d0-45d3-ac90-45a563871657" + "b2e9cd9c-35e4-41c7-ad5d-829417d5acc1" ], "x-ms-correlation-request-id": [ - "09063d8e-86d0-45d3-ac90-45a563871657" + "b2e9cd9c-35e4-41c7-ad5d-829417d5acc1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214235Z:09063d8e-86d0-45d3-ac90-45a563871657" + "WESTUS2:20210213T030422Z:b2e9cd9c-35e4-41c7-ad5d-829417d5acc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:35 GMT" + "Sat, 13 Feb 2021 03:04:21 GMT" ], "Content-Length": [ "376" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"SWh+\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"8bhC\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a639917-17ea-4503-854a-618064f558d6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -420,47 +414,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "c4e1638e-39ae-48d3-8f60-65694b0c841b" + "d12988e4-0c6e-4431-8a33-8f733fe365d8" ], "x-ms-correlation-request-id": [ - "c4e1638e-39ae-48d3-8f60-65694b0c841b" + "d12988e4-0c6e-4431-8a33-8f733fe365d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214306Z:c4e1638e-39ae-48d3-8f60-65694b0c841b" + "WESTUS2:20210213T030454Z:d12988e4-0c6e-4431-8a33-8f733fe365d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:06 GMT" + "Sat, 13 Feb 2021 03:04:54 GMT" ], "Content-Length": [ "376" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"SWh+\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"8bhC\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ae2b1cd6-84a9-4b10-a7ac-99a2a39cb26b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -480,53 +474,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "8b679c1e-eefe-487a-a6f1-082898540578" + "d763a82a-33d7-4d88-a1c3-7c75c82aca7f" ], "x-ms-correlation-request-id": [ - "8b679c1e-eefe-487a-a6f1-082898540578" + "d763a82a-33d7-4d88-a1c3-7c75c82aca7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214338Z:8b679c1e-eefe-487a-a6f1-082898540578" + "WESTUS2:20210213T030525Z:d763a82a-33d7-4d88-a1c3-7c75c82aca7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:38 GMT" + "Sat, 13 Feb 2021 03:05:24 GMT" ], "Content-Length": [ "375" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"SWh+\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\",\r\n \"name\": \"8bhC\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "c609eac3-7bfc-4f1e-a805-bed38f36daa4" + "b5a6024c-69fd-4f41-a760-41dafd783d29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/8ba2fe04-4f1d-4930-8db8-d98b523e3209?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/85b5a20e-abfa-471c-ab5f-4c899d616200?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8ba2fe04-4f1d-4930-8db8-d98b523e3209?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85b5a20e-abfa-471c-ab5f-4c899d616200?api-version=2021-01-15" ], "x-ms-request-id": [ - "8ba2fe04-4f1d-4930-8db8-d98b523e3209" + "85b5a20e-abfa-471c-ab5f-4c899d616200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +555,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "ea86399d-6c73-44fa-b7ce-b5dd33a6916a" + "d6e92deb-6175-48d7-81b9-2c720447b61f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214204Z:ea86399d-6c73-44fa-b7ce-b5dd33a6916a" + "WESTUS2:20210213T030351Z:d6e92deb-6175-48d7-81b9-2c720447b61f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:03 GMT" + "Sat, 13 Feb 2021 03:03:51 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "ced08414-3648-4a73-942e-8e7ae05919d9" + "3a639917-17ea-4503-854a-618064f558d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +609,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/0205407d-ca7e-4ab9-983e-50455c6c09a6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/82327488-1c58-43ce-b82c-de2c82dbdb27?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0205407d-ca7e-4ab9-983e-50455c6c09a6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/82327488-1c58-43ce-b82c-de2c82dbdb27?api-version=2021-01-15" ], "x-ms-request-id": [ - "0205407d-ca7e-4ab9-983e-50455c6c09a6" + "82327488-1c58-43ce-b82c-de2c82dbdb27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +630,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "534a62a2-2fd8-44a3-a393-2a7f75bbf839" + "ae02d35f-bd4d-45a4-8e52-1c0adf13838b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214235Z:534a62a2-2fd8-44a3-a393-2a7f75bbf839" + "WESTUS2:20210213T030423Z:ae02d35f-bd4d-45a4-8e52-1c0adf13838b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:35 GMT" + "Sat, 13 Feb 2021 03:04:22 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "2bae2dbd-1c82-426c-8fc4-e46c7bcf8d17" + "ae2b1cd6-84a9-4b10-a7ac-99a2a39cb26b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +684,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/7ab93910-0f9e-42ff-ab69-bbc317f31342?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default/operationResults/116e65e7-2997-460d-bbb5-3306c6132d4c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7ab93910-0f9e-42ff-ab69-bbc317f31342?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/116e65e7-2997-460d-bbb5-3306c6132d4c?api-version=2021-01-15" ], "x-ms-request-id": [ - "7ab93910-0f9e-42ff-ab69-bbc317f31342" + "116e65e7-2997-460d-bbb5-3306c6132d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +705,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "cf60e878-eb77-4428-87d7-9694445cf1c8" + "f4de7d01-14dd-456f-b8b3-70ac065af317" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214308Z:cf60e878-eb77-4428-87d7-9694445cf1c8" + "WESTUS2:20210213T030454Z:f4de7d01-14dd-456f-b8b3-70ac065af317" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:07 GMT" + "Sat, 13 Feb 2021 03:04:54 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8ba2fe04-4f1d-4930-8db8-d98b523e3209?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGJhMmZlMDQtNGYxZC00OTMwLThkYjgtZDk4YjUyM2UzMjA5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/85b5a20e-abfa-471c-ab5f-4c899d616200?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODViNWEyMGUtYWJmYS00NzFjLWFiNWYtNGM4OTlkNjE2MjAwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b5a6024c-69fd-4f41-a760-41dafd783d29" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -774,53 +759,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "fa8e947b-6dcd-492e-b645-51cf4cf31e44" + "b20d80a1-cac4-4271-b49a-be1dd94e961d" ], "x-ms-correlation-request-id": [ - "fa8e947b-6dcd-492e-b645-51cf4cf31e44" + "b20d80a1-cac4-4271-b49a-be1dd94e961d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214234Z:fa8e947b-6dcd-492e-b645-51cf4cf31e44" + "WESTUS2:20210213T030421Z:b20d80a1-cac4-4271-b49a-be1dd94e961d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:34 GMT" + "Sat, 13 Feb 2021 03:04:21 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8ba2fe04-4f1d-4930-8db8-d98b523e3209?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "500ffdc9-1679-4abc-af07-41d068df271e" + "0d626605-095d-4257-a4ce-3f7b43c5e7a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -840,47 +822,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "486e477f-0f67-4b72-89e6-be51fd1b2ab5" + "f85403cd-e406-4eb5-8e71-335382e7e200" ], "x-ms-correlation-request-id": [ - "486e477f-0f67-4b72-89e6-be51fd1b2ab5" + "f85403cd-e406-4eb5-8e71-335382e7e200" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214235Z:486e477f-0f67-4b72-89e6-be51fd1b2ab5" + "WESTUS2:20210213T030422Z:f85403cd-e406-4eb5-8e71-335382e7e200" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:42:35 GMT" + "Sat, 13 Feb 2021 03:04:21 GMT" ], "Content-Length": [ - "1742" + "2192" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001\",\r\n \"name\": \"db001\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T19:15:07.9711767Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db001.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\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"ab545459-41a1-41fe-83e3-bc36bfbad31c\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://db001-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\": \"db001-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\": \"AllowSelfServeUpgradeToMongo36\"\r\n },\r\n {\r\n \"name\": \"DisableRateLimitingResponses\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/0205407d-ca7e-4ab9-983e-50455c6c09a6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDIwNTQwN2QtY2E3ZS00YWI5LTk4M2UtNTA0NTVjNmMwOWE2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/82327488-1c58-43ce-b82c-de2c82dbdb27?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODIzMjc0ODgtMWM1OC00M2NlLWI4MmMtZGUyYzgyZGJkYjI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a639917-17ea-4503-854a-618064f558d6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -900,47 +882,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "408f8fda-5798-4fbc-b7c2-3520fbefe7ba" + "494d7d1f-fdd9-4fd9-a1ed-e6d5333785a3" ], "x-ms-correlation-request-id": [ - "408f8fda-5798-4fbc-b7c2-3520fbefe7ba" + "494d7d1f-fdd9-4fd9-a1ed-e6d5333785a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214306Z:408f8fda-5798-4fbc-b7c2-3520fbefe7ba" + "WESTUS2:20210213T030453Z:494d7d1f-fdd9-4fd9-a1ed-e6d5333785a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:05 GMT" + "Sat, 13 Feb 2021 03:04:53 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0205407d-ca7e-4ab9-983e-50455c6c09a6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7ab93910-0f9e-42ff-ab69-bbc317f31342?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2FiOTM5MTAtMGY5ZS00MmZmLWFiNjktYmJjMzE3ZjMxMzQyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/116e65e7-2997-460d-bbb5-3306c6132d4c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTE2ZTY1ZTctMjk5Ny00NjBkLWJiYjUtMzMwNmM2MTMyZDRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ae2b1cd6-84a9-4b10-a7ac-99a2a39cb26b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -960,53 +942,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "31d9253f-9b11-4e1d-9bf3-6eae9efd380a" + "2af6e2b7-1800-4b0a-83c0-e7389030a040" ], "x-ms-correlation-request-id": [ - "31d9253f-9b11-4e1d-9bf3-6eae9efd380a" + "2af6e2b7-1800-4b0a-83c0-e7389030a040" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214338Z:31d9253f-9b11-4e1d-9bf3-6eae9efd380a" + "WESTUS2:20210213T030525Z:2af6e2b7-1800-4b0a-83c0-e7389030a040" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:37 GMT" + "Sat, 13 Feb 2021 03:05:24 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7ab93910-0f9e-42ff-ab69-bbc317f31342?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f28d8663-c795-4c92-95c1-5b1bb6752f3b" + "c8af2ad8-ba4b-4105-a351-ae7f8bac3a4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1026,47 +1005,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "3463d8a9-6849-42e2-b18b-5013ded31c82" + "3897bd76-1de4-4fdc-b898-b626b9634b56" ], "x-ms-correlation-request-id": [ - "3463d8a9-6849-42e2-b18b-5013ded31c82" + "3897bd76-1de4-4fdc-b898-b626b9634b56" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214339Z:3463d8a9-6849-42e2-b18b-5013ded31c82" + "WESTUS2:20210213T030525Z:3897bd76-1de4-4fdc-b898-b626b9634b56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:38 GMT" + "Sat, 13 Feb 2021 03:05:25 GMT" ], "Content-Length": [ - "1735" + "1804" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: f28d8663-c795-4c92-95c1-5b1bb6752f3b, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T21:43:39.0914423Z, RequestEndTime: 2020-06-10T21:43:39.0914423Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T21:43:39.0914423Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132355091856741897s, LSN: 628, GlobalCommittedLsn: 628, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#628, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T21:43:39.0914423Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132361894712997752s, LSN: 628, GlobalCommittedLsn: 628, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#628, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3/colls/collectionName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: c8af2ad8-ba4b-4105-a351-ae7f8bac3a4d, Request URI: /apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:05:25.5904219Z, RequestEndTime: 2021-02-13T03:05:25.5904219Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:05:25.5904219Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11000/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132520819338267375s, LSN: 1421, GlobalCommittedLsn: 1421, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1421, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:05:25.5904219Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/f16794f1-66f3-4163-8d3e-7f76cdcef6a7/services/1b0b2282-67d8-4dab-ac7c-2032b455f5d3/partitions/3d375b6b-206c-4ff3-8979-be675cb87f79/replicas/132521192207293558s, LSN: 1421, GlobalCommittedLsn: 1421, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1421, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3/colls/collectionName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c8af2ad8-ba4b-4105-a351-ae7f8bac3a4d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1086,53 +1065,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "da4f8e50-c341-473d-9cbc-ac357ef22e9a" + "2d34421e-daa8-4a23-b99f-972fc13c6319" ], "x-ms-correlation-request-id": [ - "da4f8e50-c341-473d-9cbc-ac357ef22e9a" + "2d34421e-daa8-4a23-b99f-972fc13c6319" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214410Z:da4f8e50-c341-473d-9cbc-ac357ef22e9a" + "WESTUS2:20210213T030556Z:2d34421e-daa8-4a23-b99f-972fc13c6319" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:09 GMT" + "Sat, 13 Feb 2021 03:05:55 GMT" ], "Content-Length": [ "589" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collectionName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"_rid\": \"4s0IANfws2w=\",\r\n \"_etag\": \"\\\"00005d00-0000-0100-0000-5ee154100000\\\"\",\r\n \"_ts\": 1591825424,\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n },\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n },\r\n \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collectionName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collectionName\",\r\n \"_rid\": \"3ukQAJGQ+E8=\",\r\n \"_etag\": \"\\\"00006900-0000-0100-0000-602741fb0000\\\"\",\r\n \"_ts\": 1613185531,\r\n \"shardKey\": {\r\n \"shardKeyPath\": \"Hash\"\r\n },\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n },\r\n \"options\": {}\r\n },\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"DocumentDBDefaultIndex\"\r\n ]\r\n },\r\n \"options\": {}\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "3c96c1b6-65ba-4d14-9902-8afab41372c6" + "c8af2ad8-ba4b-4105-a351-ae7f8bac3a4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1125,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/c624ad8f-82db-49be-9d3a-da7d869fd128?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/52a47c4d-834d-4dbb-84c2-69a0b1294e1c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c624ad8f-82db-49be-9d3a-da7d869fd128?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52a47c4d-834d-4dbb-84c2-69a0b1294e1c?api-version=2021-01-15" ], "x-ms-request-id": [ - "c624ad8f-82db-49be-9d3a-da7d869fd128" + "52a47c4d-834d-4dbb-84c2-69a0b1294e1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,41 +1146,41 @@ "1195" ], "x-ms-correlation-request-id": [ - "322e2197-0b5a-4a77-a189-abbd68637869" + "6453afbc-43ff-439d-b4de-1093cb334f5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214339Z:322e2197-0b5a-4a77-a189-abbd68637869" + "WESTUS2:20210213T030526Z:6453afbc-43ff-439d-b4de-1093cb334f5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:43:39 GMT" + "Sat, 13 Feb 2021 03:05:25 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c624ad8f-82db-49be-9d3a-da7d869fd128?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzYyNGFkOGYtODJkYi00OWJlLTlkM2EtZGE3ZDg2OWZkMTI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/52a47c4d-834d-4dbb-84c2-69a0b1294e1c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTJhNDdjNGQtODM0ZC00ZGJiLTg0YzItNjlhMGIxMjk0ZTFjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c8af2ad8-ba4b-4105-a351-ae7f8bac3a4d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1224,53 +1200,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "8fd91a96-b75f-47cf-af8c-9ee2730fab85" + "ceec77f6-bb3a-4ece-8efb-74dbea8dbb05" ], "x-ms-correlation-request-id": [ - "8fd91a96-b75f-47cf-af8c-9ee2730fab85" + "ceec77f6-bb3a-4ece-8efb-74dbea8dbb05" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214409Z:8fd91a96-b75f-47cf-af8c-9ee2730fab85" + "WESTUS2:20210213T030556Z:ceec77f6-bb3a-4ece-8efb-74dbea8dbb05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:08 GMT" + "Sat, 13 Feb 2021 03:05:55 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c624ad8f-82db-49be-9d3a-da7d869fd128?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "929e892b-a268-44c5-aa58-9e8648ae2f1d" + "08180f8c-6584-417d-904c-a02b2017a077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1290,47 +1263,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "f25c07d4-c05e-42fa-b337-093437713d76" + "b17b04e6-abf5-4be8-9977-e099b2718944" ], "x-ms-correlation-request-id": [ - "f25c07d4-c05e-42fa-b337-093437713d76" + "b17b04e6-abf5-4be8-9977-e099b2718944" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214410Z:f25c07d4-c05e-42fa-b337-093437713d76" + "WESTUS2:20210213T030556Z:b17b04e6-abf5-4be8-9977-e099b2718944" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:09 GMT" + "Sat, 13 Feb 2021 03:05:56 GMT" ], "Content-Length": [ "414" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"g60U\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"ioXf\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cb84325f-227f-4847-a95c-b478f71b5a4d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1350,47 +1323,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "b1bb4d38-985b-4cbe-9946-7ff125818e7d" + "d23d6a5c-62b1-4298-afbd-c1f740f62a70" ], "x-ms-correlation-request-id": [ - "b1bb4d38-985b-4cbe-9946-7ff125818e7d" + "d23d6a5c-62b1-4298-afbd-c1f740f62a70" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214442Z:b1bb4d38-985b-4cbe-9946-7ff125818e7d" + "WESTUS2:20210213T030628Z:d23d6a5c-62b1-4298-afbd-c1f740f62a70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:42 GMT" + "Sat, 13 Feb 2021 03:06:28 GMT" ], "Content-Length": [ "414" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"g60U\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"ioXf\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f8ee7b0b-a661-4ecf-83e6-defc71ae83c3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1410,47 +1383,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "0327f2f0-439d-4284-a3ac-88ce09dcfe7c" + "bacb5b75-fc65-443b-a3ff-60dff38bc983" ], "x-ms-correlation-request-id": [ - "0327f2f0-439d-4284-a3ac-88ce09dcfe7c" + "bacb5b75-fc65-443b-a3ff-60dff38bc983" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214513Z:0327f2f0-439d-4284-a3ac-88ce09dcfe7c" + "WESTUS2:20210213T030659Z:bacb5b75-fc65-443b-a3ff-60dff38bc983" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:13 GMT" + "Sat, 13 Feb 2021 03:06:58 GMT" ], "Content-Length": [ "414" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"g60U\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"ioXf\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0369d599-80d9-4b07-a625-02a6290bebe9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1470,53 +1443,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "88fd51d4-e993-4374-b254-cb6208406926" + "8923dc27-eb84-44bd-9711-c9fbf74d11a0" ], "x-ms-correlation-request-id": [ - "88fd51d4-e993-4374-b254-cb6208406926" + "8923dc27-eb84-44bd-9711-c9fbf74d11a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214545Z:88fd51d4-e993-4374-b254-cb6208406926" + "WESTUS2:20210213T030730Z:8923dc27-eb84-44bd-9711-c9fbf74d11a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:44 GMT" + "Sat, 13 Feb 2021 03:07:29 GMT" ], "Content-Length": [ "414" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"g60U\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\",\r\n \"name\": \"ioXf\",\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/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "19fcc23c-d191-4d76-8433-b423f487a301" + "cb84325f-227f-4847-a95c-b478f71b5a4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,13 +1503,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/775bac79-3204-421c-94c5-62227392e59d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/35bf7517-891b-43fb-96be-61599218ebb5?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/775bac79-3204-421c-94c5-62227392e59d?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35bf7517-891b-43fb-96be-61599218ebb5?api-version=2021-01-15" ], "x-ms-request-id": [ - "775bac79-3204-421c-94c5-62227392e59d" + "35bf7517-891b-43fb-96be-61599218ebb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,47 +1524,44 @@ "1194" ], "x-ms-correlation-request-id": [ - "358b2387-7112-466c-8713-901334f96071" + "63e57910-abcb-41de-9ecb-b19f1e074755" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214412Z:358b2387-7112-466c-8713-901334f96071" + "WESTUS2:20210213T030557Z:63e57910-abcb-41de-9ecb-b19f1e074755" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:11 GMT" + "Sat, 13 Feb 2021 03:05:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "38c05339-6426-4c72-aa1f-1b88ef619151" + "f8ee7b0b-a661-4ecf-83e6-defc71ae83c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,13 +1578,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/a5b1186e-ad5e-45ff-8eff-6453e0f1d706?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/63e2157d-a049-432f-921c-40f20349b652?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5b1186e-ad5e-45ff-8eff-6453e0f1d706?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/63e2157d-a049-432f-921c-40f20349b652?api-version=2021-01-15" ], "x-ms-request-id": [ - "a5b1186e-ad5e-45ff-8eff-6453e0f1d706" + "63e2157d-a049-432f-921c-40f20349b652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,47 +1599,44 @@ "1193" ], "x-ms-correlation-request-id": [ - "ce5cc000-5ee8-481b-8e5d-89788426805b" + "12e807bd-69fd-447e-9dda-0c9177eb4c21" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214443Z:ce5cc000-5ee8-481b-8e5d-89788426805b" + "WESTUS2:20210213T030629Z:12e807bd-69fd-447e-9dda-0c9177eb4c21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:43 GMT" + "Sat, 13 Feb 2021 03:06:28 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "e2c1e5f3-f703-4b73-b51c-da94b6fb3281" + "0369d599-80d9-4b07-a625-02a6290bebe9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,13 +1653,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/18374b6f-2d54-4750-97ee-36aec0e1f7ca?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default/operationResults/3642fe35-1c82-4e25-b52c-b1aab822971a?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/18374b6f-2d54-4750-97ee-36aec0e1f7ca?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3642fe35-1c82-4e25-b52c-b1aab822971a?api-version=2021-01-15" ], "x-ms-request-id": [ - "18374b6f-2d54-4750-97ee-36aec0e1f7ca" + "3642fe35-1c82-4e25-b52c-b1aab822971a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,41 +1674,41 @@ "1192" ], "x-ms-correlation-request-id": [ - "615266e9-c503-4116-b5e3-68029c2c16ef" + "fb3ce076-7f25-41c5-bbb4-2df50be3d550" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214514Z:615266e9-c503-4116-b5e3-68029c2c16ef" + "WESTUS2:20210213T030700Z:fb3ce076-7f25-41c5-bbb4-2df50be3d550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:14 GMT" + "Sat, 13 Feb 2021 03:06:59 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/775bac79-3204-421c-94c5-62227392e59d?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzc1YmFjNzktMzIwNC00MjFjLTk0YzUtNjIyMjczOTJlNTlkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35bf7517-891b-43fb-96be-61599218ebb5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzViZjc1MTctODkxYi00M2ZiLTk2YmUtNjE1OTkyMThlYmI1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cb84325f-227f-4847-a95c-b478f71b5a4d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1764,47 +1728,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "40993afd-c39e-448b-9ba0-d486f9eabc14" + "45929b43-0989-4224-bb56-de5db05d5899" ], "x-ms-correlation-request-id": [ - "40993afd-c39e-448b-9ba0-d486f9eabc14" + "45929b43-0989-4224-bb56-de5db05d5899" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214442Z:40993afd-c39e-448b-9ba0-d486f9eabc14" + "WESTUS2:20210213T030628Z:45929b43-0989-4224-bb56-de5db05d5899" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:44:42 GMT" + "Sat, 13 Feb 2021 03:06:27 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/775bac79-3204-421c-94c5-62227392e59d?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5b1186e-ad5e-45ff-8eff-6453e0f1d706?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTViMTE4NmUtYWQ1ZS00NWZmLThlZmYtNjQ1M2UwZjFkNzA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/63e2157d-a049-432f-921c-40f20349b652?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjNlMjE1N2QtYTA0OS00MzJmLTkyMWMtNDBmMjAzNDliNjUyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f8ee7b0b-a661-4ecf-83e6-defc71ae83c3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1824,47 +1788,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "1529df5a-fcd0-46d3-b1f7-425e43f438c5" + "8977b917-e2f5-4ab0-8c08-f1f9d63f6b3a" ], "x-ms-correlation-request-id": [ - "1529df5a-fcd0-46d3-b1f7-425e43f438c5" + "8977b917-e2f5-4ab0-8c08-f1f9d63f6b3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214513Z:1529df5a-fcd0-46d3-b1f7-425e43f438c5" + "WESTUS2:20210213T030659Z:8977b917-e2f5-4ab0-8c08-f1f9d63f6b3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:13 GMT" + "Sat, 13 Feb 2021 03:06:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5b1186e-ad5e-45ff-8eff-6453e0f1d706?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/18374b6f-2d54-4750-97ee-36aec0e1f7ca?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTgzNzRiNmYtMmQ1NC00NzUwLTk3ZWUtMzZhZWMwZTFmN2NhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3642fe35-1c82-4e25-b52c-b1aab822971a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzY0MmZlMzUtMWM4Mi00ZTI1LWI1MmMtYjFhYWI4MjI5NzFhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0369d599-80d9-4b07-a625-02a6290bebe9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1884,53 +1848,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-request-id": [ - "a3f0c84d-e9e9-44ea-a123-f45d6eab8f53" + "5357fae6-7cdf-4b0a-bdb1-81602dc6c6b5" ], "x-ms-correlation-request-id": [ - "a3f0c84d-e9e9-44ea-a123-f45d6eab8f53" + "5357fae6-7cdf-4b0a-bdb1-81602dc6c6b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214545Z:a3f0c84d-e9e9-44ea-a123-f45d6eab8f53" + "WESTUS2:20210213T030730Z:5357fae6-7cdf-4b0a-bdb1-81602dc6c6b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:44 GMT" + "Sat, 13 Feb 2021 03:07:29 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/18374b6f-2d54-4750-97ee-36aec0e1f7ca?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "119b15c4-24d1-4b32-a97c-c605be000534" + "93ed4329-f7e4-4674-8d74-bdf097492383" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1941,13 +1902,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/5ee714ad-9722-4f13-ac15-bfe2f43f10c6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5ee714ad-9722-4f13-ac15-bfe2f43f10c6?api-version=2021-01-15" ], "x-ms-request-id": [ - "6155e3ee-f670-4027-991f-af06a738f946" + "5ee714ad-9722-4f13-ac15-bfe2f43f10c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,50 +1920,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "369e5c18-9cb4-4421-8d30-93a7f77b39ea" + "fa7d5b32-a8bc-422f-9812-607b1b9e9382" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214545Z:369e5c18-9cb4-4421-8d30-93a7f77b39ea" + "WESTUS2:20210213T030731Z:fa7d5b32-a8bc-422f-9812-607b1b9e9382" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:45:45 GMT" + "Sat, 13 Feb 2021 03:07:31 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16f50d88-5abe-4fc3-b68c-8bc9a890f2ca" + "dd022212-9624-4d63-be3e-1f0a60453c45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2013,13 +1971,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/819b6ca3-b331-432a-942f-addc8b3609db?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/819b6ca3-b331-432a-942f-addc8b3609db?api-version=2021-01-15" ], "x-ms-request-id": [ - "ea4589b0-6493-4868-a943-8915b0814762" + "819b6ca3-b331-432a-942f-addc8b3609db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,41 +1992,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "25c7507f-a5af-43c6-a991-5a6929762a64" + "9b0356c6-9d90-47e7-bec5-4f27aa58b8fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214648Z:25c7507f-a5af-43c6-a991-5a6929762a64" + "WESTUS2:20210213T030834Z:9b0356c6-9d90-47e7-bec5-4f27aa58b8fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:47 GMT" + "Sat, 13 Feb 2021 03:08:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjE1NWUzZWUtZjY3MC00MDI3LTk5MWYtYWYwNmE3MzhmOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5ee714ad-9722-4f13-ac15-bfe2f43f10c6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWVlNzE0YWQtOTcyMi00ZjEzLWFjMTUtYmZlMmY0M2YxMGM2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "93ed4329-f7e4-4674-8d74-bdf097492383" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2088,47 +2046,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "157296da-2e8a-4736-bb20-f6287627ee37" + "ec09d8fc-d68c-4bd4-aaa3-a6aad07ebd62" ], "x-ms-correlation-request-id": [ - "157296da-2e8a-4736-bb20-f6287627ee37" + "ec09d8fc-d68c-4bd4-aaa3-a6aad07ebd62" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214615Z:157296da-2e8a-4736-bb20-f6287627ee37" + "WESTUS2:20210213T030801Z:ec09d8fc-d68c-4bd4-aaa3-a6aad07ebd62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:15 GMT" + "Sat, 13 Feb 2021 03:08:00 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvNjE1NWUzZWUtZjY3MC00MDI3LTk5MWYtYWYwNmE3MzhmOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/5ee714ad-9722-4f13-ac15-bfe2f43f10c6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvNWVlNzE0YWQtOTcyMi00ZjEzLWFjMTUtYmZlMmY0M2YxMGM2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "93ed4329-f7e4-4674-8d74-bdf097492383" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2148,50 +2106,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11975" ], "x-ms-request-id": [ - "4ce1af80-f123-4806-945b-fc9956766603" + "50ada0fc-03cd-49a7-9fec-905102f2333e" ], "x-ms-correlation-request-id": [ - "4ce1af80-f123-4806-945b-fc9956766603" + "50ada0fc-03cd-49a7-9fec-905102f2333e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214616Z:4ce1af80-f123-4806-945b-fc9956766603" + "WESTUS2:20210213T030801Z:50ada0fc-03cd-49a7-9fec-905102f2333e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:15 GMT" + "Sat, 13 Feb 2021 03:08:01 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/6155e3ee-f670-4027-991f-af06a738f946?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61ec0244-3e3d-492d-acba-895ef7e8bd45" + "be94a667-854e-4254-bfd7-773f757c4319" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2202,13 +2157,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/8062a22d-4183-4f76-b741-8a1132548a54?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8062a22d-4183-4f76-b741-8a1132548a54?api-version=2021-01-15" ], "x-ms-request-id": [ - "a84dedfd-fde1-421a-9f72-c203d664981a" + "8062a22d-4183-4f76-b741-8a1132548a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,47 +2178,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "23ca2b94-7026-4da6-8725-44125c6bbf7e" + "bc687f1b-fcd0-487e-bbc9-15a195acaf7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214616Z:23ca2b94-7026-4da6-8725-44125c6bbf7e" + "WESTUS2:20210213T030802Z:bc687f1b-fcd0-487e-bbc9-15a195acaf7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:16 GMT" + "Sat, 13 Feb 2021 03:08:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "593edcc9-0941-4268-9efc-e3c5575dbf65" + "b24f8b84-4d0a-4d2d-b660-3f7aead25cc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2274,13 +2226,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/53066d64-0f70-4ebd-b43d-e4be24943672?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/53066d64-0f70-4ebd-b43d-e4be24943672?api-version=2021-01-15" ], "x-ms-request-id": [ - "c3b199d5-3471-4a47-ab4c-c2918a581150" + "53066d64-0f70-4ebd-b43d-e4be24943672" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,44 +2244,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "80833a82-6a0f-478f-9a31-9a8b6fdf84d2" + "75542e01-e19b-46ca-86fd-ab7193450a91" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214718Z:80833a82-6a0f-478f-9a31-9a8b6fdf84d2" + "WESTUS2:20210213T030906Z:75542e01-e19b-46ca-86fd-ab7193450a91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:47:18 GMT" + "Sat, 13 Feb 2021 03:09:06 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTg0ZGVkZmQtZmRlMS00MjFhLTlmNzItYzIwM2Q2NjQ5ODFhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8062a22d-4183-4f76-b741-8a1132548a54?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODA2MmEyMmQtNDE4My00Zjc2LWI3NDEtOGExMTMyNTQ4YTU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be94a667-854e-4254-bfd7-773f757c4319" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2349,47 +2301,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "7ea02f9a-ca7e-4cef-aeb6-1a0b141c389c" + "3c0c896b-ea5a-4840-8ed9-34417d87ac1a" ], "x-ms-correlation-request-id": [ - "7ea02f9a-ca7e-4cef-aeb6-1a0b141c389c" + "3c0c896b-ea5a-4840-8ed9-34417d87ac1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214647Z:7ea02f9a-ca7e-4cef-aeb6-1a0b141c389c" + "WESTUS2:20210213T030833Z:3c0c896b-ea5a-4840-8ed9-34417d87ac1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:46 GMT" + "Sat, 13 Feb 2021 03:08:33 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvYTg0ZGVkZmQtZmRlMS00MjFhLTlmNzItYzIwM2Q2NjQ5ODFhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/8062a22d-4183-4f76-b741-8a1132548a54?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvODA2MmEyMmQtNDE4My00Zjc2LWI3NDEtOGExMTMyNTQ4YTU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be94a667-854e-4254-bfd7-773f757c4319" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2409,44 +2361,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "22c723ad-6bee-4153-abfc-02f48bfc10c3" + "a9b12967-7cfc-402b-873e-4752fcabdca5" ], "x-ms-correlation-request-id": [ - "22c723ad-6bee-4153-abfc-02f48bfc10c3" + "a9b12967-7cfc-402b-873e-4752fcabdca5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214647Z:22c723ad-6bee-4153-abfc-02f48bfc10c3" + "WESTUS2:20210213T030833Z:a9b12967-7cfc-402b-873e-4752fcabdca5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:46:46 GMT" + "Sat, 13 Feb 2021 03:08:33 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/a84dedfd-fde1-421a-9f72-c203d664981a?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWE0NTg5YjAtNjQ5My00ODY4LWE5NDMtODkxNWIwODE0NzYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/819b6ca3-b331-432a-942f-addc8b3609db?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODE5YjZjYTMtYjMzMS00MzJhLTk0MmYtYWRkYzhiMzYwOWRiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dd022212-9624-4d63-be3e-1f0a60453c45" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2469,44 +2421,44 @@ "11999" ], "x-ms-request-id": [ - "5546273c-421a-4600-896f-f62ec4d47044" + "9e29aeda-239d-4ab1-ad43-27fe62954366" ], "x-ms-correlation-request-id": [ - "5546273c-421a-4600-896f-f62ec4d47044" + "9e29aeda-239d-4ab1-ad43-27fe62954366" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214718Z:5546273c-421a-4600-896f-f62ec4d47044" + "WESTUS2:20210213T030905Z:9e29aeda-239d-4ab1-ad43-27fe62954366" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:47:17 GMT" + "Sat, 13 Feb 2021 03:09:04 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvZWE0NTg5YjAtNjQ5My00ODY4LWE5NDMtODkxNWIwODE0NzYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/819b6ca3-b331-432a-942f-addc8b3609db?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL2NvbGxlY3Rpb25zL2NvbGxlY3Rpb25OYW1lL29wZXJhdGlvblJlc3VsdHMvODE5YjZjYTMtYjMzMS00MzJhLTk0MmYtYWRkYzhiMzYwOWRiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dd022212-9624-4d63-be3e-1f0a60453c45" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2529,41 +2481,41 @@ "11998" ], "x-ms-request-id": [ - "00c08cc6-c666-401a-98dc-048d89d1ff7e" + "db7a2cc6-bd8e-40f1-b122-dcaed14bea37" ], "x-ms-correlation-request-id": [ - "00c08cc6-c666-401a-98dc-048d89d1ff7e" + "db7a2cc6-bd8e-40f1-b122-dcaed14bea37" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214718Z:00c08cc6-c666-401a-98dc-048d89d1ff7e" + "WESTUS2:20210213T030905Z:db7a2cc6-bd8e-40f1-b122-dcaed14bea37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:47:18 GMT" + "Sat, 13 Feb 2021 03:09:04 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/collections/collectionName/operationResults/ea4589b0-6493-4868-a943-8915b0814762?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzNiMTk5ZDUtMzQ3MS00YTQ3LWFiNGMtYzI5MThhNTgxMTUwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/53066d64-0f70-4ebd-b43d-e4be24943672?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTMwNjZkNjQtMGY3MC00ZWJkLWI0M2QtZTRiZTI0OTQzNjcyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b24f8b84-4d0a-4d2d-b660-3f7aead25cc5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2583,47 +2535,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "9e365e78-1039-4d55-8cf4-dae0178e53e1" + "6925e6e5-b77e-4e62-a8c0-90d658ca0ee5" ], "x-ms-correlation-request-id": [ - "9e365e78-1039-4d55-8cf4-dae0178e53e1" + "6925e6e5-b77e-4e62-a8c0-90d658ca0ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214749Z:9e365e78-1039-4d55-8cf4-dae0178e53e1" + "WESTUS2:20210213T030936Z:6925e6e5-b77e-4e62-a8c0-90d658ca0ee5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:47:48 GMT" + "Sat, 13 Feb 2021 03:09:35 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvYzNiMTk5ZDUtMzQ3MS00YTQ3LWFiNGMtYzI5MThhNTgxMTUwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/53066d64-0f70-4ebd-b43d-e4be24943672?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDM2NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIwMDEvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvNTMwNjZkNjQtMGY3MC00ZWJkLWI0M2QtZTRiZTI0OTQzNjcyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b24f8b84-4d0a-4d2d-b660-3f7aead25cc5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2643,28 +2595,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "d0fdd0dd-f6dd-4f04-b762-765b50906771" + "98b75e17-d167-470f-bddb-9120a64fd5a3" ], "x-ms-correlation-request-id": [ - "d0fdd0dd-f6dd-4f04-b762-765b50906771" + "98b75e17-d167-470f-bddb-9120a64fd5a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T214749Z:d0fdd0dd-f6dd-4f04-b762-765b50906771" + "WESTUS2:20210213T030937Z:98b75e17-d167-470f-bddb-9120a64fd5a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 21:47:48 GMT" + "Sat, 13 Feb 2021 03:09:36 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup3668/providers/Microsoft.DocumentDB/databaseAccounts/db001/mongodbDatabases/dbName3/operationResults/c3b199d5-3471-4a47-ab4c-c2918a581150?api-version=2020-04-01" ] }, "ResponseBody": "", 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 0a66e7fe1fee..884dfa58e4f8 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbe1a269-57c1-4945-bbed-c5969c9fa2a6" + "e7938e59-0c6c-4fd0-8b0c-d749cc06683a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "ebdfe090-3fd0-41ae-95a4-a6f8f752f311" + "c65983a2-77b7-4cca-aa8b-49003d393186" ], "x-ms-correlation-request-id": [ - "ebdfe090-3fd0-41ae-95a4-a6f8f752f311" + "c65983a2-77b7-4cca-aa8b-49003d393186" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005230Z:ebdfe090-3fd0-41ae-95a4-a6f8f752f311" + "WESTUS2:20210213T023806Z:c65983a2-77b7-4cca-aa8b-49003d393186" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:52:29 GMT" + "Sat, 13 Feb 2021 02:38:06 GMT" ], "Content-Length": [ - "1773" + "1785" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, - "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: dbe1a269-57c1-4945-bbed-c5969c9fa2a6, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435247371315616s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:52:30.4902668Z, RequestEndTime: 2020-09-03T00:52:30.4902668Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:52:30.4902668Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435247371315616s, LSN: 530, GlobalCommittedLsn: 530, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#530, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:52:30.4902668Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435584071398197s, LSN: 530, GlobalCommittedLsn: 530, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#530, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: e7938e59-0c6c-4fd0-8b0c-d749cc06683a, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:38:06.2344909Z, RequestEndTime: 2021-02-13T02:38:06.2344909Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:38:06.2344909Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10283, GlobalCommittedLsn: 10283, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10283, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:38:06.2344909Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10283, GlobalCommittedLsn: 10283, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10283, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e7938e59-0c6c-4fd0-8b0c-d749cc06683a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "bd3c9662-c384-41ea-af33-030d5a0a5837" + "91633c1a-9274-4473-ad80-9cbbcf5167d5" ], "x-ms-correlation-request-id": [ - "bd3c9662-c384-41ea-af33-030d5a0a5837" + "91633c1a-9274-4473-ad80-9cbbcf5167d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005302Z:bd3c9662-c384-41ea-af33-030d5a0a5837" + "WESTUS2:20210213T023837Z:91633c1a-9274-4473-ad80-9cbbcf5167d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:02 GMT" + "Sat, 13 Feb 2021 02:38:36 GMT" ], "Content-Length": [ "446" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"7WQtAA==\",\r\n \"_self\": \"dbs/7WQtAA==/\",\r\n \"_etag\": \"\\\"00000200-0000-0500-0000-5f503e540000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1599094356\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"l7kxAA==\",\r\n \"_self\": \"dbs/l7kxAA==/\",\r\n \"_etag\": \"\\\"00008c28-0000-0500-0000-60273b930000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183891\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "be9c6cbc-c55d-4888-bc64-a9373496272d" + "e7938e59-0c6c-4fd0-8b0c-d749cc06683a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/dd6ea7d6-ea4b-4f77-a70b-d841793f8c49?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/a54fb27d-e706-4e54-9585-a0abc8fe7c30?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dd6ea7d6-ea4b-4f77-a70b-d841793f8c49?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a54fb27d-e706-4e54-9585-a0abc8fe7c30?api-version=2021-01-15" ], "x-ms-request-id": [ - "dd6ea7d6-ea4b-4f77-a70b-d841793f8c49" + "a54fb27d-e706-4e54-9585-a0abc8fe7c30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "3fe28e7f-83e5-44e4-90f9-faf31fd69477" + "9f794d4e-ae1e-4af4-b970-8245985b5062" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005231Z:3fe28e7f-83e5-44e4-90f9-faf31fd69477" + "WESTUS2:20210213T023806Z:9f794d4e-ae1e-4af4-b970-8245985b5062" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:52:30 GMT" + "Sat, 13 Feb 2021 02:38:06 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dd6ea7d6-ea4b-4f77-a70b-d841793f8c49?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kZDZlYTdkNi1lYTRiLTRmNzctYTcwYi1kODQxNzkzZjhjNDk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a54fb27d-e706-4e54-9585-a0abc8fe7c30?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hNTRmYjI3ZC1lNzA2LTRlNTQtOTU4NS1hMGFiYzhmZTdjMzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e7938e59-0c6c-4fd0-8b0c-d749cc06683a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -234,53 +231,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "5a96cfd3-28b4-4096-a61d-51c9377236d1" + "22925109-fcfa-4b3d-80ac-ba04c0a26759" ], "x-ms-correlation-request-id": [ - "5a96cfd3-28b4-4096-a61d-51c9377236d1" + "22925109-fcfa-4b3d-80ac-ba04c0a26759" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005302Z:5a96cfd3-28b4-4096-a61d-51c9377236d1" + "WESTUS2:20210213T023837Z:22925109-fcfa-4b3d-80ac-ba04c0a26759" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:01 GMT" + "Sat, 13 Feb 2021 02:38:36 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dd6ea7d6-ea4b-4f77-a70b-d841793f8c49?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3714b782-d0f8-4ddd-84da-855a4d0bce58" + "f2258a1f-7f0e-4636-80d4-64c4e6cd23e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,53 +294,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "8ba83e07-cecd-48ab-aa33-38f6cd495d07" + "a4d89b37-aa7a-40d9-9a33-e0416b76fb61" ], "x-ms-correlation-request-id": [ - "8ba83e07-cecd-48ab-aa33-38f6cd495d07" + "a4d89b37-aa7a-40d9-9a33-e0416b76fb61" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005303Z:8ba83e07-cecd-48ab-aa33-38f6cd495d07" + "WESTUS2:20210213T023838Z:a4d89b37-aa7a-40d9-9a33-e0416b76fb61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:03 GMT" + "Sat, 13 Feb 2021 02:38:37 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"gXjf\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"xWYA\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b6ecd4-07f1-4184-a841-6c6eb445fa61" + "26f31af9-ec61-49ce-a14c-e43a52fb53b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/bacc4e31-b79a-4edf-b9c2-d0d0331d9ac8?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/bacc4e31-b79a-4edf-b9c2-d0d0331d9ac8?api-version=2021-01-15" ], "x-ms-request-id": [ - "6c34e60b-ba05-456d-9748-a933f002e880" + "bacc4e31-b79a-4edf-b9c2-d0d0331d9ac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0f2cd6e5-c292-49eb-a649-b2b43782a1a2" + "e5e4bce1-e9d3-4e0c-8afb-13ddbc779603" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005303Z:0f2cd6e5-c292-49eb-a649-b2b43782a1a2" + "WESTUS2:20210213T023838Z:e5e4bce1-e9d3-4e0c-8afb-13ddbc779603" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:03 GMT" + "Sat, 13 Feb 2021 02:38:38 GMT" ], "Content-Length": [ "21" @@ -400,16 +391,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82YzM0ZTYwYi1iYTA1LTQ1NmQtOTc0OC1hOTMzZjAwMmU4ODA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/bacc4e31-b79a-4edf-b9c2-d0d0331d9ac8?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iYWNjNGUzMS1iNzlhLTRlZGYtYjljMi1kMGQwMzMxZDlhYzg/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "26f31af9-ec61-49ce-a14c-e43a52fb53b4" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -429,47 +423,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "480c0b1a-7b32-4753-9081-ee519d85482a" + "fc012835-f241-404d-8884-9a181ca19ff1" ], "x-ms-correlation-request-id": [ - "480c0b1a-7b32-4753-9081-ee519d85482a" + "fc012835-f241-404d-8884-9a181ca19ff1" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005334Z:480c0b1a-7b32-4753-9081-ee519d85482a" + "WESTUS2:20210213T023909Z:fc012835-f241-404d-8884-9a181ca19ff1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:34 GMT" + "Sat, 13 Feb 2021 02:39:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzZjMzRlNjBiLWJhMDUtNDU2ZC05NzQ4LWE5MzNmMDAyZTg4MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/bacc4e31-b79a-4edf-b9c2-d0d0331d9ac8?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2JhY2M0ZTMxLWI3OWEtNGVkZi1iOWMyLWQwZDAzMzFkOWFjOD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "26f31af9-ec61-49ce-a14c-e43a52fb53b4" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -489,53 +483,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "64398619-f37a-4e64-927a-90abab63aa83" + "405e1427-b814-46c2-b8d6-6c8f165cd983" ], "x-ms-correlation-request-id": [ - "64398619-f37a-4e64-927a-90abab63aa83" + "405e1427-b814-46c2-b8d6-6c8f165cd983" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005334Z:64398619-f37a-4e64-927a-90abab63aa83" + "WESTUS2:20210213T023910Z:405e1427-b814-46c2-b8d6-6c8f165cd983" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:34 GMT" + "Sat, 13 Feb 2021 02:39:09 GMT" ], "Content-Length": [ "453" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale/operationResults/6c34e60b-ba05-456d-9748-a933f002e880?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"gXjf\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"xWYA\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "750c18a4-a033-4a31-9814-148352057601" + "aeca6bde-21fc-4304-9187-2e9ce56e7e7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -555,53 +546,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "abeb18b6-97b6-433d-983b-47ec98a13ae4" + "332ed20b-b91a-4aa6-b98f-0ba1bff30c0a" ], "x-ms-correlation-request-id": [ - "abeb18b6-97b6-433d-983b-47ec98a13ae4" + "332ed20b-b91a-4aa6-b98f-0ba1bff30c0a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005335Z:abeb18b6-97b6-433d-983b-47ec98a13ae4" + "WESTUS2:20210213T023910Z:332ed20b-b91a-4aa6-b98f-0ba1bff30c0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:34 GMT" + "Sat, 13 Feb 2021 02:39:09 GMT" ], "Content-Length": [ - "2295" + "2404" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-04-09T20:26:35.0312197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"instanceId\": \"936f2e1c-47bc-4164-813a-b0b81d0274ad\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-04-09T20:26:35.0312197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"instanceId\": \"936f2e1c-47bc-4164-813a-b0b81d0274ad\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74ae651a-363f-44a0-98e4-9121addd2aab" + "87780379-3d2c-467c-bde2-e4f1cfd01196" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -612,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/b6417c75-4f8d-4625-a220-addd09aa6651?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b6417c75-4f8d-4625-a220-addd09aa6651?api-version=2021-01-15" ], "x-ms-request-id": [ - "c88e866e-211d-4879-a223-39873fad0209" + "b6417c75-4f8d-4625-a220-addd09aa6651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,16 +621,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ba655298-8c65-43a9-b235-e120c3beb72d" + "c2326765-d9aa-4f1e-b0a6-a9cc75d53be4" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005335Z:ba655298-8c65-43a9-b235-e120c3beb72d" + "WESTUS2:20210213T023910Z:c2326765-d9aa-4f1e-b0a6-a9cc75d53be4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:53:35 GMT" + "Sat, 13 Feb 2021 02:39:10 GMT" ], "Content-Length": [ "21" @@ -655,16 +643,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jODhlODY2ZS0yMTFkLTQ4NzktYTIyMy0zOTg3M2ZhZDAyMDk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b6417c75-4f8d-4625-a220-addd09aa6651?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iNjQxN2M3NS00ZjhkLTQ2MjUtYTIyMC1hZGRkMDlhYTY2NTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87780379-3d2c-467c-bde2-e4f1cfd01196" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -684,47 +675,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "b2493e57-24ad-4d45-af52-d971fd12f547" + "b9ab9ff0-0fb3-4f86-adea-6a07a1d598da" ], "x-ms-correlation-request-id": [ - "b2493e57-24ad-4d45-af52-d971fd12f547" + "b9ab9ff0-0fb3-4f86-adea-6a07a1d598da" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005406Z:b2493e57-24ad-4d45-af52-d971fd12f547" + "WESTUS2:20210213T023941Z:b9ab9ff0-0fb3-4f86-adea-6a07a1d598da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:05 GMT" + "Sat, 13 Feb 2021 02:39:40 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9jODhlODY2ZS0yMTFkLTQ4NzktYTIyMy0zOTg3M2ZhZDAyMDk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/b6417c75-4f8d-4625-a220-addd09aa6651?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy9iNjQxN2M3NS00ZjhkLTQ2MjUtYTIyMC1hZGRkMDlhYTY2NTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87780379-3d2c-467c-bde2-e4f1cfd01196" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -744,53 +735,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "a69f62f7-859b-4997-8d74-2267192328df" + "f9e3605b-a77e-47fb-a2e2-5e5dbcad7a01" ], "x-ms-correlation-request-id": [ - "a69f62f7-859b-4997-8d74-2267192328df" + "f9e3605b-a77e-47fb-a2e2-5e5dbcad7a01" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005406Z:a69f62f7-859b-4997-8d74-2267192328df" + "WESTUS2:20210213T023941Z:f9e3605b-a77e-47fb-a2e2-5e5dbcad7a01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:06 GMT" + "Sat, 13 Feb 2021 02:39:41 GMT" ], "Content-Length": [ "424" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput/operationResults/c88e866e-211d-4879-a223-39873fad0209?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"gXjf\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"xWYA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "101de51e-75d6-4e29-924e-6aba9c22e356" + "554ba50e-7184-4af4-97df-20715059731a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -810,47 +798,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "853dece0-b6d1-42fb-86bb-40d550450fd8" + "d2bf3306-77d9-4243-b8a9-65901a90f846" ], "x-ms-correlation-request-id": [ - "853dece0-b6d1-42fb-86bb-40d550450fd8" + "d2bf3306-77d9-4243-b8a9-65901a90f846" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005407Z:853dece0-b6d1-42fb-86bb-40d550450fd8" + "WESTUS2:20210213T023942Z:d2bf3306-77d9-4243-b8a9-65901a90f846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:06 GMT" + "Sat, 13 Feb 2021 02:39:41 GMT" ], "Content-Length": [ - "1797" + "1809" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01" ] }, - "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: 101de51e-75d6-4e29-924e-6aba9c22e356, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435584071398197s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:54:07.0925782Z, RequestEndTime: 2020-09-03T00:54:07.0925782Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:54:07.0925782Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435584071398197s, LSN: 533, GlobalCommittedLsn: 533, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#533, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:54:07.0925782Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132435596155052544s, LSN: 533, GlobalCommittedLsn: 533, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#533, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 554ba50e-7184-4af4-97df-20715059731a, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:39:42.2042881Z, RequestEndTime: 2021-02-13T02:39:42.2042881Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:39:42.2042881Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10286, GlobalCommittedLsn: 10286, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10286, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:39:42.2042881Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10286, GlobalCommittedLsn: 10286, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10286, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "554ba50e-7184-4af4-97df-20715059731a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -870,53 +858,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "816fc2b0-e58a-4202-a233-e6dddd80b302" + "93bfadca-f569-4da5-89ff-30064792ffd4" ], "x-ms-correlation-request-id": [ - "816fc2b0-e58a-4202-a233-e6dddd80b302" + "93bfadca-f569-4da5-89ff-30064792ffd4" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005438Z:816fc2b0-e58a-4202-a233-e6dddd80b302" + "WESTUS2:20210213T024013Z:93bfadca-f569-4da5-89ff-30064792ffd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:38 GMT" + "Sat, 13 Feb 2021 02:40:13 GMT" ], "Content-Length": [ "1074" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"uniqueIndexReIndexingState\": 0,\r\n \"_rid\": \"7WQtANmaRqA=\",\r\n \"_ts\": 1599094452,\r\n \"_self\": \"dbs/7WQtAA==/colls/7WQtANmaRqA=/\",\r\n \"_etag\": \"\\\"00000800-0000-0500-0000-5f503eb40000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"l7kxAL5naK0=\",\r\n \"_ts\": 1613183987,\r\n \"_self\": \"dbs/l7kxAA==/colls/l7kxAL5naK0=/\",\r\n \"_etag\": \"\\\"00009328-0000-0500-0000-60273bf30000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "10c7a7ec-cd6e-4fee-b164-ee606d19f883" + "554ba50e-7184-4af4-97df-20715059731a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,13 +918,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/389a1d37-55d2-4814-98b4-ff1a7e6aeff6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/0cf2131a-5f69-4b91-ae32-7d257f4810e6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/389a1d37-55d2-4814-98b4-ff1a7e6aeff6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0cf2131a-5f69-4b91-ae32-7d257f4810e6?api-version=2021-01-15" ], "x-ms-request-id": [ - "389a1d37-55d2-4814-98b4-ff1a7e6aeff6" + "0cf2131a-5f69-4b91-ae32-7d257f4810e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,41 +939,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "f3e51043-1981-4e82-ac03-a20e03bfd96f" + "da6fe773-bdba-4a7d-a5d0-1266f48f6a5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005407Z:f3e51043-1981-4e82-ac03-a20e03bfd96f" + "WESTUS2:20210213T023942Z:da6fe773-bdba-4a7d-a5d0-1266f48f6a5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:07 GMT" + "Sat, 13 Feb 2021 02:39:41 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/389a1d37-55d2-4814-98b4-ff1a7e6aeff6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zODlhMWQzNy01NWQyLTQ4MTQtOThiNC1mZjFhN2U2YWVmZjY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0cf2131a-5f69-4b91-ae32-7d257f4810e6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wY2YyMTMxYS01ZjY5LTRiOTEtYWUzMi03ZDI1N2Y0ODEwZTY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "554ba50e-7184-4af4-97df-20715059731a" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1008,53 +993,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "1562d636-4080-428d-958f-df32b7385d3a" + "032e9c89-ee87-4d0d-9014-20007ff4ed4d" ], "x-ms-correlation-request-id": [ - "1562d636-4080-428d-958f-df32b7385d3a" + "032e9c89-ee87-4d0d-9014-20007ff4ed4d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005437Z:1562d636-4080-428d-958f-df32b7385d3a" + "WESTUS2:20210213T024012Z:032e9c89-ee87-4d0d-9014-20007ff4ed4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:37 GMT" + "Sat, 13 Feb 2021 02:40:12 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/389a1d37-55d2-4814-98b4-ff1a7e6aeff6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98c71b34-94a7-47f5-bdd2-2bdadde025cc" + "05351876-d3dd-4d90-bfd2-b508a45322a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1074,53 +1056,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "c21f0a62-2a5a-40e1-a583-2537b6766684" + "45dd4d10-f584-4a6b-9dca-4013d018b4d5" ], "x-ms-correlation-request-id": [ - "c21f0a62-2a5a-40e1-a583-2537b6766684" + "45dd4d10-f584-4a6b-9dca-4013d018b4d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005438Z:c21f0a62-2a5a-40e1-a583-2537b6766684" + "WESTUS2:20210213T024014Z:45dd4d10-f584-4a6b-9dca-4013d018b4d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:38 GMT" + "Sat, 13 Feb 2021 02:40:13 GMT" ], "Content-Length": [ "407" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"dEvD\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"kouA\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42086b56-c857-4d3b-8f81-a4751b36c093" + "3b33ac8d-47f7-4868-b7b3-f3a2636c9c02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1131,13 +1110,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/3e40b764-cf6c-4a09-94a8-f0a277e9b6ad?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/3e40b764-cf6c-4a09-94a8-f0a277e9b6ad?api-version=2021-01-15" ], "x-ms-request-id": [ - "cdf19a4e-fc5d-4145-92ac-76cb83c5478b" + "3e40b764-cf6c-4a09-94a8-f0a277e9b6ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,16 +1131,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "0220614e-fb0f-405c-b662-79ad9d7f721f" + "482c6da0-ad5a-491e-a1f2-ece0134a6857" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005439Z:0220614e-fb0f-405c-b662-79ad9d7f721f" + "WESTUS2:20210213T024014Z:482c6da0-ad5a-491e-a1f2-ece0134a6857" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:54:39 GMT" + "Sat, 13 Feb 2021 02:40:14 GMT" ], "Content-Length": [ "21" @@ -1174,16 +1153,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jZGYxOWE0ZS1mYzVkLTQxNDUtOTJhYy03NmNiODNjNTQ3OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/3e40b764-cf6c-4a09-94a8-f0a277e9b6ad?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zZTQwYjc2NC1jZjZjLTRhMDktOTRhOC1mMGEyNzdlOWI2YWQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3b33ac8d-47f7-4868-b7b3-f3a2636c9c02" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1203,47 +1185,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "d7baeb93-c150-46fb-9bff-929f1db7d93f" + "a9d3087a-bba4-4d7c-aab9-c10bba302578" ], "x-ms-correlation-request-id": [ - "d7baeb93-c150-46fb-9bff-929f1db7d93f" + "a9d3087a-bba4-4d7c-aab9-c10bba302578" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005509Z:d7baeb93-c150-46fb-9bff-929f1db7d93f" + "WESTUS2:20210213T024045Z:a9d3087a-bba4-4d7c-aab9-c10bba302578" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:09 GMT" + "Sat, 13 Feb 2021 02:40:44 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy9jZGYxOWE0ZS1mYzVkLTQxNDUtOTJhYy03NmNiODNjNTQ3OGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/3e40b764-cf6c-4a09-94a8-f0a277e9b6ad?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9BdXRvc2NhbGUvb3BlcmF0aW9uUmVzdWx0cy8zZTQwYjc2NC1jZjZjLTRhMDktOTRhOC1mMGEyNzdlOWI2YWQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3b33ac8d-47f7-4868-b7b3-f3a2636c9c02" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1263,53 +1245,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "f37be9b6-dc00-4987-8aa2-944b2a472190" + "48952711-2f77-403d-b54a-6a21a128a651" ], "x-ms-correlation-request-id": [ - "f37be9b6-dc00-4987-8aa2-944b2a472190" + "48952711-2f77-403d-b54a-6a21a128a651" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005510Z:f37be9b6-dc00-4987-8aa2-944b2a472190" + "WESTUS2:20210213T024045Z:48952711-2f77-403d-b54a-6a21a128a651" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:09 GMT" + "Sat, 13 Feb 2021 02:40:45 GMT" ], "Content-Length": [ "489" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale/operationResults/cdf19a4e-fc5d-4145-92ac-76cb83c5478b?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"dEvD\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"kouA\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e302863d-24e9-442a-bde3-2ed74664baed" + "77e4be38-6552-4107-b1af-7b1074b6f5df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1320,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/ccc25f6f-fabb-4ea7-90ed-a856dfa74dc6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ccc25f6f-fabb-4ea7-90ed-a856dfa74dc6?api-version=2021-01-15" ], "x-ms-request-id": [ - "a813710a-8089-46eb-9771-fa0468c4fcf0" + "ccc25f6f-fabb-4ea7-90ed-a856dfa74dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,16 +1320,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "78c566be-81dc-41a6-b006-450d2a280396" + "3d49b6f2-7e1e-472e-8261-5d11ad33c442" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005511Z:78c566be-81dc-41a6-b006-450d2a280396" + "WESTUS2:20210213T024046Z:3d49b6f2-7e1e-472e-8261-5d11ad33c442" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:10 GMT" + "Sat, 13 Feb 2021 02:40:45 GMT" ], "Content-Length": [ "21" @@ -1363,16 +1342,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hODEzNzEwYS04MDg5LTQ2ZWItOTc3MS1mYTA0NjhjNGZjZjA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ccc25f6f-fabb-4ea7-90ed-a856dfa74dc6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jY2MyNWY2Zi1mYWJiLTRlYTctOTBlZC1hODU2ZGZhNzRkYzY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "77e4be38-6552-4107-b1af-7b1074b6f5df" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1392,47 +1374,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "3271a17c-d0e6-4527-9b80-8ff6b1c119a4" + "2a8abb6d-35fe-4a70-b52f-2b09f8a1055e" ], "x-ms-correlation-request-id": [ - "3271a17c-d0e6-4527-9b80-8ff6b1c119a4" + "2a8abb6d-35fe-4a70-b52f-2b09f8a1055e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005541Z:3271a17c-d0e6-4527-9b80-8ff6b1c119a4" + "WESTUS2:20210213T024116Z:2a8abb6d-35fe-4a70-b52f-2b09f8a1055e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:40 GMT" + "Sat, 13 Feb 2021 02:41:16 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvYTgxMzcxMGEtODA4OS00NmViLTk3NzEtZmEwNDY4YzRmY2YwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/ccc25f6f-fabb-4ea7-90ed-a856dfa74dc6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdC9taWdyYXRlVG9NYW51YWxUaHJvdWdocHV0L29wZXJhdGlvblJlc3VsdHMvY2NjMjVmNmYtZmFiYi00ZWE3LTkwZWQtYTg1NmRmYTc0ZGM2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "77e4be38-6552-4107-b1af-7b1074b6f5df" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1452,53 +1434,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "41ef27e1-5258-432d-adf7-2a95a94030b0" + "311cbb49-fa74-4655-aa5d-35a2608a2916" ], "x-ms-correlation-request-id": [ - "41ef27e1-5258-432d-adf7-2a95a94030b0" + "311cbb49-fa74-4655-aa5d-35a2608a2916" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005542Z:41ef27e1-5258-432d-adf7-2a95a94030b0" + "WESTUS2:20210213T024117Z:311cbb49-fa74-4655-aa5d-35a2608a2916" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:41 GMT" + "Sat, 13 Feb 2021 02:41:16 GMT" ], "Content-Length": [ "460" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput/operationResults/a813710a-8089-46eb-9771-fa0468c4fcf0?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"dEvD\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"kouA\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "792c27f9-79ea-472f-a45f-40dfe0a64d4d" + "958a38cb-00e5-4800-9dce-4ac1d0f7e031" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1509,13 +1488,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/c7812cc3-f261-4b53-ad5c-61148c3a73cc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c7812cc3-f261-4b53-ad5c-61148c3a73cc?api-version=2021-01-15" ], "x-ms-request-id": [ - "83259ffe-9de9-4158-96ac-4ffd41f33aae" + "c7812cc3-f261-4b53-ad5c-61148c3a73cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1527,50 +1506,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "80a3b1aa-2f04-4189-b495-926a9e1e0300" + "a82fda49-cef5-41af-b4c2-78c3c68cbceb" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005542Z:80a3b1aa-2f04-4189-b495-926a9e1e0300" + "WESTUS2:20210213T024117Z:a82fda49-cef5-41af-b4c2-78c3c68cbceb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:55:41 GMT" + "Sat, 13 Feb 2021 02:41:17 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16376f5b-f498-4913-99e3-bc8aecb83dea" + "30a581b7-e953-41b0-9550-313c06770faf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1581,13 +1557,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/c348f6a7-9447-4fb3-9dfb-b37036bc90b7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c348f6a7-9447-4fb3-9dfb-b37036bc90b7?api-version=2021-01-15" ], "x-ms-request-id": [ - "6cab7d10-d44d-4b4a-ba3a-063c9820b510" + "c348f6a7-9447-4fb3-9dfb-b37036bc90b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,44 +1575,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "8662dac3-83f2-4edf-bb54-cdcc25ceaa60" + "9f2ed198-ba86-464b-961e-fca130f59f15" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005645Z:8662dac3-83f2-4edf-bb54-cdcc25ceaa60" + "WESTUS2:20210213T024220Z:9f2ed198-ba86-464b-961e-fca130f59f15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:44 GMT" + "Sat, 13 Feb 2021 02:42:20 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84MzI1OWZmZS05ZGU5LTQxNTgtOTZhYy00ZmZkNDFmMzNhYWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c7812cc3-f261-4b53-ad5c-61148c3a73cc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jNzgxMmNjMy1mMjYxLTRiNTMtYWQ1Yy02MTE0OGMzYTczY2M/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "958a38cb-00e5-4800-9dce-4ac1d0f7e031" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1656,47 +1632,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "0eaa1a15-9aec-4c7e-be63-a9e09124a3a8" + "e0f136f7-65aa-455d-ae12-a7c5a4af8c2a" ], "x-ms-correlation-request-id": [ - "0eaa1a15-9aec-4c7e-be63-a9e09124a3a8" + "e0f136f7-65aa-455d-ae12-a7c5a4af8c2a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005612Z:0eaa1a15-9aec-4c7e-be63-a9e09124a3a8" + "WESTUS2:20210213T024147Z:e0f136f7-65aa-455d-ae12-a7c5a4af8c2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:11 GMT" + "Sat, 13 Feb 2021 02:41:47 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzLzgzMjU5ZmZlLTlkZTktNDE1OC05NmFjLTRmZmQ0MWYzM2FhZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/c7812cc3-f261-4b53-ad5c-61148c3a73cc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzL2M3ODEyY2MzLWYyNjEtNGI1My1hZDVjLTYxMTQ4YzNhNzNjYz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "958a38cb-00e5-4800-9dce-4ac1d0f7e031" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1716,50 +1692,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "6fc4f0dd-dced-4f48-a7e3-aa7d97f90163" + "11dae67c-871f-4a17-9826-f94845e7f8d5" ], "x-ms-correlation-request-id": [ - "6fc4f0dd-dced-4f48-a7e3-aa7d97f90163" + "11dae67c-871f-4a17-9826-f94845e7f8d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005612Z:6fc4f0dd-dced-4f48-a7e3-aa7d97f90163" + "WESTUS2:20210213T024148Z:11dae67c-871f-4a17-9826-f94845e7f8d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:11 GMT" + "Sat, 13 Feb 2021 02:41:47 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/83259ffe-9de9-4158-96ac-4ffd41f33aae?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9932c781-5cf2-4ee1-9a5f-e09b1489c5ba" + "af6b2aff-447c-4820-a57b-ffe18125a057" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1770,13 +1743,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/1f9e92d1-eb0c-4d41-80f9-b8f7c99a5ebc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1f9e92d1-eb0c-4d41-80f9-b8f7c99a5ebc?api-version=2021-01-15" ], "x-ms-request-id": [ - "5af55cbe-6cf6-4d17-9294-39bc2a72d3ba" + "1f9e92d1-eb0c-4d41-80f9-b8f7c99a5ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1788,50 +1761,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "1fdb8676-3a39-4b62-9ab7-67eba2b56e39" + "2af34fe5-5383-429a-b018-432bdf8ea32d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005613Z:1fdb8676-3a39-4b62-9ab7-67eba2b56e39" + "WESTUS2:20210213T024149Z:2af34fe5-5383-429a-b018-432bdf8ea32d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:13 GMT" + "Sat, 13 Feb 2021 02:41:49 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb665257-9884-4ae7-9673-d8772a55ffed" + "e2bdffe7-d908-4c40-848f-475189b6c4a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1842,13 +1812,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/9d466b55-fa4d-408f-9d53-d6e4c7405794?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9d466b55-fa4d-408f-9d53-d6e4c7405794?api-version=2021-01-15" ], "x-ms-request-id": [ - "712e5841-e096-4bf3-b580-bbb2e70f4611" + "9d466b55-fa4d-408f-9d53-d6e4c7405794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,44 +1830,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "ba9b84df-57bd-484d-9ab9-5c83581a5333" + "6fa19ce2-6d9c-4b81-b96f-8c74088f6080" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005716Z:ba9b84df-57bd-484d-9ab9-5c83581a5333" + "WESTUS2:20210213T024252Z:6fa19ce2-6d9c-4b81-b96f-8c74088f6080" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:16 GMT" + "Sat, 13 Feb 2021 02:42:51 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81YWY1NWNiZS02Y2Y2LTRkMTctOTI5NC0zOWJjMmE3MmQzYmE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1f9e92d1-eb0c-4d41-80f9-b8f7c99a5ebc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xZjllOTJkMS1lYjBjLTRkNDEtODBmOS1iOGY3Yzk5YTVlYmM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "af6b2aff-447c-4820-a57b-ffe18125a057" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1917,47 +1887,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "be2233a7-b7ad-4fff-887f-ba441ae7a5f0" + "0ca5fd55-5d4c-4706-8222-f12ec765eaaa" ], "x-ms-correlation-request-id": [ - "be2233a7-b7ad-4fff-887f-ba441ae7a5f0" + "0ca5fd55-5d4c-4706-8222-f12ec765eaaa" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005643Z:be2233a7-b7ad-4fff-887f-ba441ae7a5f0" + "WESTUS2:20210213T024219Z:0ca5fd55-5d4c-4706-8222-f12ec765eaaa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:43 GMT" + "Sat, 13 Feb 2021 02:42:18 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvNWFmNTVjYmUtNmNmNi00ZDE3LTkyOTQtMzliYzJhNzJkM2JhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/1f9e92d1-eb0c-4d41-80f9-b8f7c99a5ebc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvMWY5ZTkyZDEtZWIwYy00ZDQxLTgwZjktYjhmN2M5OWE1ZWJjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "af6b2aff-447c-4820-a57b-ffe18125a057" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1977,44 +1947,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "49d1a785-f22e-4c1b-a807-5a2847a0e684" + "a4bc9e8e-cc7e-414a-b547-89f00df111d1" ], "x-ms-correlation-request-id": [ - "49d1a785-f22e-4c1b-a807-5a2847a0e684" + "a4bc9e8e-cc7e-414a-b547-89f00df111d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005644Z:49d1a785-f22e-4c1b-a807-5a2847a0e684" + "WESTUS2:20210213T024219Z:a4bc9e8e-cc7e-414a-b547-89f00df111d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:56:43 GMT" + "Sat, 13 Feb 2021 02:42:18 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/5af55cbe-6cf6-4d17-9294-39bc2a72d3ba?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82Y2FiN2QxMC1kNDRkLTRiNGEtYmEzYS0wNjNjOTgyMGI1MTA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c348f6a7-9447-4fb3-9dfb-b37036bc90b7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jMzQ4ZjZhNy05NDQ3LTRmYjMtOWRmYi1iMzcwMzZiYzkwYjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "30a581b7-e953-41b0-9550-313c06770faf" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2034,47 +2004,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11941" ], "x-ms-request-id": [ - "84244ca8-69b4-4024-bdbb-8e37c944e35c" + "14033480-4cfe-41dc-be4e-768c510da504" ], "x-ms-correlation-request-id": [ - "84244ca8-69b4-4024-bdbb-8e37c944e35c" + "14033480-4cfe-41dc-be4e-768c510da504" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005715Z:84244ca8-69b4-4024-bdbb-8e37c944e35c" + "WESTUS2:20210213T024250Z:14033480-4cfe-41dc-be4e-768c510da504" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:15 GMT" + "Sat, 13 Feb 2021 02:42:50 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzLzZjYWI3ZDEwLWQ0NGQtNGI0YS1iYTNhLTA2M2M5ODIwYjUxMD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/c348f6a7-9447-4fb3-9dfb-b37036bc90b7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzL2MzNDhmNmE3LTk0NDctNGZiMy05ZGZiLWIzNzAzNmJjOTBiNz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "30a581b7-e953-41b0-9550-313c06770faf" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2094,44 +2064,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11940" ], "x-ms-request-id": [ - "a7e462a3-fdc5-4c52-9d2b-7eb721666262" + "5ff58c94-6039-4d94-8d7d-48b8b3d66547" ], "x-ms-correlation-request-id": [ - "a7e462a3-fdc5-4c52-9d2b-7eb721666262" + "5ff58c94-6039-4d94-8d7d-48b8b3d66547" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005715Z:a7e462a3-fdc5-4c52-9d2b-7eb721666262" + "WESTUS2:20210213T024251Z:5ff58c94-6039-4d94-8d7d-48b8b3d66547" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:15 GMT" + "Sat, 13 Feb 2021 02:42:50 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName/operationResults/6cab7d10-d44d-4b4a-ba3a-063c9820b510?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83MTJlNTg0MS1lMDk2LTRiZjMtYjU4MC1iYmIyZTcwZjQ2MTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9d466b55-fa4d-408f-9d53-d6e4c7405794?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85ZDQ2NmI1NS1mYTRkLTQwOGYtOWQ1My1kNmU0Yzc0MDU3OTQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e2bdffe7-d908-4c40-848f-475189b6c4a3" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2151,47 +2121,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "2e9ca3a0-faff-4453-8a42-20fa4e2a91c0" + "4622c779-93e2-40e4-9dd0-d1f56aac1b20" ], "x-ms-correlation-request-id": [ - "2e9ca3a0-faff-4453-8a42-20fa4e2a91c0" + "4622c779-93e2-40e4-9dd0-d1f56aac1b20" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005746Z:2e9ca3a0-faff-4453-8a42-20fa4e2a91c0" + "WESTUS2:20210213T024322Z:4622c779-93e2-40e4-9dd0-d1f56aac1b20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:46 GMT" + "Sat, 13 Feb 2021 02:43:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvNzEyZTU4NDEtZTA5Ni00YmYzLWI1ODAtYmJiMmU3MGY0NjExP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/9d466b55-fa4d-408f-9d53-d6e4c7405794?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvOWQ0NjZiNTUtZmE0ZC00MDhmLTlkNTMtZDZlNGM3NDA1Nzk0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e2bdffe7-d908-4c40-848f-475189b6c4a3" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2211,28 +2181,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "5cbfc531-06c6-4cc6-9014-57020b3263ca" + "bb3cc14b-ada8-4abc-9f25-98b3996157d9" ], "x-ms-correlation-request-id": [ - "5cbfc531-06c6-4cc6-9014-57020b3263ca" + "bb3cc14b-ada8-4abc-9f25-98b3996157d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T005746Z:5cbfc531-06c6-4cc6-9014-57020b3263ca" + "WESTUS2:20210213T024322Z:bb3cc14b-ada8-4abc-9f25-98b3996157d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:57:46 GMT" + "Sat, 13 Feb 2021 02:43:22 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/712e5841-e096-4bf3-b580-bbb2e70f4611?api-version=2020-04-01" ] }, "ResponseBody": "", 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 00ec285445c6..59ba78baa5d8 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9f061c7-5efd-4b3e-a1df-d3d8a1d7b295" + "f62a9a0e-e1b1-4056-971b-17d8918e40aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "d347fc58-f1e3-404b-a320-184c5c7c9a45" + "110f8544-b0f1-4d14-bcf6-64bdf11b5343" ], "x-ms-correlation-request-id": [ - "d347fc58-f1e3-404b-a320-184c5c7c9a45" + "110f8544-b0f1-4d14-bcf6-64bdf11b5343" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180017Z:d347fc58-f1e3-404b-a320-184c5c7c9a45" + "WESTUS2:20210213T021707Z:110f8544-b0f1-4d14-bcf6-64bdf11b5343" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:16 GMT" + "Sat, 13 Feb 2021 02:17:07 GMT" ], "Content-Length": [ - "1709" + "1784" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: a9f061c7-5efd-4b3e-a1df-d3d8a1d7b295, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:00:17.3527628Z, RequestEndTime: 2020-06-10T18:00:17.3527628Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:00:17.3527628Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 415, GlobalCommittedLsn: 415, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#415, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T18:00:17.3527628Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, LSN: 415, GlobalCommittedLsn: 415, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#415, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: f62a9a0e-e1b1-4056-971b-17d8918e40aa, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:17:07.7673975Z, RequestEndTime: 2021-02-13T02:17:07.7773970Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:17:07.7773970Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10271, GlobalCommittedLsn: 10271, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10271, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:17:07.7773970Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10271, GlobalCommittedLsn: 10271, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10271, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f62a9a0e-e1b1-4056-971b-17d8918e40aa" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "c09dc346-1483-4c9a-b2cc-2f97b57d54da" + "eda9e348-c3f5-4e1e-b9dc-fb59885f6d11" ], "x-ms-correlation-request-id": [ - "c09dc346-1483-4c9a-b2cc-2f97b57d54da" + "eda9e348-c3f5-4e1e-b9dc-fb59885f6d11" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180049Z:c09dc346-1483-4c9a-b2cc-2f97b57d54da" + "WESTUS2:20210213T021739Z:eda9e348-c3f5-4e1e-b9dc-fb59885f6d11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:48 GMT" + "Sat, 13 Feb 2021 02:17:39 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58f88b79-ae72-4a6c-b6c2-8b557126dc6a" + "89e91686-7d75-4bca-aa42-f42324f2bb52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "f488a210-4efa-4560-a96d-31c43b240949" + "8d35b7d4-3258-4bfd-9931-446c5351a4f6" ], "x-ms-correlation-request-id": [ - "f488a210-4efa-4560-a96d-31c43b240949" + "8d35b7d4-3258-4bfd-9931-446c5351a4f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180049Z:f488a210-4efa-4560-a96d-31c43b240949" + "WESTUS2:20210213T021739Z:8d35b7d4-3258-4bfd-9931-446c5351a4f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:49 GMT" + "Sat, 13 Feb 2021 02:17:39 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adb2f853-2a72-4529-b8da-2189ef5c564f" + "5179008f-d0a6-4bae-bc21-bb80e02e27b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,50 +225,47 @@ "11974" ], "x-ms-request-id": [ - "2c8f8a6b-e262-48f8-9f3a-c78ec02b0904" + "ba0f6e89-b9c2-4b32-87eb-8daa541281f5" ], "x-ms-correlation-request-id": [ - "2c8f8a6b-e262-48f8-9f3a-c78ec02b0904" + "ba0f6e89-b9c2-4b32-87eb-8daa541281f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180259Z:2c8f8a6b-e262-48f8-9f3a-c78ec02b0904" + "WESTUS2:20210213T021951Z:ba0f6e89-b9c2-4b32-87eb-8daa541281f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:59 GMT" + "Sat, 13 Feb 2021 02:19:50 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3ca1d5c-c341-4e23-a9e7-7cd34a7b512d" + "58ea57bc-048a-4e1a-be9f-f71f2bd777ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -297,44 +288,44 @@ "11969" ], "x-ms-request-id": [ - "16ac4f45-161c-49db-bcb6-492c334155bf" + "34c9491f-d73a-437d-ab53-0a0c6fcbdeb4" ], "x-ms-correlation-request-id": [ - "16ac4f45-161c-49db-bcb6-492c334155bf" + "34c9491f-d73a-437d-ab53-0a0c6fcbdeb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180301Z:16ac4f45-161c-49db-bcb6-492c334155bf" + "WESTUS2:20210213T021952Z:34c9491f-d73a-437d-ab53-0a0c6fcbdeb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:00 GMT" + "Sat, 13 Feb 2021 02:19:52 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "58ea57bc-048a-4e1a-be9f-f71f2bd777ed" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,50 +348,47 @@ "11967" ], "x-ms-request-id": [ - "3357ac1e-a370-4407-a3e8-dc315111fbce" + "ecc3554b-2e65-43a9-967f-8fa076642340" ], "x-ms-correlation-request-id": [ - "3357ac1e-a370-4407-a3e8-dc315111fbce" + "ecc3554b-2e65-43a9-967f-8fa076642340" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180332Z:3357ac1e-a370-4407-a3e8-dc315111fbce" + "WESTUS2:20210213T022024Z:ecc3554b-2e65-43a9-967f-8fa076642340" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:31 GMT" + "Sat, 13 Feb 2021 02:20:23 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "cfceaced-32a1-44b6-991d-2682a97c1c1b" + "f62a9a0e-e1b1-4056-971b-17d8918e40aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/4b493d0d-ab01-478c-b51c-8560efda48f6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/ce170ca9-14fd-461b-9bed-4fa6c5aa2900?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4b493d0d-ab01-478c-b51c-8560efda48f6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ce170ca9-14fd-461b-9bed-4fa6c5aa2900?api-version=2021-01-15" ], "x-ms-request-id": [ - "4b493d0d-ab01-478c-b51c-8560efda48f6" + "ce170ca9-14fd-461b-9bed-4fa6c5aa2900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,47 +426,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "9e6d29e9-e7c1-4f3c-89d8-5a9c15b897cb" + "b38109d2-9405-4277-8f76-059e78373dc6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180018Z:9e6d29e9-e7c1-4f3c-89d8-5a9c15b897cb" + "WESTUS2:20210213T021708Z:b38109d2-9405-4277-8f76-059e78373dc6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:17 GMT" + "Sat, 13 Feb 2021 02:17:07 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "fb026096-c32a-4f0c-9bed-9219d3a86593" + "58ea57bc-048a-4e1a-be9f-f71f2bd777ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,13 +480,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/5f7e3827-2efe-4a1d-8e3d-55e8253f3350?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/1df8caa0-c3cb-415f-b88c-850a1c4e830f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5f7e3827-2efe-4a1d-8e3d-55e8253f3350?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1df8caa0-c3cb-415f-b88c-850a1c4e830f?api-version=2021-01-15" ], "x-ms-request-id": [ - "5f7e3827-2efe-4a1d-8e3d-55e8253f3350" + "1df8caa0-c3cb-415f-b88c-850a1c4e830f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,41 +501,41 @@ "1194" ], "x-ms-correlation-request-id": [ - "bab8f813-e9d0-4ed1-b8e1-abf27a3a601f" + "b2685394-be2b-44d2-b142-4e5dd4c96b88" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180301Z:bab8f813-e9d0-4ed1-b8e1-abf27a3a601f" + "WESTUS2:20210213T021952Z:b2685394-be2b-44d2-b142-4e5dd4c96b88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:01 GMT" + "Sat, 13 Feb 2021 02:19:52 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4b493d0d-ab01-478c-b51c-8560efda48f6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80YjQ5M2QwZC1hYjAxLTQ3OGMtYjUxYy04NTYwZWZkYTQ4ZjY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ce170ca9-14fd-461b-9bed-4fa6c5aa2900?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jZTE3MGNhOS0xNGZkLTQ2MWItOWJlZC00ZmE2YzVhYTI5MDA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f62a9a0e-e1b1-4056-971b-17d8918e40aa" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -573,50 +558,47 @@ "11998" ], "x-ms-request-id": [ - "dc948e65-d603-4cf0-976e-c731b8d4711c" + "bb25de92-2816-48b7-b113-21daa06c0c68" ], "x-ms-correlation-request-id": [ - "dc948e65-d603-4cf0-976e-c731b8d4711c" + "bb25de92-2816-48b7-b113-21daa06c0c68" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180048Z:dc948e65-d603-4cf0-976e-c731b8d4711c" + "WESTUS2:20210213T021738Z:bb25de92-2816-48b7-b113-21daa06c0c68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:48 GMT" + "Sat, 13 Feb 2021 02:17:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4b493d0d-ab01-478c-b51c-8560efda48f6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cf6e169-c5f1-44f5-b659-4c4bf08df457" + "04675488-ab42-4a3a-82dd-f7ed18d55cc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -639,44 +621,44 @@ "11995" ], "x-ms-request-id": [ - "d3ee731c-b289-4d2f-bf2f-9b48789ee9e6" + "9d3eecf1-bbe7-4868-8fae-f50a46d86627" ], "x-ms-correlation-request-id": [ - "d3ee731c-b289-4d2f-bf2f-9b48789ee9e6" + "9d3eecf1-bbe7-4868-8fae-f50a46d86627" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180049Z:d3ee731c-b289-4d2f-bf2f-9b48789ee9e6" + "WESTUS2:20210213T021740Z:9d3eecf1-bbe7-4868-8fae-f50a46d86627" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:49 GMT" + "Sat, 13 Feb 2021 02:17:40 GMT" ], "Content-Length": [ - "1730" + "1805" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 3cf6e169-c5f1-44f5-b659-4c4bf08df457, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:00:49.7742143Z, RequestEndTime: 2020-06-10T18:00:49.7742143Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:00:49.7742143Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, LSN: 416, GlobalCommittedLsn: 416, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#416, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T18:00:49.7742143Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, LSN: 416, GlobalCommittedLsn: 416, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#416, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 04675488-ab42-4a3a-82dd-f7ed18d55cc9, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:17:40.1083060Z, RequestEndTime: 2021-02-13T02:17:40.1083060Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:17:40.1083060Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10272, GlobalCommittedLsn: 10272, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10272, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:17:40.1083060Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10272, GlobalCommittedLsn: 10272, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10272, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "04675488-ab42-4a3a-82dd-f7ed18d55cc9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -699,50 +681,47 @@ "11993" ], "x-ms-request-id": [ - "ca64642d-cc78-46aa-ac88-c71d08bcc9db" + "a28f5065-7ff4-47fa-89d2-5862f21f245b" ], "x-ms-correlation-request-id": [ - "ca64642d-cc78-46aa-ac88-c71d08bcc9db" + "a28f5065-7ff4-47fa-89d2-5862f21f245b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180121Z:ca64642d-cc78-46aa-ac88-c71d08bcc9db" + "WESTUS2:20210213T021812Z:a28f5065-7ff4-47fa-89d2-5862f21f245b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:21 GMT" + "Sat, 13 Feb 2021 02:18:11 GMT" ], "Content-Length": [ - "1453" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e519bd97-eee5-4b80-bf95-7de23cffdd39" + "19ade581-ebfc-423e-97a6-cfba5464ea27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -765,50 +744,47 @@ "11992" ], "x-ms-request-id": [ - "f9ecfd84-4386-41dd-8eba-cb0e85746972" + "b0bc5c35-4cdc-44ee-ade0-c9c156b7ab1f" ], "x-ms-correlation-request-id": [ - "f9ecfd84-4386-41dd-8eba-cb0e85746972" + "b0bc5c35-4cdc-44ee-ade0-c9c156b7ab1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180121Z:f9ecfd84-4386-41dd-8eba-cb0e85746972" + "WESTUS2:20210213T021812Z:b0bc5c35-4cdc-44ee-ade0-c9c156b7ab1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:21 GMT" + "Sat, 13 Feb 2021 02:18:11 GMT" ], "Content-Length": [ - "1453" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dcdff20-2fbb-4448-85a8-7c339662c7b4" + "9c14d3e4-cfa6-43b5-bce9-c679c84fe55c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -831,50 +807,47 @@ "11973" ], "x-ms-request-id": [ - "a6023f65-1f4d-4391-82fa-bab0659cc84d" + "4d8da50e-be0e-4e7c-955f-4d43a1a4981d" ], "x-ms-correlation-request-id": [ - "a6023f65-1f4d-4391-82fa-bab0659cc84d" + "4d8da50e-be0e-4e7c-955f-4d43a1a4981d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180259Z:a6023f65-1f4d-4391-82fa-bab0659cc84d" + "WESTUS2:20210213T021951Z:4d8da50e-be0e-4e7c-955f-4d43a1a4981d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:59 GMT" + "Sat, 13 Feb 2021 02:19:50 GMT" ], "Content-Length": [ - "1455" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b936ad2-034a-49e4-965d-d2f08f13e35f" + "734bb155-5d8a-4fe3-87f6-7ee5245bde9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -897,44 +870,44 @@ "11966" ], "x-ms-request-id": [ - "069efeb2-b6d3-436b-a0af-68aee05d1a1d" + "846bcba2-cc5f-4992-b82c-429c1d0c98b7" ], "x-ms-correlation-request-id": [ - "069efeb2-b6d3-436b-a0af-68aee05d1a1d" + "846bcba2-cc5f-4992-b82c-429c1d0c98b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180332Z:069efeb2-b6d3-436b-a0af-68aee05d1a1d" + "WESTUS2:20210213T022024Z:846bcba2-cc5f-4992-b82c-429c1d0c98b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:32 GMT" + "Sat, 13 Feb 2021 02:20:23 GMT" ], "Content-Length": [ - "1455" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "734bb155-5d8a-4fe3-87f6-7ee5245bde9c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -957,50 +930,47 @@ "11964" ], "x-ms-request-id": [ - "70a67ce8-f9b1-4533-aed4-9350ad24c5ad" + "3a6545bd-de93-4733-911b-ccff22a9a383" ], "x-ms-correlation-request-id": [ - "70a67ce8-f9b1-4533-aed4-9350ad24c5ad" + "3a6545bd-de93-4733-911b-ccff22a9a383" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180404Z:70a67ce8-f9b1-4533-aed4-9350ad24c5ad" + "WESTUS2:20210213T022056Z:3a6545bd-de93-4733-911b-ccff22a9a383" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:03 GMT" + "Sat, 13 Feb 2021 02:20:55 GMT" ], "Content-Length": [ - "1455" + "1486" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "43c5a314-b691-43ad-9ec9-202030fa2e53" + "04675488-ab42-4a3a-82dd-f7ed18d55cc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,13 +987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/5588227d-d58a-4af0-bf82-d494f2753c47?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/5490daeb-0205-4601-b226-a18c79153eeb?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5588227d-d58a-4af0-bf82-d494f2753c47?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5490daeb-0205-4601-b226-a18c79153eeb?api-version=2021-01-15" ], "x-ms-request-id": [ - "5588227d-d58a-4af0-bf82-d494f2753c47" + "5490daeb-0205-4601-b226-a18c79153eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,47 +1008,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "51298d00-a568-4e56-bd24-736a4440bfb6" + "ea617eb7-66fd-4a41-a3f5-b414b552b890" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180050Z:51298d00-a568-4e56-bd24-736a4440bfb6" + "WESTUS2:20210213T021740Z:ea617eb7-66fd-4a41-a3f5-b414b552b890" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:00:50 GMT" + "Sat, 13 Feb 2021 02:17:40 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "78d4e533-7af8-4cc3-809d-3764c5e10c59" + "734bb155-5d8a-4fe3-87f6-7ee5245bde9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1095,13 +1062,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/fa6a3a4c-1d1d-4a19-9af7-3e2ed1266e32?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/0d28c251-4a61-43e1-a7d5-06952383522d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa6a3a4c-1d1d-4a19-9af7-3e2ed1266e32?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0d28c251-4a61-43e1-a7d5-06952383522d?api-version=2021-01-15" ], "x-ms-request-id": [ - "fa6a3a4c-1d1d-4a19-9af7-3e2ed1266e32" + "0d28c251-4a61-43e1-a7d5-06952383522d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,41 +1083,41 @@ "1193" ], "x-ms-correlation-request-id": [ - "fa749796-6eb5-42b4-9868-07b32c7448ca" + "dc626c33-e91b-4ebd-a749-cbc7e3514d79" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180333Z:fa749796-6eb5-42b4-9868-07b32c7448ca" + "WESTUS2:20210213T022024Z:dc626c33-e91b-4ebd-a749-cbc7e3514d79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:32 GMT" + "Sat, 13 Feb 2021 02:20:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5588227d-d58a-4af0-bf82-d494f2753c47?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81NTg4MjI3ZC1kNThhLTRhZjAtYmY4Mi1kNDk0ZjI3NTNjNDc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5490daeb-0205-4601-b226-a18c79153eeb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81NDkwZGFlYi0wMjA1LTQ2MDEtYjIyNi1hMThjNzkxNTNlZWI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "04675488-ab42-4a3a-82dd-f7ed18d55cc9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1173,50 +1140,47 @@ "11994" ], "x-ms-request-id": [ - "71d7c832-2117-4089-91b2-a99bc5ea4d52" + "d9a9e13d-8d7c-431b-b261-10494a41170c" ], "x-ms-correlation-request-id": [ - "71d7c832-2117-4089-91b2-a99bc5ea4d52" + "d9a9e13d-8d7c-431b-b261-10494a41170c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180120Z:71d7c832-2117-4089-91b2-a99bc5ea4d52" + "WESTUS2:20210213T021811Z:d9a9e13d-8d7c-431b-b261-10494a41170c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:20 GMT" + "Sat, 13 Feb 2021 02:18:10 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5588227d-d58a-4af0-bf82-d494f2753c47?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e671c07a-7caf-4b95-bac0-b63722f4ce44" + "b38f6233-1426-4505-b31a-791769e3e935" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1239,44 +1203,44 @@ "11991" ], "x-ms-request-id": [ - "49673956-3f18-4d9a-a683-2cdb0dcdd3f6" + "c33f7aee-af84-4efd-a443-164ecf3b9371" ], "x-ms-correlation-request-id": [ - "49673956-3f18-4d9a-a683-2cdb0dcdd3f6" + "c33f7aee-af84-4efd-a443-164ecf3b9371" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180121Z:49673956-3f18-4d9a-a683-2cdb0dcdd3f6" + "WESTUS2:20210213T021812Z:c33f7aee-af84-4efd-a443-164ecf3b9371" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:21 GMT" + "Sat, 13 Feb 2021 02:18:11 GMT" ], "Content-Length": [ - "1255" + "1331" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: e671c07a-7caf-4b95-bac0-b63722f4ce44, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:01:21.8511046Z, RequestEndTime: 2020-06-10T18:01:21.8611356Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:01:21.8611356Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14375/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: b38f6233-1426-4505-b31a-791769e3e935, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403575s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:18:12.5202001Z, RequestEndTime: 2021-02-13T02:18:12.5202001Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:18:12.5202001Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14026/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403575s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b38f6233-1426-4505-b31a-791769e3e935" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1299,50 +1263,47 @@ "11989" ], "x-ms-request-id": [ - "62b9db51-367e-4cbe-a200-c97da90ce888" + "23b189a6-9015-4723-a007-65b8d0a5d21e" ], "x-ms-correlation-request-id": [ - "62b9db51-367e-4cbe-a200-c97da90ce888" + "23b189a6-9015-4723-a007-65b8d0a5d21e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180152Z:62b9db51-367e-4cbe-a200-c97da90ce888" + "WESTUS2:20210213T021844Z:23b189a6-9015-4723-a007-65b8d0a5d21e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:52 GMT" + "Sat, 13 Feb 2021 02:18:44 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"390117eb-0000-0500-0000-5ee11ff50000\\\"\",\r\n \"_ts\": 1591812085\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8700dd53-0000-0500-0000-602736e90000\\\"\",\r\n \"_ts\": 1613182697\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1003923b-8440-4470-8544-6542df71a41d" + "fd3c227e-f263-4eb9-9b69-371c04b7f557" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1365,50 +1326,47 @@ "11988" ], "x-ms-request-id": [ - "cecfecc7-aba1-4709-a7e8-40b27657df65" + "dbad1552-17d5-4517-a5b7-b47969f38e84" ], "x-ms-correlation-request-id": [ - "cecfecc7-aba1-4709-a7e8-40b27657df65" + "dbad1552-17d5-4517-a5b7-b47969f38e84" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180153Z:cecfecc7-aba1-4709-a7e8-40b27657df65" + "WESTUS2:20210213T021844Z:dbad1552-17d5-4517-a5b7-b47969f38e84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:52 GMT" + "Sat, 13 Feb 2021 02:18:44 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"390117eb-0000-0500-0000-5ee11ff50000\\\"\",\r\n \"_ts\": 1591812085\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8700dd53-0000-0500-0000-602736e90000\\\"\",\r\n \"_ts\": 1613182697\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a427453d-1bf7-4250-817e-8bffc213ba13" + "dbb2adf7-eee6-407e-abbb-f5a112011d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1431,50 +1389,47 @@ "11972" ], "x-ms-request-id": [ - "051a2aec-6d75-4f84-8117-e14d4e7caea6" + "33a8cccc-41a1-411b-a3ce-9b6561acd8d1" ], "x-ms-correlation-request-id": [ - "051a2aec-6d75-4f84-8117-e14d4e7caea6" + "33a8cccc-41a1-411b-a3ce-9b6561acd8d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180259Z:051a2aec-6d75-4f84-8117-e14d4e7caea6" + "WESTUS2:20210213T021951Z:33a8cccc-41a1-411b-a3ce-9b6561acd8d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:59 GMT" + "Sat, 13 Feb 2021 02:19:51 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"390117eb-0000-0500-0000-5ee11ff50000\\\"\",\r\n \"_ts\": 1591812085\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8700dd53-0000-0500-0000-602736e90000\\\"\",\r\n \"_ts\": 1613182697\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf8f1443-2156-49ca-9a37-a4aa275a14fc" + "f4a3cc34-f2b4-4332-b496-2d451f0b4285" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1497,44 +1452,44 @@ "11963" ], "x-ms-request-id": [ - "681259de-43f2-49ed-8142-474d868ccc80" + "1093e181-29cc-469a-93a2-c88cdb3c38ad" ], "x-ms-correlation-request-id": [ - "681259de-43f2-49ed-8142-474d868ccc80" + "1093e181-29cc-469a-93a2-c88cdb3c38ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180404Z:681259de-43f2-49ed-8142-474d868ccc80" + "WESTUS2:20210213T022056Z:1093e181-29cc-469a-93a2-c88cdb3c38ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:03 GMT" + "Sat, 13 Feb 2021 02:20:56 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"390117eb-0000-0500-0000-5ee11ff50000\\\"\",\r\n \"_ts\": 1591812085\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"8700dd53-0000-0500-0000-602736e90000\\\"\",\r\n \"_ts\": 1613182697\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f4a3cc34-f2b4-4332-b496-2d451f0b4285" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1557,50 +1512,47 @@ "11961" ], "x-ms-request-id": [ - "ccd2bbcf-462a-486e-b48a-21b50d577538" + "b7074f21-225c-4f17-872a-98ebdab63ca2" ], "x-ms-correlation-request-id": [ - "ccd2bbcf-462a-486e-b48a-21b50d577538" + "b7074f21-225c-4f17-872a-98ebdab63ca2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180435Z:ccd2bbcf-462a-486e-b48a-21b50d577538" + "WESTUS2:20210213T022128Z:b7074f21-225c-4f17-872a-98ebdab63ca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:35 GMT" + "Sat, 13 Feb 2021 02:21:27 GMT" ], "Content-Length": [ "611" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"3a011914-0000-0500-0000-5ee1209a0000\\\"\",\r\n \"_ts\": 1591812250\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"87002854-0000-0500-0000-6027378c0000\\\"\",\r\n \"_ts\": 1613182860\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "ef30dd4c-168e-465d-9c03-92bc9363d6dc" + "b38f6233-1426-4505-b31a-791769e3e935" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1617,13 +1569,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/265e4d52-a0ff-4064-9974-bc737f608ac2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/3419d4a3-6a84-4c7e-b288-d6c70f296e90?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/265e4d52-a0ff-4064-9974-bc737f608ac2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/3419d4a3-6a84-4c7e-b288-d6c70f296e90?api-version=2021-01-15" ], "x-ms-request-id": [ - "265e4d52-a0ff-4064-9974-bc737f608ac2" + "3419d4a3-6a84-4c7e-b288-d6c70f296e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,47 +1590,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "c7316125-e36a-46b6-8da4-d1fa93bf69cd" + "89556932-170e-4e1e-afdb-1abab285cb0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180122Z:c7316125-e36a-46b6-8da4-d1fa93bf69cd" + "WESTUS2:20210213T021813Z:89556932-170e-4e1e-afdb-1abab285cb0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:22 GMT" + "Sat, 13 Feb 2021 02:18:12 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "f32666a3-9502-40f3-b295-4bc517e205d7" + "f4a3cc34-f2b4-4332-b496-2d451f0b4285" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1695,13 +1644,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/902fad47-7907-4121-80ee-0bce716fc1e2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/dea15093-4a7e-4786-9a9c-418d80f2c619?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/902fad47-7907-4121-80ee-0bce716fc1e2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dea15093-4a7e-4786-9a9c-418d80f2c619?api-version=2021-01-15" ], "x-ms-request-id": [ - "902fad47-7907-4121-80ee-0bce716fc1e2" + "dea15093-4a7e-4786-9a9c-418d80f2c619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,41 +1665,41 @@ "1192" ], "x-ms-correlation-request-id": [ - "f3be1e60-21bf-4007-9120-9eadb5ba63bb" + "35fa8ac5-6298-4fff-931d-02c929c8a3a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180404Z:f3be1e60-21bf-4007-9120-9eadb5ba63bb" + "WESTUS2:20210213T022057Z:35fa8ac5-6298-4fff-931d-02c929c8a3a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:04 GMT" + "Sat, 13 Feb 2021 02:20:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/265e4d52-a0ff-4064-9974-bc737f608ac2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yNjVlNGQ1Mi1hMGZmLTQwNjQtOTk3NC1iYzczN2Y2MDhhYzI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/3419d4a3-6a84-4c7e-b288-d6c70f296e90?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zNDE5ZDRhMy02YTg0LTRjN2UtYjI4OC1kNmM3MGYyOTZlOTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b38f6233-1426-4505-b31a-791769e3e935" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1773,50 +1722,47 @@ "11990" ], "x-ms-request-id": [ - "e2a39669-9c62-4b24-b593-8b7244ee33cc" + "2a01c751-51d2-483d-b5d6-eb6b301a0c3d" ], "x-ms-correlation-request-id": [ - "e2a39669-9c62-4b24-b593-8b7244ee33cc" + "2a01c751-51d2-483d-b5d6-eb6b301a0c3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180152Z:e2a39669-9c62-4b24-b593-8b7244ee33cc" + "WESTUS2:20210213T021843Z:2a01c751-51d2-483d-b5d6-eb6b301a0c3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:52 GMT" + "Sat, 13 Feb 2021 02:18:43 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/265e4d52-a0ff-4064-9974-bc737f608ac2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3799e256-bad8-41e8-8408-20b78d1203c0" + "21f42ab4-47be-4628-a7d6-7a7a493cb28d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1839,44 +1785,44 @@ "11987" ], "x-ms-request-id": [ - "1c874170-e1ce-4a20-8d76-62004dfe4176" + "abd40e70-20b5-4132-b682-273f2e682b3b" ], "x-ms-correlation-request-id": [ - "1c874170-e1ce-4a20-8d76-62004dfe4176" + "abd40e70-20b5-4132-b682-273f2e682b3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180153Z:1c874170-e1ce-4a20-8d76-62004dfe4176" + "WESTUS2:20210213T021845Z:abd40e70-20b5-4132-b682-273f2e682b3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:53 GMT" + "Sat, 13 Feb 2021 02:18:44 GMT" ], "Content-Length": [ - "1245" + "1321" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 3799e256-bad8-41e8-8408-20b78d1203c0, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:01:53.8600079Z, RequestEndTime: 2020-06-10T18:01:53.8800211Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:01:53.8800211Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14375/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 21f42ab4-47be-4628-a7d6-7a7a493cb28d, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403576s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:18:44.9879776Z, RequestEndTime: 2021-02-13T02:18:45.0279649Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:18:45.0279649Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14062/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403576s/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "21f42ab4-47be-4628-a7d6-7a7a493cb28d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1899,50 +1845,47 @@ "11985" ], "x-ms-request-id": [ - "60430702-b61d-4369-998a-333948b3d650" + "b4a9ba8a-f54e-43b1-b8ed-e60837b15c97" ], "x-ms-correlation-request-id": [ - "60430702-b61d-4369-998a-333948b3d650" + "b4a9ba8a-f54e-43b1-b8ed-e60837b15c97" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180225Z:60430702-b61d-4369-998a-333948b3d650" + "WESTUS2:20210213T021916Z:b4a9ba8a-f54e-43b1-b8ed-e60837b15c97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:24 GMT" + "Sat, 13 Feb 2021 02:19:16 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3901a6f3-0000-0500-0000-5ee120160000\\\"\",\r\n \"_ts\": 1591812118\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87000354-0000-0500-0000-602737090000\\\"\",\r\n \"_ts\": 1613182729\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550102f3-e02d-40a5-994b-31bffc4d010f" + "15624b7d-d5ed-4e18-a782-0c8e153fc3ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1965,50 +1908,47 @@ "11984" ], "x-ms-request-id": [ - "30761ed1-e0be-448a-aeee-efe2d0834d2a" + "e6355185-6f13-4f2c-8257-a0b1bbc0ac47" ], "x-ms-correlation-request-id": [ - "30761ed1-e0be-448a-aeee-efe2d0834d2a" + "e6355185-6f13-4f2c-8257-a0b1bbc0ac47" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180225Z:30761ed1-e0be-448a-aeee-efe2d0834d2a" + "WESTUS2:20210213T021917Z:e6355185-6f13-4f2c-8257-a0b1bbc0ac47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:24 GMT" + "Sat, 13 Feb 2021 02:19:16 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3901a6f3-0000-0500-0000-5ee120160000\\\"\",\r\n \"_ts\": 1591812118\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87000354-0000-0500-0000-602737090000\\\"\",\r\n \"_ts\": 1613182729\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aeb3c93-2459-46fa-b6fe-db67bf43b246" + "892770b1-1ec7-4cc9-bb3c-6d9e02d85dd1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2031,50 +1971,47 @@ "11971" ], "x-ms-request-id": [ - "7ca4fd84-a26d-447b-b4d2-3e71f31a2dc2" + "53da0f19-4413-4f67-b1ed-bf39c782d36f" ], "x-ms-correlation-request-id": [ - "7ca4fd84-a26d-447b-b4d2-3e71f31a2dc2" + "53da0f19-4413-4f67-b1ed-bf39c782d36f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180300Z:7ca4fd84-a26d-447b-b4d2-3e71f31a2dc2" + "WESTUS2:20210213T021951Z:53da0f19-4413-4f67-b1ed-bf39c782d36f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:59 GMT" + "Sat, 13 Feb 2021 02:19:51 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3901a6f3-0000-0500-0000-5ee120160000\\\"\",\r\n \"_ts\": 1591812118\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87000354-0000-0500-0000-602737090000\\\"\",\r\n \"_ts\": 1613182729\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e95fa0f-bc8e-4abc-88ea-ae791fa2e29d" + "263932d8-1f2a-4ec2-8cb1-341b645e2aa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2097,44 +2034,44 @@ "11957" ], "x-ms-request-id": [ - "2bc9dfc6-d247-46b0-aa0e-3afcb3c8e3c4" + "d679efbb-8daa-439f-828e-865f48f91abb" ], "x-ms-correlation-request-id": [ - "2bc9dfc6-d247-46b0-aa0e-3afcb3c8e3c4" + "d679efbb-8daa-439f-828e-865f48f91abb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180507Z:2bc9dfc6-d247-46b0-aa0e-3afcb3c8e3c4" + "WESTUS2:20210213T022200Z:d679efbb-8daa-439f-828e-865f48f91abb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:07 GMT" + "Sat, 13 Feb 2021 02:22:00 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3901a6f3-0000-0500-0000-5ee120160000\\\"\",\r\n \"_ts\": 1591812118\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87000354-0000-0500-0000-602737090000\\\"\",\r\n \"_ts\": 1613182729\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "263932d8-1f2a-4ec2-8cb1-341b645e2aa5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2157,50 +2094,47 @@ "11955" ], "x-ms-request-id": [ - "524c0d5d-9d2a-4d75-a2d5-d7794f5fefda" + "07f5bbf3-babb-41d8-82ce-8407cd1ef3e0" ], "x-ms-correlation-request-id": [ - "524c0d5d-9d2a-4d75-a2d5-d7794f5fefda" + "07f5bbf3-babb-41d8-82ce-8407cd1ef3e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180538Z:524c0d5d-9d2a-4d75-a2d5-d7794f5fefda" + "WESTUS2:20210213T022232Z:07f5bbf3-babb-41d8-82ce-8407cd1ef3e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:38 GMT" + "Sat, 13 Feb 2021 02:22:31 GMT" ], "Content-Length": [ "581" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3a019f22-0000-0500-0000-5ee120d80000\\\"\",\r\n \"_ts\": 1591812312\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87004054-0000-0500-0000-602737cc0000\\\"\",\r\n \"_ts\": 1613182924\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "484f4af5-dfb8-4d1c-98f7-caeb90268a01" + "21f42ab4-47be-4628-a7d6-7a7a493cb28d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2217,13 +2151,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/7e082ac2-4b9b-4c1a-89eb-9421eec469fb?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/7ceadf37-46b8-4a96-977a-a0b0fd661142?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/7e082ac2-4b9b-4c1a-89eb-9421eec469fb?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/7ceadf37-46b8-4a96-977a-a0b0fd661142?api-version=2021-01-15" ], "x-ms-request-id": [ - "7e082ac2-4b9b-4c1a-89eb-9421eec469fb" + "7ceadf37-46b8-4a96-977a-a0b0fd661142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2238,47 +2172,44 @@ "1196" ], "x-ms-correlation-request-id": [ - "02a70ebb-f313-4da6-9d8d-610aa7e69b20" + "1296677b-8354-4f8e-a569-c03cd774871b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180154Z:02a70ebb-f313-4da6-9d8d-610aa7e69b20" + "WESTUS2:20210213T021845Z:1296677b-8354-4f8e-a569-c03cd774871b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:01:53 GMT" + "Sat, 13 Feb 2021 02:18:45 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "a9c2441e-a655-4153-88c8-c4394f1d6d67" + "263932d8-1f2a-4ec2-8cb1-341b645e2aa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2295,13 +2226,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/0c881de9-0fe4-47f7-b131-9ca07f4eca45?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/0f78dacb-7e73-44ac-a12f-771d83da8860?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0c881de9-0fe4-47f7-b131-9ca07f4eca45?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0f78dacb-7e73-44ac-a12f-771d83da8860?api-version=2021-01-15" ], "x-ms-request-id": [ - "0c881de9-0fe4-47f7-b131-9ca07f4eca45" + "0f78dacb-7e73-44ac-a12f-771d83da8860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2316,41 +2247,41 @@ "1190" ], "x-ms-correlation-request-id": [ - "9aed4a2a-333d-409f-b951-e01bc92f8af7" + "dc612fb7-5576-44ce-8256-c056ea63a6ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180507Z:9aed4a2a-333d-409f-b951-e01bc92f8af7" + "WESTUS2:20210213T022200Z:dc612fb7-5576-44ce-8256-c056ea63a6ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:07 GMT" + "Sat, 13 Feb 2021 02:22:00 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/7e082ac2-4b9b-4c1a-89eb-9421eec469fb?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83ZTA4MmFjMi00YjliLTRjMWEtODllYi05NDIxZWVjNDY5ZmI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/7ceadf37-46b8-4a96-977a-a0b0fd661142?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83Y2VhZGYzNy00NmI4LTRhOTYtOTc3YS1hMGIwZmQ2NjExNDI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "21f42ab4-47be-4628-a7d6-7a7a493cb28d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2373,50 +2304,47 @@ "11986" ], "x-ms-request-id": [ - "5fbd7b9c-55cf-44ff-b2d1-0a3ace6259b9" + "10862f16-3af6-47fa-a968-5891e84a6814" ], "x-ms-correlation-request-id": [ - "5fbd7b9c-55cf-44ff-b2d1-0a3ace6259b9" + "10862f16-3af6-47fa-a968-5891e84a6814" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180224Z:5fbd7b9c-55cf-44ff-b2d1-0a3ace6259b9" + "WESTUS2:20210213T021916Z:10862f16-3af6-47fa-a968-5891e84a6814" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:24 GMT" + "Sat, 13 Feb 2021 02:19:15 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/7e082ac2-4b9b-4c1a-89eb-9421eec469fb?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4da202df-43d9-4d72-8256-7fee9e5c0700" + "030fec18-4a56-4169-b9cc-21c88c63c892" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2439,44 +2367,44 @@ "11983" ], "x-ms-request-id": [ - "d4388a7e-7c17-43e4-947f-f453a6230eb6" + "822bdaff-c46e-44fd-b72e-adab52415f8f" ], "x-ms-correlation-request-id": [ - "d4388a7e-7c17-43e4-947f-f453a6230eb6" + "822bdaff-c46e-44fd-b72e-adab52415f8f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180226Z:d4388a7e-7c17-43e4-947f-f453a6230eb6" + "WESTUS2:20210213T021917Z:822bdaff-c46e-44fd-b72e-adab52415f8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:25 GMT" + "Sat, 13 Feb 2021 02:19:16 GMT" ], "Content-Length": [ - "1241" + "1317" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 4da202df-43d9-4d72-8256-7fee9e5c0700, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:25.9548085Z, RequestEndTime: 2020-06-10T18:02:25.9648143Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:25.9648143Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14375/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, LSN: 3, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 030fec18-4a56-4169-b9cc-21c88c63c892, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403575s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:17.3534713Z, RequestEndTime: 2021-02-13T02:19:17.3534713Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:17.3534713Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14026/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403575s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "030fec18-4a56-4169-b9cc-21c88c63c892" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2499,50 +2427,47 @@ "11981" ], "x-ms-request-id": [ - "57bd279f-4826-4a1b-929b-9c2f0acb6549" + "38f137e9-44ca-40b0-a2a6-deb7e01c062d" ], "x-ms-correlation-request-id": [ - "57bd279f-4826-4a1b-929b-9c2f0acb6549" + "38f137e9-44ca-40b0-a2a6-deb7e01c062d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180257Z:57bd279f-4826-4a1b-929b-9c2f0acb6549" + "WESTUS2:20210213T021949Z:38f137e9-44ca-40b0-a2a6-deb7e01c062d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:57 GMT" + "Sat, 13 Feb 2021 02:19:48 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"390170fc-0000-0500-0000-5ee120360000\\\"\",\r\n \"_ts\": 1591812150\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87000554-0000-0500-0000-602737290000\\\"\",\r\n \"_ts\": 1613182761\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab7e3569-5284-4398-9234-82cc6844d7aa" + "a225042e-801a-4142-93a0-bb66d249696f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2565,50 +2490,47 @@ "11980" ], "x-ms-request-id": [ - "73813eba-813c-4c50-b887-26a7a8b28cec" + "909cbac6-1e7b-4602-ae90-f4780f337ab6" ], "x-ms-correlation-request-id": [ - "73813eba-813c-4c50-b887-26a7a8b28cec" + "909cbac6-1e7b-4602-ae90-f4780f337ab6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180257Z:73813eba-813c-4c50-b887-26a7a8b28cec" + "WESTUS2:20210213T021949Z:909cbac6-1e7b-4602-ae90-f4780f337ab6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:57 GMT" + "Sat, 13 Feb 2021 02:19:49 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"390170fc-0000-0500-0000-5ee120360000\\\"\",\r\n \"_ts\": 1591812150\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87000554-0000-0500-0000-602737290000\\\"\",\r\n \"_ts\": 1613182761\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa0c8adf-ff45-467e-8c16-2afa9019f57a" + "afff778d-7522-4826-a925-15e5747a30bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2631,50 +2553,47 @@ "11970" ], "x-ms-request-id": [ - "ac4aeca7-3741-4a45-975d-55346e5242da" + "24cb6edf-93c8-44ae-870b-1861d2abb081" ], "x-ms-correlation-request-id": [ - "ac4aeca7-3741-4a45-975d-55346e5242da" + "24cb6edf-93c8-44ae-870b-1861d2abb081" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180300Z:ac4aeca7-3741-4a45-975d-55346e5242da" + "WESTUS2:20210213T021952Z:24cb6edf-93c8-44ae-870b-1861d2abb081" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:00 GMT" + "Sat, 13 Feb 2021 02:19:51 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"390170fc-0000-0500-0000-5ee120360000\\\"\",\r\n \"_ts\": 1591812150\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87000554-0000-0500-0000-602737290000\\\"\",\r\n \"_ts\": 1613182761\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fa981af-9fe4-45fc-bffe-e7ddcb45fa6e" + "a567697f-2f00-48ea-a183-5d46c33cbf41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2697,44 +2616,44 @@ "11960" ], "x-ms-request-id": [ - "b7974acf-42ba-4bc3-93a3-cb4dad931dfa" + "3294a01c-02a3-4e3c-8efa-f47ce1a25eff" ], "x-ms-correlation-request-id": [ - "b7974acf-42ba-4bc3-93a3-cb4dad931dfa" + "3294a01c-02a3-4e3c-8efa-f47ce1a25eff" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180435Z:b7974acf-42ba-4bc3-93a3-cb4dad931dfa" + "WESTUS2:20210213T022128Z:3294a01c-02a3-4e3c-8efa-f47ce1a25eff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:35 GMT" + "Sat, 13 Feb 2021 02:21:27 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"390170fc-0000-0500-0000-5ee120360000\\\"\",\r\n \"_ts\": 1591812150\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87000554-0000-0500-0000-602737290000\\\"\",\r\n \"_ts\": 1613182761\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a567697f-2f00-48ea-a183-5d46c33cbf41" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2757,50 +2676,47 @@ "11958" ], "x-ms-request-id": [ - "28537985-5ff7-4878-aa1c-b0f28037a7b2" + "5618c6c2-3c37-4e5f-afed-88f2c7ef92bb" ], "x-ms-correlation-request-id": [ - "28537985-5ff7-4878-aa1c-b0f28037a7b2" + "5618c6c2-3c37-4e5f-afed-88f2c7ef92bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180507Z:28537985-5ff7-4878-aa1c-b0f28037a7b2" + "WESTUS2:20210213T022200Z:5618c6c2-3c37-4e5f-afed-88f2c7ef92bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:06 GMT" + "Sat, 13 Feb 2021 02:21:59 GMT" ], "Content-Length": [ "618" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"3a01301b-0000-0500-0000-5ee120b80000\\\"\",\r\n \"_ts\": 1591812280\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87003954-0000-0500-0000-602737ad0000\\\"\",\r\n \"_ts\": 1613182893\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "9d36e5c9-bc2d-4b03-803e-650db8c6e538" + "030fec18-4a56-4169-b9cc-21c88c63c892" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2817,13 +2733,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/e72a0796-e3e5-487d-92c1-053369f6b368?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/397a9939-68bb-4633-93c7-9e138b20a3ce?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e72a0796-e3e5-487d-92c1-053369f6b368?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/397a9939-68bb-4633-93c7-9e138b20a3ce?api-version=2021-01-15" ], "x-ms-request-id": [ - "e72a0796-e3e5-487d-92c1-053369f6b368" + "397a9939-68bb-4633-93c7-9e138b20a3ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,47 +2754,44 @@ "1195" ], "x-ms-correlation-request-id": [ - "32a5281c-ef41-41ae-b0b9-603707a02c5d" + "ddbbb00f-55ac-45d0-a678-200e59e2c82c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180226Z:32a5281c-ef41-41ae-b0b9-603707a02c5d" + "WESTUS2:20210213T021917Z:ddbbb00f-55ac-45d0-a678-200e59e2c82c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:25 GMT" + "Sat, 13 Feb 2021 02:19:17 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "739efb43-3a22-4cb0-bbe2-986a5898d137" + "a567697f-2f00-48ea-a183-5d46c33cbf41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2895,13 +2808,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/bc92922e-5a89-4471-ac6b-f989f2f3aa16?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/95f0f03f-cc5a-474f-91ba-842587bb3eb1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/bc92922e-5a89-4471-ac6b-f989f2f3aa16?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/95f0f03f-cc5a-474f-91ba-842587bb3eb1?api-version=2021-01-15" ], "x-ms-request-id": [ - "bc92922e-5a89-4471-ac6b-f989f2f3aa16" + "95f0f03f-cc5a-474f-91ba-842587bb3eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2916,41 +2829,41 @@ "1191" ], "x-ms-correlation-request-id": [ - "c9461846-b7c9-485c-be85-23e659088110" + "11870075-6861-42f8-821f-3cbcb1f1ab4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180436Z:c9461846-b7c9-485c-be85-23e659088110" + "WESTUS2:20210213T022128Z:11870075-6861-42f8-821f-3cbcb1f1ab4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:36 GMT" + "Sat, 13 Feb 2021 02:21:28 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e72a0796-e3e5-487d-92c1-053369f6b368?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9lNzJhMDc5Ni1lM2U1LTQ4N2QtOTJjMS0wNTMzNjlmNmIzNjg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/397a9939-68bb-4633-93c7-9e138b20a3ce?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zOTdhOTkzOS02OGJiLTQ2MzMtOTNjNy05ZTEzOGIyMGEzY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "030fec18-4a56-4169-b9cc-21c88c63c892" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2973,50 +2886,47 @@ "11982" ], "x-ms-request-id": [ - "da39eecd-d69a-489e-afc9-b1d43d5a2990" + "5697fc81-2848-4f35-8e49-c1f516589d35" ], "x-ms-correlation-request-id": [ - "da39eecd-d69a-489e-afc9-b1d43d5a2990" + "5697fc81-2848-4f35-8e49-c1f516589d35" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180257Z:da39eecd-d69a-489e-afc9-b1d43d5a2990" + "WESTUS2:20210213T021948Z:5697fc81-2848-4f35-8e49-c1f516589d35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:57 GMT" + "Sat, 13 Feb 2021 02:19:48 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e72a0796-e3e5-487d-92c1-053369f6b368?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d1651c6-e71d-4094-80d1-750f26060b5b" + "e1c262b2-ca83-4e11-9aeb-59e5910f09c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3039,50 +2949,47 @@ "11979" ], "x-ms-request-id": [ - "f176035c-a4fd-4144-8f23-cecb76924501" + "80100f67-aed8-495a-9dcf-446877a654e9" ], "x-ms-correlation-request-id": [ - "f176035c-a4fd-4144-8f23-cecb76924501" + "80100f67-aed8-495a-9dcf-446877a654e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180258Z:f176035c-a4fd-4144-8f23-cecb76924501" + "WESTUS2:20210213T021949Z:80100f67-aed8-495a-9dcf-446877a654e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:57 GMT" + "Sat, 13 Feb 2021 02:19:49 GMT" ], "Content-Length": [ - "1710" + "1785" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 4d1651c6-e71d-4094-80d1-750f26060b5b, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:58.0468005Z, RequestEndTime: 2020-06-10T18:02:58.0468005Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.0468005Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, LSN: 417, GlobalCommittedLsn: 417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#417, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.0468005Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 417, GlobalCommittedLsn: 417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#417, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: e1c262b2-ca83-4e11-9aeb-59e5910f09c4, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:49.7564052Z, RequestEndTime: 2021-02-13T02:19:49.7564052Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:49.7564052Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10273, GlobalCommittedLsn: 10273, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10273, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:19:49.7564052Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10273, GlobalCommittedLsn: 10273, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10273, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad7ff94d-36f3-4b8b-a365-f31ac17d19dc" + "9644f81d-79f0-4fa8-b6ae-4efd115d85c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3105,50 +3012,47 @@ "11978" ], "x-ms-request-id": [ - "0053861d-47ae-435e-8f9a-381bdcd19942" + "e0985746-9274-42c6-ba5f-133f1cbae3b6" ], "x-ms-correlation-request-id": [ - "0053861d-47ae-435e-8f9a-381bdcd19942" + "e0985746-9274-42c6-ba5f-133f1cbae3b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180258Z:0053861d-47ae-435e-8f9a-381bdcd19942" + "WESTUS2:20210213T021950Z:e0985746-9274-42c6-ba5f-133f1cbae3b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:58 GMT" + "Sat, 13 Feb 2021 02:19:49 GMT" ], "Content-Length": [ - "1730" + "1805" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: ad7ff94d-36f3-4b8b-a365-f31ac17d19dc, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:58.2868009Z, RequestEndTime: 2020-06-10T18:02:58.2968630Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.2968630Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, LSN: 417, GlobalCommittedLsn: 417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#417, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.2968630Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, LSN: 417, GlobalCommittedLsn: 417, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#417, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 9644f81d-79f0-4fa8-b6ae-4efd115d85c9, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:49.9963888Z, RequestEndTime: 2021-02-13T02:19:49.9963888Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:49.9963888Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10273, GlobalCommittedLsn: 10273, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10273, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:19:49.9963888Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10273, GlobalCommittedLsn: 10273, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10273, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlMj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "003a843b-ab95-4fd6-8088-14a0a0cc0ad0" + "3265c71c-2cf9-417a-a7fd-2741725fc3c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3171,50 +3075,47 @@ "11977" ], "x-ms-request-id": [ - "a1722b9f-ddf8-4c5d-9f76-7544b58df944" + "db0aa3f4-b673-45a9-98b1-ddc67bd984f2" ], "x-ms-correlation-request-id": [ - "a1722b9f-ddf8-4c5d-9f76-7544b58df944" + "db0aa3f4-b673-45a9-98b1-ddc67bd984f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180258Z:a1722b9f-ddf8-4c5d-9f76-7544b58df944" + "WESTUS2:20210213T021950Z:db0aa3f4-b673-45a9-98b1-ddc67bd984f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:58 GMT" + "Sat, 13 Feb 2021 02:19:49 GMT" ], "Content-Length": [ - "1256" + "1332" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 003a843b-ab95-4fd6-8088-14a0a0cc0ad0, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:58.5168568Z, RequestEndTime: 2020-06-10T18:02:58.5268151Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.5268151Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14375/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 3265c71c-2cf9-417a-a7fd-2741725fc3c1, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403576s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:50.2464451Z, RequestEndTime: 2021-02-13T02:19:50.2464451Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:50.2464451Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14062/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403576s/, LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbbb58d8-d3d9-4bfc-9842-3a2b33f43193" + "4cf94de4-54c1-4273-9e88-51eb754e80a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3237,50 +3138,47 @@ "11976" ], "x-ms-request-id": [ - "c44fcf64-daa7-41a8-9f50-36bcc84fe792" + "1bb892ba-f624-4d8e-8758-b317580b4593" ], "x-ms-correlation-request-id": [ - "c44fcf64-daa7-41a8-9f50-36bcc84fe792" + "1bb892ba-f624-4d8e-8758-b317580b4593" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180258Z:c44fcf64-daa7-41a8-9f50-36bcc84fe792" + "WESTUS2:20210213T021950Z:1bb892ba-f624-4d8e-8758-b317580b4593" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:58 GMT" + "Sat, 13 Feb 2021 02:19:50 GMT" ], "Content-Length": [ - "1242" + "1318" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: bbbb58d8-d3d9-4bfc-9842-3a2b33f43193, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132362076522085793s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:58.7668511Z, RequestEndTime: 2020-06-10T18:02:58.7768468Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:58.7768468Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14082/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132362076522085793s/, LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 4cf94de4-54c1-4273-9e88-51eb754e80a7, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403574s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:50.4964147Z, RequestEndTime: 2021-02-13T02:19:50.4964147Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:50.4964147Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14344/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403574s/, LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6f7ff09-d1c6-4838-89f8-3e5c47256375" + "9a6966a1-718e-4754-8a8a-06fdc6d89ca3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3303,44 +3201,44 @@ "11975" ], "x-ms-request-id": [ - "cd4a69fd-c73d-4a6d-b814-40c89d2f37f4" + "8e86d5c9-6ef3-48d3-a5f7-0e8938b9eb90" ], "x-ms-correlation-request-id": [ - "cd4a69fd-c73d-4a6d-b814-40c89d2f37f4" + "8e86d5c9-6ef3-48d3-a5f7-0e8938b9eb90" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180259Z:cd4a69fd-c73d-4a6d-b814-40c89d2f37f4" + "WESTUS2:20210213T021950Z:8e86d5c9-6ef3-48d3-a5f7-0e8938b9eb90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:02:58 GMT" + "Sat, 13 Feb 2021 02:19:50 GMT" ], "Content-Length": [ - "1246" + "1322" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: a6f7ff09-d1c6-4838-89f8-3e5c47256375, Request URI: /apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T18:02:59.0268627Z, RequestEndTime: 2020-06-10T18:02:59.0268627Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T18:02:59.0268627Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdddc07-docdb-2.documents.azure.com:14375/apps/798e63f0-a412-4943-852f-b874ece81b72/services/104cbc7e-2d28-40fc-a2f1-0d0283cac423/partitions/d5badfc8-f72e-426d-9257-35de6037ca05/replicas/132361623267633957s/, LSN: 4, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 9a6966a1-718e-4754-8a8a-06fdc6d89ca3, Request URI: /apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403574s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:19:50.7364191Z, RequestEndTime: 2021-02-13T02:19:50.7464861Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:19:50.7464861Z, StoreResult: StorePhysicalAddress: rntbd://cdb-ms-prod-southcentralus1-fd32.documents.azure.com:14344/apps/a4912425-9a21-41ed-98ee-083a1d571387/services/ef69e3fb-0c12-4140-a60c-038b4bd4d0df/partitions/6bed19e3-d243-4311-b29c-b486aac83e60/replicas/132576486209403574s/, LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5f7e3827-2efe-4a1d-8e3d-55e8253f3350?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81ZjdlMzgyNy0yZWZlLTRhMWQtOGUzZC01NWU4MjUzZjMzNTA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1df8caa0-c3cb-415f-b88c-850a1c4e830f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xZGY4Y2FhMC1jM2NiLTQxNWYtYjg4Yy04NTBhMWM0ZTgzMGY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "58ea57bc-048a-4e1a-be9f-f71f2bd777ed" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3363,44 +3261,44 @@ "11968" ], "x-ms-request-id": [ - "febea060-1f13-4094-b5df-60e45187cfe2" + "dad59ce9-190f-4483-9022-3f94377b76f1" ], "x-ms-correlation-request-id": [ - "febea060-1f13-4094-b5df-60e45187cfe2" + "dad59ce9-190f-4483-9022-3f94377b76f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180331Z:febea060-1f13-4094-b5df-60e45187cfe2" + "WESTUS2:20210213T022023Z:dad59ce9-190f-4483-9022-3f94377b76f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:03:31 GMT" + "Sat, 13 Feb 2021 02:20:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5f7e3827-2efe-4a1d-8e3d-55e8253f3350?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa6a3a4c-1d1d-4a19-9af7-3e2ed1266e32?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mYTZhM2E0Yy0xZDFkLTRhMTktOWFmNy0zZTJlZDEyNjZlMzI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0d28c251-4a61-43e1-a7d5-06952383522d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wZDI4YzI1MS00YTYxLTQzZTEtYTdkNS0wNjk1MjM4MzUyMmQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "734bb155-5d8a-4fe3-87f6-7ee5245bde9c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3423,44 +3321,44 @@ "11965" ], "x-ms-request-id": [ - "ed3ce411-11da-4caf-a37b-d5d83a59910a" + "c4412ca7-0455-4270-b26b-a789c63b8d1a" ], "x-ms-correlation-request-id": [ - "ed3ce411-11da-4caf-a37b-d5d83a59910a" + "c4412ca7-0455-4270-b26b-a789c63b8d1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180403Z:ed3ce411-11da-4caf-a37b-d5d83a59910a" + "WESTUS2:20210213T022055Z:c4412ca7-0455-4270-b26b-a789c63b8d1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:03 GMT" + "Sat, 13 Feb 2021 02:20:54 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa6a3a4c-1d1d-4a19-9af7-3e2ed1266e32?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/902fad47-7907-4121-80ee-0bce716fc1e2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85MDJmYWQ0Ny03OTA3LTQxMjEtODBlZS0wYmNlNzE2ZmMxZTI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dea15093-4a7e-4786-9a9c-418d80f2c619?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kZWExNTA5My00YTdlLTQ3ODYtOWE5Yy00MThkODBmMmM2MTk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f4a3cc34-f2b4-4332-b496-2d451f0b4285" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3483,44 +3381,44 @@ "11962" ], "x-ms-request-id": [ - "c445d0aa-945e-4562-9355-612f435f4c25" + "aea0e6de-b09c-47d2-bd68-2ec7241eaf95" ], "x-ms-correlation-request-id": [ - "c445d0aa-945e-4562-9355-612f435f4c25" + "aea0e6de-b09c-47d2-bd68-2ec7241eaf95" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180435Z:c445d0aa-945e-4562-9355-612f435f4c25" + "WESTUS2:20210213T022127Z:aea0e6de-b09c-47d2-bd68-2ec7241eaf95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:04:35 GMT" + "Sat, 13 Feb 2021 02:21:26 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/902fad47-7907-4121-80ee-0bce716fc1e2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/bc92922e-5a89-4471-ac6b-f989f2f3aa16?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iYzkyOTIyZS01YTg5LTQ0NzEtYWM2Yi1mOTg5ZjJmM2FhMTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/95f0f03f-cc5a-474f-91ba-842587bb3eb1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85NWYwZjAzZi1jYzVhLTQ3NGYtOTFiYS04NDI1ODdiYjNlYjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a567697f-2f00-48ea-a183-5d46c33cbf41" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3543,44 +3441,44 @@ "11959" ], "x-ms-request-id": [ - "d7bddaeb-bc9a-44fb-b4ef-211093e6b7c0" + "5b0b3d19-e9b8-42f3-a16f-35f3904ffeaa" ], "x-ms-correlation-request-id": [ - "d7bddaeb-bc9a-44fb-b4ef-211093e6b7c0" + "5b0b3d19-e9b8-42f3-a16f-35f3904ffeaa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180506Z:d7bddaeb-bc9a-44fb-b4ef-211093e6b7c0" + "WESTUS2:20210213T022159Z:5b0b3d19-e9b8-42f3-a16f-35f3904ffeaa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:06 GMT" + "Sat, 13 Feb 2021 02:21:59 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/bc92922e-5a89-4471-ac6b-f989f2f3aa16?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0c881de9-0fe4-47f7-b131-9ca07f4eca45?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wYzg4MWRlOS0wZmU0LTQ3ZjctYjEzMS05Y2EwN2Y0ZWNhNDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0f78dacb-7e73-44ac-a12f-771d83da8860?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wZjc4ZGFjYi03ZTczLTQ0YWMtYTEyZi03NzFkODNkYTg4NjA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "263932d8-1f2a-4ec2-8cb1-341b645e2aa5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3603,50 +3501,47 @@ "11956" ], "x-ms-request-id": [ - "9bde52c1-ed51-4297-8370-c7a7e6cbb42c" + "e108d3dc-3997-46c0-84af-00dd79684641" ], "x-ms-correlation-request-id": [ - "9bde52c1-ed51-4297-8370-c7a7e6cbb42c" + "e108d3dc-3997-46c0-84af-00dd79684641" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180538Z:9bde52c1-ed51-4297-8370-c7a7e6cbb42c" + "WESTUS2:20210213T022231Z:e108d3dc-3997-46c0-84af-00dd79684641" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:37 GMT" + "Sat, 13 Feb 2021 02:22:30 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0c881de9-0fe4-47f7-b131-9ca07f4eca45?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a454186-95f3-4567-a7a1-a4600e231e22" + "5e42ee66-b838-4994-8a39-479c024de1df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3669,50 +3564,47 @@ "11954" ], "x-ms-request-id": [ - "ff3b234e-37e0-45ea-919a-b7b7126ec183" + "fd3b5fd8-5866-4a98-9939-d41c7d8f8331" ], "x-ms-correlation-request-id": [ - "ff3b234e-37e0-45ea-919a-b7b7126ec183" + "fd3b5fd8-5866-4a98-9939-d41c7d8f8331" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180539Z:ff3b234e-37e0-45ea-919a-b7b7126ec183" + "WESTUS2:20210213T022232Z:fd3b5fd8-5866-4a98-9939-d41c7d8f8331" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:38 GMT" + "Sat, 13 Feb 2021 02:22:31 GMT" ], "Content-Length": [ - "1389" + "1420" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7Y=\",\r\n \"_ts\": 1591812055,\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/\",\r\n \"_etag\": \"\\\"0000291e-0000-0500-0000-5ee11fd60000\\\"\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"9lVIAL1Ya1Y=\",\r\n \"_ts\": 1613182665,\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/\",\r\n \"_etag\": \"\\\"00006628-0000-0500-0000-602736c90000\\\"\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09973243-e83f-4997-a7bd-a53134258bbd" + "c3c918b7-99a0-4a6a-af18-fd03def8a41f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3735,50 +3627,47 @@ "11953" ], "x-ms-request-id": [ - "6daa91aa-4471-4e82-b668-e6a6135ddc60" + "b12e3f7d-48f2-46d6-a13a-d97b419c1220" ], "x-ms-correlation-request-id": [ - "6daa91aa-4471-4e82-b668-e6a6135ddc60" + "b12e3f7d-48f2-46d6-a13a-d97b419c1220" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180539Z:6daa91aa-4471-4e82-b668-e6a6135ddc60" + "WESTUS2:20210213T022232Z:b12e3f7d-48f2-46d6-a13a-d97b419c1220" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:39 GMT" + "Sat, 13 Feb 2021 02:22:31 GMT" ], "Content-Length": [ - "3545" + "3098" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"ux0lAA==\",\r\n \"_self\": \"dbs/ux0lAA==/\",\r\n \"_etag\": \"\\\"0000931e-0000-0500-0000-5ee054f40000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591760116\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName6\",\r\n \"_rid\": \"F7kzAA==\",\r\n \"_self\": \"dbs/F7kzAA==/\",\r\n \"_etag\": \"\\\"0000b425-0000-0500-0000-5eda91480000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382344\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db3\",\r\n \"_rid\": \"sOBHAA==\",\r\n \"_self\": \"dbs/sOBHAA==/\",\r\n \"_etag\": \"\\\"0000b703-0000-0500-0000-5eb210310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1588727857\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"jrVRAA==\",\r\n \"_self\": \"dbs/jrVRAA==/\",\r\n \"_etag\": \"\\\"0000df6c-0000-0500-0000-5e95fb340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1586887476\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName5\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName5\",\r\n \"_rid\": \"wC1ZAA==\",\r\n \"_self\": \"dbs/wC1ZAA==/\",\r\n \"_etag\": \"\\\"0000b025-0000-0500-0000-5eda90ab0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382187\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkAA==\",\r\n \"_self\": \"dbs/JwxkAA==/\",\r\n \"_etag\": \"\\\"0000271e-0000-0500-0000-5ee11fb60000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591812022\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db670\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db670\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db670\",\r\n \"_rid\": \"nctwAA==\",\r\n \"_self\": \"dbs/nctwAA==/\",\r\n \"_etag\": \"\\\"0000ff39-0000-0500-0000-5ee017c30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744451\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db67\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db67\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db67\",\r\n \"_rid\": \"yFt8AA==\",\r\n \"_self\": \"dbs/yFt8AA==/\",\r\n \"_etag\": \"\\\"0000fb39-0000-0500-0000-5ee017360000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744310\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName6\",\r\n \"_rid\": \"F7kzAA==\",\r\n \"_self\": \"dbs/F7kzAA==/\",\r\n \"_etag\": \"\\\"0000b425-0000-0500-0000-5eda91480000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382344\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db3\",\r\n \"_rid\": \"sOBHAA==\",\r\n \"_self\": \"dbs/sOBHAA==/\",\r\n \"_etag\": \"\\\"0000b703-0000-0500-0000-5eb210310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1588727857\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAA==\",\r\n \"_self\": \"dbs/9lVIAA==/\",\r\n \"_etag\": \"\\\"00006228-0000-0500-0000-602736a80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613182632\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"jrVRAA==\",\r\n \"_self\": \"dbs/jrVRAA==/\",\r\n \"_etag\": \"\\\"0000df6c-0000-0500-0000-5e95fb340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1586887476\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName5\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName5\",\r\n \"_rid\": \"wC1ZAA==\",\r\n \"_self\": \"dbs/wC1ZAA==/\",\r\n \"_etag\": \"\\\"0000b025-0000-0500-0000-5eda90ab0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382187\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db670\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db670\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db670\",\r\n \"_rid\": \"nctwAA==\",\r\n \"_self\": \"dbs/nctwAA==/\",\r\n \"_etag\": \"\\\"0000ff39-0000-0500-0000-5ee017c30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744451\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db67\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db67\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db67\",\r\n \"_rid\": \"yFt8AA==\",\r\n \"_self\": \"dbs/yFt8AA==/\",\r\n \"_etag\": \"\\\"0000fb39-0000-0500-0000-5ee017360000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744310\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "561e8004-7c06-4408-8f65-c79607ef7bda" + "fb68fdb3-5f7e-4762-ae98-d5b824470a76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3801,50 +3690,47 @@ "11952" ], "x-ms-request-id": [ - "a05df86e-ac6e-4c65-b2e6-88424fa6c789" + "9ac430f9-50d1-4151-94d2-88a22e78ec5c" ], "x-ms-correlation-request-id": [ - "a05df86e-ac6e-4c65-b2e6-88424fa6c789" + "9ac430f9-50d1-4151-94d2-88a22e78ec5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180540Z:a05df86e-ac6e-4c65-b2e6-88424fa6c789" + "WESTUS2:20210213T022232Z:9ac430f9-50d1-4151-94d2-88a22e78ec5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:39 GMT" + "Sat, 13 Feb 2021 02:22:32 GMT" ], "Content-Length": [ "623" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/sprocs/JwxkANz-S7YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"3a011914-0000-0500-0000-5ee1209a0000\\\"\",\r\n \"_ts\": 1591812250\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/sprocs/9lVIAL1Ya1YBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"87002854-0000-0500-0000-6027378c0000\\\"\",\r\n \"_ts\": 1613182860\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f49f933-e2b8-4103-8036-1fd0a4a44c2d" + "d34f9505-2125-444c-b578-c93f7cd407ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3867,50 +3753,47 @@ "11951" ], "x-ms-request-id": [ - "13b9a33f-7a6f-4a02-b2e0-d21f973c710d" + "f75ba199-6ee6-4fdf-b19d-537abd215cab" ], "x-ms-correlation-request-id": [ - "13b9a33f-7a6f-4a02-b2e0-d21f973c710d" + "f75ba199-6ee6-4fdf-b19d-537abd215cab" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180540Z:13b9a33f-7a6f-4a02-b2e0-d21f973c710d" + "WESTUS2:20210213T022233Z:f75ba199-6ee6-4fdf-b19d-537abd215cab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:39 GMT" + "Sat, 13 Feb 2021 02:22:32 GMT" ], "Content-Length": [ "593" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/udfs/JwxkANz-S7YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"3a019f22-0000-0500-0000-5ee120d80000\\\"\",\r\n \"_ts\": 1591812312\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/udfs/9lVIAL1Ya1YBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"87004054-0000-0500-0000-602737cc0000\\\"\",\r\n \"_ts\": 1613182924\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55e02c25-c73c-4014-870c-3c90b58da3ef" + "17c3e943-4a8f-4264-b0b5-4ee773771560" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3933,50 +3816,47 @@ "11950" ], "x-ms-request-id": [ - "bf970ee0-4f18-4a5e-a8c0-c0a388b2e4b5" + "729a63de-37d2-4a4e-a2e2-4e450f41891f" ], "x-ms-correlation-request-id": [ - "bf970ee0-4f18-4a5e-a8c0-c0a388b2e4b5" + "729a63de-37d2-4a4e-a2e2-4e450f41891f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180540Z:bf970ee0-4f18-4a5e-a8c0-c0a388b2e4b5" + "WESTUS2:20210213T022233Z:729a63de-37d2-4a4e-a2e2-4e450f41891f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:40 GMT" + "Sat, 13 Feb 2021 02:22:32 GMT" ], "Content-Length": [ "630" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"JwxkANz-S7YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/JwxkAA==/colls/JwxkANz-S7Y=/triggers/JwxkANz-S7YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"3a01301b-0000-0500-0000-5ee120b80000\\\"\",\r\n \"_ts\": 1591812280\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"9lVIAL1Ya1YBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/9lVIAA==/colls/9lVIAL1Ya1Y=/triggers/9lVIAL1Ya1YBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"87003954-0000-0500-0000-602737ad0000\\\"\",\r\n \"_ts\": 1613182893\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a633d08-709b-4f7f-8886-934ae28fdf8b" + "b8cb3c5d-d5cf-4c04-8b5e-5c62b2a7e41d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3987,13 +3867,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/efcc3d09-95cb-4f90-8f61-b035a2b1fad1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/efcc3d09-95cb-4f90-8f61-b035a2b1fad1?api-version=2021-01-15" ], "x-ms-request-id": [ - "9ffac43a-2115-4aa4-ae8f-ff288361cf35" + "efcc3d09-95cb-4f90-8f61-b035a2b1fad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4008,41 +3888,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "36b36f2a-9b43-4144-982d-79f1986e7b83" + "177e6a0e-acbf-47b8-bc81-94054c5f1556" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180541Z:36b36f2a-9b43-4144-982d-79f1986e7b83" + "WESTUS2:20210213T022233Z:177e6a0e-acbf-47b8-bc81-94054c5f1556" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:05:41 GMT" + "Sat, 13 Feb 2021 02:22:33 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85ZmZhYzQzYS0yMTE1LTRhYTQtYWU4Zi1mZjI4ODM2MWNmMzU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/efcc3d09-95cb-4f90-8f61-b035a2b1fad1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9lZmNjM2QwOS05NWNiLTRmOTAtOGY2MS1iMDM1YTJiMWZhZDE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b8cb3c5d-d5cf-4c04-8b5e-5c62b2a7e41d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4065,44 +3945,44 @@ "11949" ], "x-ms-request-id": [ - "f6b70dfd-bc69-4c35-8a98-95e2c3976f73" + "609fa58e-12c2-414e-8f5d-c54b03b46e54" ], "x-ms-correlation-request-id": [ - "f6b70dfd-bc69-4c35-8a98-95e2c3976f73" + "609fa58e-12c2-414e-8f5d-c54b03b46e54" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180612Z:f6b70dfd-bc69-4c35-8a98-95e2c3976f73" + "WESTUS2:20210213T022304Z:609fa58e-12c2-414e-8f5d-c54b03b46e54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:11 GMT" + "Sat, 13 Feb 2021 02:23:04 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlL29wZXJhdGlvblJlc3VsdHMvOWZmYWM0M2EtMjExNS00YWE0LWFlOGYtZmYyODgzNjFjZjM1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/efcc3d09-95cb-4f90-8f61-b035a2b1fad1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlL29wZXJhdGlvblJlc3VsdHMvZWZjYzNkMDktOTVjYi00ZjkwLThmNjEtYjAzNWEyYjFmYWQxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b8cb3c5d-d5cf-4c04-8b5e-5c62b2a7e41d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4125,47 +4005,44 @@ "11948" ], "x-ms-request-id": [ - "d32035ea-215f-4d32-b5b4-375a6d448dba" + "4f3bd691-ab3f-4467-85d3-bca0057c0315" ], "x-ms-correlation-request-id": [ - "d32035ea-215f-4d32-b5b4-375a6d448dba" + "4f3bd691-ab3f-4467-85d3-bca0057c0315" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180612Z:d32035ea-215f-4d32-b5b4-375a6d448dba" + "WESTUS2:20210213T022304Z:4f3bd691-ab3f-4467-85d3-bca0057c0315" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:11 GMT" + "Sat, 13 Feb 2021 02:23:04 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/9ffac43a-2115-4aa4-ae8f-ff288361cf35?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef79611e-fe61-4d65-817a-ce68e019a20f" + "12cf4c85-1f2d-427f-a76f-e4bbaf8a7a16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4176,13 +4053,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/495a5d8d-8a84-4a68-a4a7-aacceaa08590?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/495a5d8d-8a84-4a68-a4a7-aacceaa08590?api-version=2021-01-15" ], "x-ms-request-id": [ - "8f9620f9-a949-4190-bde5-ccf76aedafdd" + "495a5d8d-8a84-4a68-a4a7-aacceaa08590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4197,41 +4074,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "72c3241e-fb18-4eaa-9f56-ac793f616995" + "25ec8257-0d49-4faf-b74b-09e93837d740" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180613Z:72c3241e-fb18-4eaa-9f56-ac793f616995" + "WESTUS2:20210213T022305Z:25ec8257-0d49-4faf-b74b-09e93837d740" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:12 GMT" + "Sat, 13 Feb 2021 02:23:05 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84Zjk2MjBmOS1hOTQ5LTQxOTAtYmRlNS1jY2Y3NmFlZGFmZGQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/495a5d8d-8a84-4a68-a4a7-aacceaa08590?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80OTVhNWQ4ZC04YTg0LTRhNjgtYTRhNy1hYWNjZWFhMDg1OTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "12cf4c85-1f2d-427f-a76f-e4bbaf8a7a16" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4254,44 +4131,44 @@ "11999" ], "x-ms-request-id": [ - "491c8927-68f2-4536-ae23-c3bc52eebc77" + "411a1a2d-3b6a-4b37-879d-2604736995de" ], "x-ms-correlation-request-id": [ - "491c8927-68f2-4536-ae23-c3bc52eebc77" + "411a1a2d-3b6a-4b37-879d-2604736995de" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180643Z:491c8927-68f2-4536-ae23-c3bc52eebc77" + "WESTUS2:20210213T022335Z:411a1a2d-3b6a-4b37-879d-2604736995de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:42 GMT" + "Sat, 13 Feb 2021 02:23:35 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIvb3BlcmF0aW9uUmVzdWx0cy84Zjk2MjBmOS1hOTQ5LTQxOTAtYmRlNS1jY2Y3NmFlZGFmZGQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/495a5d8d-8a84-4a68-a4a7-aacceaa08590?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIvb3BlcmF0aW9uUmVzdWx0cy80OTVhNWQ4ZC04YTg0LTRhNjgtYTRhNy1hYWNjZWFhMDg1OTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "12cf4c85-1f2d-427f-a76f-e4bbaf8a7a16" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4314,47 +4191,44 @@ "11998" ], "x-ms-request-id": [ - "a1d24925-d524-4bab-b99d-41a5d2564640" + "e13a2bd9-5993-41e9-b966-a1f2ace22584" ], "x-ms-correlation-request-id": [ - "a1d24925-d524-4bab-b99d-41a5d2564640" + "e13a2bd9-5993-41e9-b966-a1f2ace22584" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180643Z:a1d24925-d524-4bab-b99d-41a5d2564640" + "WESTUS2:20210213T022335Z:e13a2bd9-5993-41e9-b966-a1f2ace22584" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:42 GMT" + "Sat, 13 Feb 2021 02:23:35 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/8f9620f9-a949-4190-bde5-ccf76aedafdd?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "037bfd03-e8fa-4107-819a-557681afa43b" + "f94326b6-df80-493e-b2db-98b039121144" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4365,13 +4239,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/b6baecbe-a592-4649-a303-30bf3afd046b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b6baecbe-a592-4649-a303-30bf3afd046b?api-version=2021-01-15" ], "x-ms-request-id": [ - "d77f11da-c552-4beb-b689-690e9a2107c3" + "b6baecbe-a592-4649-a303-30bf3afd046b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4386,41 +4260,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "e55c034a-a058-44c8-ac45-7f18d29f3bac" + "0a6ce919-c70d-4002-831b-79c4c960f343" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180644Z:e55c034a-a058-44c8-ac45-7f18d29f3bac" + "WESTUS2:20210213T022336Z:0a6ce919-c70d-4002-831b-79c4c960f343" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:06:43 GMT" + "Sat, 13 Feb 2021 02:23:36 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kNzdmMTFkYS1jNTUyLTRiZWItYjY4OS02OTBlOWEyMTA3YzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b6baecbe-a592-4649-a303-30bf3afd046b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iNmJhZWNiZS1hNTkyLTQ2NDktYTMwMy0zMGJmM2FmZDA0NmI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f94326b6-df80-493e-b2db-98b039121144" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4443,44 +4317,44 @@ "11999" ], "x-ms-request-id": [ - "912b3f84-452f-411c-82ec-6444d51cea1a" + "f141ff7d-22d8-4839-9f2d-cdbaa719f95c" ], "x-ms-correlation-request-id": [ - "912b3f84-452f-411c-82ec-6444d51cea1a" + "f141ff7d-22d8-4839-9f2d-cdbaa719f95c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180714Z:912b3f84-452f-411c-82ec-6444d51cea1a" + "WESTUS2:20210213T022407Z:f141ff7d-22d8-4839-9f2d-cdbaa719f95c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:13 GMT" + "Sat, 13 Feb 2021 02:24:06 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZi9vcGVyYXRpb25SZXN1bHRzL2Q3N2YxMWRhLWM1NTItNGJlYi1iNjg5LTY5MGU5YTIxMDdjMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/b6baecbe-a592-4649-a303-30bf3afd046b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZi9vcGVyYXRpb25SZXN1bHRzL2I2YmFlY2JlLWE1OTItNDY0OS1hMzAzLTMwYmYzYWZkMDQ2Yj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f94326b6-df80-493e-b2db-98b039121144" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4503,47 +4377,44 @@ "11998" ], "x-ms-request-id": [ - "05930c9b-2922-4da2-970f-ffa62b1e4aa5" + "4d4e03b4-9495-4ce6-9fbc-679acaa0b43c" ], "x-ms-correlation-request-id": [ - "05930c9b-2922-4da2-970f-ffa62b1e4aa5" + "4d4e03b4-9495-4ce6-9fbc-679acaa0b43c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180714Z:05930c9b-2922-4da2-970f-ffa62b1e4aa5" + "WESTUS2:20210213T022407Z:4d4e03b4-9495-4ce6-9fbc-679acaa0b43c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:13 GMT" + "Sat, 13 Feb 2021 02:24:06 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/d77f11da-c552-4beb-b689-690e9a2107c3?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68303422-d315-4331-b31f-7c764f80fdb6" + "49ac0f50-799a-4a51-8a73-bc1080d59da3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4554,13 +4425,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/5d4464fe-ad93-4c51-903d-ca9730e6de3b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5d4464fe-ad93-4c51-903d-ca9730e6de3b?api-version=2021-01-15" ], "x-ms-request-id": [ - "35e2f7b6-f3c1-439e-a2ba-40d35c777733" + "5d4464fe-ad93-4c51-903d-ca9730e6de3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4575,47 +4446,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "1d76819d-f148-4cab-be17-deb06278af39" + "fbb5989e-468b-48cf-9498-620efcbb2785" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180715Z:1d76819d-f148-4cab-be17-deb06278af39" + "WESTUS2:20210213T022408Z:fbb5989e-468b-48cf-9498-620efcbb2785" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:14 GMT" + "Sat, 13 Feb 2021 02:24:07 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9384cf7f-0d8b-4c02-8e02-bc5df3cd26d8" + "c6397e55-9d8c-4bb4-9d16-e51ff3294077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4626,13 +4494,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/052f783d-e890-4707-acea-aa3cd6ffd312?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/052f783d-e890-4707-acea-aa3cd6ffd312?api-version=2021-01-15" ], "x-ms-request-id": [ - "982445b8-f0c5-4383-90b3-5eb6785488b2" + "052f783d-e890-4707-acea-aa3cd6ffd312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4644,44 +4512,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "888ab09b-5d67-4f38-bb5a-bb8bee1ea89c" + "f6a2da7d-96cd-4828-8483-fa50b50adcfe" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180817Z:888ab09b-5d67-4f38-bb5a-bb8bee1ea89c" + "WESTUS2:20210213T022511Z:f6a2da7d-96cd-4828-8483-fa50b50adcfe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:16 GMT" + "Sat, 13 Feb 2021 02:25:11 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zNWUyZjdiNi1mM2MxLTQzOWUtYTJiYS00MGQzNWM3Nzc3MzM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5d4464fe-ad93-4c51-903d-ca9730e6de3b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81ZDQ0NjRmZS1hZDkzLTRjNTEtOTAzZC1jYTk3MzBlNmRlM2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "49ac0f50-799a-4a51-8a73-bc1080d59da3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4704,44 +4572,44 @@ "11999" ], "x-ms-request-id": [ - "e495d133-7cc6-4b28-ae8a-97d5dc2c4cff" + "701a4588-5ae9-4da4-841d-54ecd46b254c" ], "x-ms-correlation-request-id": [ - "e495d133-7cc6-4b28-ae8a-97d5dc2c4cff" + "701a4588-5ae9-4da4-841d-54ecd46b254c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180745Z:e495d133-7cc6-4b28-ae8a-97d5dc2c4cff" + "WESTUS2:20210213T022438Z:701a4588-5ae9-4da4-841d-54ecd46b254c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:44 GMT" + "Sat, 13 Feb 2021 02:24:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvMzVlMmY3YjYtZjNjMS00MzllLWEyYmEtNDBkMzVjNzc3NzMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/5d4464fe-ad93-4c51-903d-ca9730e6de3b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvNWQ0NDY0ZmUtYWQ5My00YzUxLTkwM2QtY2E5NzMwZTZkZTNiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "49ac0f50-799a-4a51-8a73-bc1080d59da3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4764,47 +4632,44 @@ "11998" ], "x-ms-request-id": [ - "b9ab3b8b-9260-4316-a60b-c738c9349a7d" + "af68704c-e217-480f-b82a-7c6876bc1409" ], "x-ms-correlation-request-id": [ - "b9ab3b8b-9260-4316-a60b-c738c9349a7d" + "af68704c-e217-480f-b82a-7c6876bc1409" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180745Z:b9ab3b8b-9260-4316-a60b-c738c9349a7d" + "WESTUS2:20210213T022438Z:af68704c-e217-480f-b82a-7c6876bc1409" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:45 GMT" + "Sat, 13 Feb 2021 02:24:38 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/35e2f7b6-f3c1-439e-a2ba-40d35c777733?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0d9b813-d796-48b9-830b-07a68ce92cd9" + "e2641120-a203-4a77-9a20-8c59dee4621d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4815,13 +4680,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/aee7f561-36b7-4819-b501-5fb4ac5c88e0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/aee7f561-36b7-4819-b501-5fb4ac5c88e0?api-version=2021-01-15" ], "x-ms-request-id": [ - "4da3a7a7-113f-405f-b65f-8ecf3c180285" + "aee7f561-36b7-4819-b501-5fb4ac5c88e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4836,47 +4701,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "1085c231-4fe5-4d0a-b674-24049fb252cb" + "0d878059-edf7-4d18-a767-986a7a23a895" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180746Z:1085c231-4fe5-4d0a-b674-24049fb252cb" + "WESTUS2:20210213T022439Z:0d878059-edf7-4d18-a767-986a7a23a895" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:07:45 GMT" + "Sat, 13 Feb 2021 02:24:38 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36a0c7df-5a2b-47d1-8ac6-77499fbc28e0" + "017f1fc8-dc5a-4935-8b5f-f6222375bc16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4887,13 +4749,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/296e8a16-4f65-4051-a143-550c7c8afccb?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/296e8a16-4f65-4051-a143-550c7c8afccb?api-version=2021-01-15" ], "x-ms-request-id": [ - "c4754519-ed88-4257-b1eb-0685f2b70285" + "296e8a16-4f65-4051-a143-550c7c8afccb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4908,41 +4770,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "9dee79c1-b865-41b8-a89a-9119e7d93d6a" + "903762d3-c8f1-42e1-a033-02c43c318dfc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180848Z:9dee79c1-b865-41b8-a89a-9119e7d93d6a" + "WESTUS2:20210213T022543Z:903762d3-c8f1-42e1-a033-02c43c318dfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:47 GMT" + "Sat, 13 Feb 2021 02:25:42 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80ZGEzYTdhNy0xMTNmLTQwNWYtYjY1Zi04ZWNmM2MxODAyODU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/aee7f561-36b7-4819-b501-5fb4ac5c88e0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hZWU3ZjU2MS0zNmI3LTQ4MTktYjUwMS01ZmI0YWM1Yzg4ZTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e2641120-a203-4a77-9a20-8c59dee4621d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4962,47 +4824,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "b2112ebc-df3d-49ec-912e-97698c317192" + "330af8a5-4ad3-4ef6-8f15-0667768cb258" ], "x-ms-correlation-request-id": [ - "b2112ebc-df3d-49ec-912e-97698c317192" + "330af8a5-4ad3-4ef6-8f15-0667768cb258" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180816Z:b2112ebc-df3d-49ec-912e-97698c317192" + "WESTUS2:20210213T022510Z:330af8a5-4ad3-4ef6-8f15-0667768cb258" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:16 GMT" + "Sat, 13 Feb 2021 02:25:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy80ZGEzYTdhNy0xMTNmLTQwNWYtYjY1Zi04ZWNmM2MxODAyODU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/aee7f561-36b7-4819-b501-5fb4ac5c88e0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9hZWU3ZjU2MS0zNmI3LTQ4MTktYjUwMS01ZmI0YWM1Yzg4ZTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e2641120-a203-4a77-9a20-8c59dee4621d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5022,44 +4884,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "7b2d8db8-9cbe-446b-be0d-b4063660007a" + "b1fe5b1f-aec4-4483-b777-b5fae62980c8" ], "x-ms-correlation-request-id": [ - "7b2d8db8-9cbe-446b-be0d-b4063660007a" + "b1fe5b1f-aec4-4483-b777-b5fae62980c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180816Z:7b2d8db8-9cbe-446b-be0d-b4063660007a" + "WESTUS2:20210213T022510Z:b1fe5b1f-aec4-4483-b777-b5fae62980c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:16 GMT" + "Sat, 13 Feb 2021 02:25:10 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/4da3a7a7-113f-405f-b65f-8ecf3c180285?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85ODI0NDViOC1mMGM1LTQzODMtOTBiMy01ZWI2Nzg1NDg4YjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/052f783d-e890-4707-acea-aa3cd6ffd312?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wNTJmNzgzZC1lODkwLTQ3MDctYWNlYS1hYTNjZDZmZmQzMTI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c6397e55-9d8c-4bb4-9d16-e51ff3294077" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5079,47 +4941,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "cdeb09ed-fabe-4599-aa47-fe7842f18292" + "48bdbe4b-58ed-4e08-97ad-4bf0bea6ad8b" ], "x-ms-correlation-request-id": [ - "cdeb09ed-fabe-4599-aa47-fe7842f18292" + "48bdbe4b-58ed-4e08-97ad-4bf0bea6ad8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180847Z:cdeb09ed-fabe-4599-aa47-fe7842f18292" + "WESTUS2:20210213T022542Z:48bdbe4b-58ed-4e08-97ad-4bf0bea6ad8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:46 GMT" + "Sat, 13 Feb 2021 02:25:42 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvOTgyNDQ1YjgtZjBjNS00MzgzLTkwYjMtNWViNjc4NTQ4OGIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/052f783d-e890-4707-acea-aa3cd6ffd312?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvMDUyZjc4M2QtZTg5MC00NzA3LWFjZWEtYWEzY2Q2ZmZkMzEyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c6397e55-9d8c-4bb4-9d16-e51ff3294077" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5139,44 +5001,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "d684bacc-c669-4a50-8356-f7257cf97b87" + "f94cd908-82f5-4d96-ae32-494618603063" ], "x-ms-correlation-request-id": [ - "d684bacc-c669-4a50-8356-f7257cf97b87" + "f94cd908-82f5-4d96-ae32-494618603063" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180847Z:d684bacc-c669-4a50-8356-f7257cf97b87" + "WESTUS2:20210213T022542Z:f94cd908-82f5-4d96-ae32-494618603063" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:08:46 GMT" + "Sat, 13 Feb 2021 02:25:42 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/982445b8-f0c5-4383-90b3-5eb6785488b2?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jNDc1NDUxOS1lZDg4LTQyNTctYjFlYi0wNjg1ZjJiNzAyODU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/296e8a16-4f65-4051-a143-550c7c8afccb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yOTZlOGExNi00ZjY1LTQwNTEtYTE0My01NTBjN2M4YWZjY2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "017f1fc8-dc5a-4935-8b5f-f6222375bc16" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5196,47 +5058,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "08829551-9295-4105-850e-178bbe650e73" + "d66538e6-e661-4d51-8232-09bc1daed060" ], "x-ms-correlation-request-id": [ - "08829551-9295-4105-850e-178bbe650e73" + "d66538e6-e661-4d51-8232-09bc1daed060" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180918Z:08829551-9295-4105-850e-178bbe650e73" + "WESTUS2:20210213T022613Z:d66538e6-e661-4d51-8232-09bc1daed060" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:09:17 GMT" + "Sat, 13 Feb 2021 02:26:13 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9jNDc1NDUxOS1lZDg4LTQyNTctYjFlYi0wNjg1ZjJiNzAyODU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/296e8a16-4f65-4051-a143-550c7c8afccb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8yOTZlOGExNi00ZjY1LTQwNTEtYTE0My01NTBjN2M4YWZjY2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "017f1fc8-dc5a-4935-8b5f-f6222375bc16" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5256,28 +5118,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "b859b7e8-ffbc-4096-9841-7e7534c048d3" + "ed82419f-0a2c-47b8-8b40-54d5d16cbd3a" ], "x-ms-correlation-request-id": [ - "b859b7e8-ffbc-4096-9841-7e7534c048d3" + "ed82419f-0a2c-47b8-8b40-54d5d16cbd3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T180918Z:b859b7e8-ffbc-4096-9841-7e7534c048d3" + "WESTUS2:20210213T022614Z:ed82419f-0a2c-47b8-8b40-54d5d16cbd3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 18:09:17 GMT" + "Sat, 13 Feb 2021 02:26:14 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/c4754519-ed88-4257-b1eb-0685f2b70285?api-version=2020-04-01" ] }, "ResponseBody": "", 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 706c16e8f93b..1444a87c2ed1 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79e56abf-3eea-46b8-9d4a-48fa836d0c78" + "f314fde5-a3f0-48a5-a7a3-4c0564999b90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,50 +39,47 @@ "11999" ], "x-ms-request-id": [ - "6fe25a20-7570-478d-8063-5c543d3aefc8" + "4248aff4-9cc0-4b9f-a1a6-bf4ee35ca6fb" ], "x-ms-correlation-request-id": [ - "6fe25a20-7570-478d-8063-5c543d3aefc8" + "4248aff4-9cc0-4b9f-a1a6-bf4ee35ca6fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032327Z:6fe25a20-7570-478d-8063-5c543d3aefc8" + "WESTUS2:20210213T022619Z:4248aff4-9cc0-4b9f-a1a6-bf4ee35ca6fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:27 GMT" + "Sat, 13 Feb 2021 02:26:18 GMT" ], "Content-Length": [ - "2035" + "2404" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-04-09T20:26:35.0312197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"instanceId\": \"936f2e1c-47bc-4164-813a-b0b81d0274ad\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90491ddb-09aa-4a6e-985b-8121fab7add3" + "7845121c-9923-48d5-8199-0caa4b51ad89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -105,44 +102,44 @@ "11998" ], "x-ms-request-id": [ - "887d21c7-8fef-4943-9f2f-9db87688e361" + "9c79d777-85a4-4b14-ac56-ea99612a72d8" ], "x-ms-correlation-request-id": [ - "887d21c7-8fef-4943-9f2f-9db87688e361" + "9c79d777-85a4-4b14-ac56-ea99612a72d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032328Z:887d21c7-8fef-4943-9f2f-9db87688e361" + "WESTUS2:20210213T022620Z:9c79d777-85a4-4b14-ac56-ea99612a72d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:27 GMT" + "Sat, 13 Feb 2021 02:26:19 GMT" ], "Content-Length": [ - "1709" + "1784" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 90491ddb-09aa-4a6e-985b-8121fab7add3, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362280337460879s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:23:27.9565360Z, RequestEndTime: 2020-06-10T03:23:27.9565360Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:23:27.9565360Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362280337460879s, LSN: 403, GlobalCommittedLsn: 403, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#403, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:23:27.9565360Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362310949619198s, LSN: 403, GlobalCommittedLsn: 403, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#403, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 7845121c-9923-48d5-8199-0caa4b51ad89, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:26:20.1434789Z, RequestEndTime: 2021-02-13T02:26:20.1434789Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:26:20.1434789Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10277, GlobalCommittedLsn: 10277, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10277, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:26:20.1434789Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10277, GlobalCommittedLsn: 10277, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10277, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7845121c-9923-48d5-8199-0caa4b51ad89" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "66ccb783-8144-4f98-9845-815e1f48f96c" + "a1dffb1e-16e3-43d4-9596-0371699088fc" ], "x-ms-correlation-request-id": [ - "66ccb783-8144-4f98-9845-815e1f48f96c" + "a1dffb1e-16e3-43d4-9596-0371699088fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032359Z:66ccb783-8144-4f98-9845-815e1f48f96c" + "WESTUS2:20210213T022652Z:a1dffb1e-16e3-43d4-9596-0371699088fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:59 GMT" + "Sat, 13 Feb 2021 02:26:51 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9502c4c2-0a0b-4108-93bf-108017badeb5" + "6a82fdce-1667-4ae4-ad16-fd7a4ace5a74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,50 +225,47 @@ "11983" ], "x-ms-request-id": [ - "e439392a-51ea-48eb-b597-e3b2bd1132dc" + "1b3553cb-944e-47d0-b9c5-f38c5f3f35f1" ], "x-ms-correlation-request-id": [ - "e439392a-51ea-48eb-b597-e3b2bd1132dc" + "1b3553cb-944e-47d0-b9c5-f38c5f3f35f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032606Z:e439392a-51ea-48eb-b597-e3b2bd1132dc" + "WESTUS2:20210213T022859Z:1b3553cb-944e-47d0-b9c5-f38c5f3f35f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:06 GMT" + "Sat, 13 Feb 2021 02:28:59 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cd937be-5cb9-4564-a4e1-6e29f5055844" + "66932e06-cb84-4673-a307-7e4f57f859c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -297,44 +288,44 @@ "11978" ], "x-ms-request-id": [ - "7c698774-fcc0-45bc-a241-b3cc431708ee" + "5f9d65be-b28d-40f6-ab01-1ad8925a703a" ], "x-ms-correlation-request-id": [ - "7c698774-fcc0-45bc-a241-b3cc431708ee" + "5f9d65be-b28d-40f6-ab01-1ad8925a703a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032608Z:7c698774-fcc0-45bc-a241-b3cc431708ee" + "WESTUS2:20210213T022900Z:5f9d65be-b28d-40f6-ab01-1ad8925a703a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:07 GMT" + "Sat, 13 Feb 2021 02:29:00 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "66932e06-cb84-4673-a307-7e4f57f859c6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,50 +348,47 @@ "11976" ], "x-ms-request-id": [ - "dfc6fd8e-3e23-4c75-9512-d6e58e249bda" + "4f51059a-97c7-4e84-a82f-cb5c9dd1e507" ], "x-ms-correlation-request-id": [ - "dfc6fd8e-3e23-4c75-9512-d6e58e249bda" + "4f51059a-97c7-4e84-a82f-cb5c9dd1e507" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032639Z:dfc6fd8e-3e23-4c75-9512-d6e58e249bda" + "WESTUS2:20210213T022932Z:4f51059a-97c7-4e84-a82f-cb5c9dd1e507" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:38 GMT" + "Sat, 13 Feb 2021 02:29:31 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "301ce02c-823a-4362-9733-530b86627d65" + "c21dcda8-9b8e-4564-9ce4-64ecda397db8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -423,44 +411,44 @@ "11963" ], "x-ms-request-id": [ - "38217431-8005-4ed3-a681-c88d33ee3833" + "b096fad0-f4ca-45a1-be87-04f2f857a42a" ], "x-ms-correlation-request-id": [ - "38217431-8005-4ed3-a681-c88d33ee3833" + "b096fad0-f4ca-45a1-be87-04f2f857a42a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032845Z:38217431-8005-4ed3-a681-c88d33ee3833" + "WESTUS2:20210213T023139Z:b096fad0-f4ca-45a1-be87-04f2f857a42a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:45 GMT" + "Sat, 13 Feb 2021 02:31:38 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c21dcda8-9b8e-4564-9ce4-64ecda397db8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -483,50 +471,47 @@ "11961" ], "x-ms-request-id": [ - "a5ed9132-9803-4e98-a89c-99f5320e5826" + "34e764da-83b8-4bf7-94ee-019f4d9db1a6" ], "x-ms-correlation-request-id": [ - "a5ed9132-9803-4e98-a89c-99f5320e5826" + "34e764da-83b8-4bf7-94ee-019f4d9db1a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032916Z:a5ed9132-9803-4e98-a89c-99f5320e5826" + "WESTUS2:20210213T023210Z:34e764da-83b8-4bf7-94ee-019f4d9db1a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:16 GMT" + "Sat, 13 Feb 2021 02:32:10 GMT" ], "Content-Length": [ "443" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "60ea685a-adae-4aa8-b2bd-b3741ea243ee" + "7845121c-9923-48d5-8199-0caa4b51ad89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +528,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/75a65602-110c-4823-b0a7-17ba690c7070?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/9d8cd58b-ed9e-4ef1-a8b6-6064c99babca?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75a65602-110c-4823-b0a7-17ba690c7070?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9d8cd58b-ed9e-4ef1-a8b6-6064c99babca?api-version=2021-01-15" ], "x-ms-request-id": [ - "75a65602-110c-4823-b0a7-17ba690c7070" + "9d8cd58b-ed9e-4ef1-a8b6-6064c99babca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +549,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "908641d2-d5a9-4432-b76d-a99bd9615133" + "f45d27f2-5847-4d1c-b2d5-84364113fb1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032328Z:908641d2-d5a9-4432-b76d-a99bd9615133" + "WESTUS2:20210213T022620Z:f45d27f2-5847-4d1c-b2d5-84364113fb1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:28 GMT" + "Sat, 13 Feb 2021 02:26:20 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "951d49c2-266a-4a48-ac99-ef042f6b2025" + "66932e06-cb84-4673-a307-7e4f57f859c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +603,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/4d0293c8-0551-40c1-9c62-9cedaf1cf712?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/b1d7f646-7b90-4f88-afdc-d2f91709f087?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4d0293c8-0551-40c1-9c62-9cedaf1cf712?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b1d7f646-7b90-4f88-afdc-d2f91709f087?api-version=2021-01-15" ], "x-ms-request-id": [ - "4d0293c8-0551-40c1-9c62-9cedaf1cf712" + "b1d7f646-7b90-4f88-afdc-d2f91709f087" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +624,44 @@ "1194" ], "x-ms-correlation-request-id": [ - "61eee1de-2b9e-499b-9d9b-c3a55a2cd16a" + "788c55e6-c859-49e4-b017-e6290f2f2367" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032608Z:61eee1de-2b9e-499b-9d9b-c3a55a2cd16a" + "WESTUS2:20210213T022901Z:788c55e6-c859-49e4-b017-e6290f2f2367" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:08 GMT" + "Sat, 13 Feb 2021 02:29:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "a2ce609b-886c-4dd1-ac18-b36271245a9e" + "c21dcda8-9b8e-4564-9ce4-64ecda397db8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +678,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/a3d62c00-bd1f-4fdc-8d21-310163a3c645?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/5ddc0f4c-0154-4ce9-b5bc-020657e8edc0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a3d62c00-bd1f-4fdc-8d21-310163a3c645?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5ddc0f4c-0154-4ce9-b5bc-020657e8edc0?api-version=2021-01-15" ], "x-ms-request-id": [ - "a3d62c00-bd1f-4fdc-8d21-310163a3c645" + "5ddc0f4c-0154-4ce9-b5bc-020657e8edc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +699,41 @@ "1189" ], "x-ms-correlation-request-id": [ - "ae937a59-3e24-4bba-a9e5-e40e4a35b28d" + "95bf899a-fe48-415f-b628-dd53278bd709" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032845Z:ae937a59-3e24-4bba-a9e5-e40e4a35b28d" + "WESTUS2:20210213T023139Z:95bf899a-fe48-415f-b628-dd53278bd709" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:45 GMT" + "Sat, 13 Feb 2021 02:31:39 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75a65602-110c-4823-b0a7-17ba690c7070?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83NWE2NTYwMi0xMTBjLTQ4MjMtYjBhNy0xN2JhNjkwYzcwNzA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9d8cd58b-ed9e-4ef1-a8b6-6064c99babca?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85ZDhjZDU4Yi1lZDllLTRlZjEtYThiNi02MDY0Yzk5YmFiY2E/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7845121c-9923-48d5-8199-0caa4b51ad89" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -777,50 +756,47 @@ "11997" ], "x-ms-request-id": [ - "0fdefc00-bb2d-455e-bba0-98e276d6a829" + "d62e33c6-bbec-4365-bda7-e42506cc8174" ], "x-ms-correlation-request-id": [ - "0fdefc00-bb2d-455e-bba0-98e276d6a829" + "d62e33c6-bbec-4365-bda7-e42506cc8174" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032359Z:0fdefc00-bb2d-455e-bba0-98e276d6a829" + "WESTUS2:20210213T022651Z:d62e33c6-bbec-4365-bda7-e42506cc8174" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:58 GMT" + "Sat, 13 Feb 2021 02:26:50 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75a65602-110c-4823-b0a7-17ba690c7070?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a9c2618-3587-404c-8761-e725f23f9ab7" + "f8dabf02-e99a-4880-8ec5-5c9b2bee8f55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -843,44 +819,44 @@ "11995" ], "x-ms-request-id": [ - "9d0ee32f-eba0-43af-bb62-ad8d90d4cf81" + "9b940fb9-cc50-4088-b080-434e9992e503" ], "x-ms-correlation-request-id": [ - "9d0ee32f-eba0-43af-bb62-ad8d90d4cf81" + "9b940fb9-cc50-4088-b080-434e9992e503" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032359Z:9d0ee32f-eba0-43af-bb62-ad8d90d4cf81" + "WESTUS2:20210213T022652Z:9b940fb9-cc50-4088-b080-434e9992e503" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:59 GMT" + "Sat, 13 Feb 2021 02:26:51 GMT" ], "Content-Length": [ - "1730" + "1805" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 5a9c2618-3587-404c-8761-e725f23f9ab7, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362280337460879s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:23:59.6000266Z, RequestEndTime: 2020-06-10T03:23:59.6100584Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:23:59.6100584Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362280337460879s, LSN: 404, GlobalCommittedLsn: 404, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#404, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:23:59.6100584Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362310949619198s, LSN: 404, GlobalCommittedLsn: 404, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#404, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: f8dabf02-e99a-4880-8ec5-5c9b2bee8f55, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:26:52.2140197Z, RequestEndTime: 2021-02-13T02:26:52.2241261Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:26:52.2241261Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10278, GlobalCommittedLsn: 10278, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10278, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:26:52.2241261Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10278, GlobalCommittedLsn: 10278, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10278, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f8dabf02-e99a-4880-8ec5-5c9b2bee8f55" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -903,50 +879,47 @@ "11993" ], "x-ms-request-id": [ - "c4bebc18-0f37-4efd-b9a4-cc5233f616c6" + "fb22487e-9723-4f4d-aa7b-75a87d51b13d" ], "x-ms-correlation-request-id": [ - "c4bebc18-0f37-4efd-b9a4-cc5233f616c6" + "fb22487e-9723-4f4d-aa7b-75a87d51b13d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032430Z:c4bebc18-0f37-4efd-b9a4-cc5233f616c6" + "WESTUS2:20210213T022723Z:fb22487e-9723-4f4d-aa7b-75a87d51b13d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:24:30 GMT" + "Sat, 13 Feb 2021 02:27:22 GMT" ], "Content-Length": [ - "1453" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a9ec692-c6a0-4300-ae2c-13d48ad36888" + "c4820b1e-5d3f-493e-9ec5-16a5bcbf3438" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -969,50 +942,47 @@ "11982" ], "x-ms-request-id": [ - "99f57223-1050-4919-9498-ea3aee4a1e16" + "ab723f11-0cbd-458b-b744-32ac31bef9e6" ], "x-ms-correlation-request-id": [ - "99f57223-1050-4919-9498-ea3aee4a1e16" + "ab723f11-0cbd-458b-b744-32ac31bef9e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032607Z:99f57223-1050-4919-9498-ea3aee4a1e16" + "WESTUS2:20210213T022859Z:ab723f11-0cbd-458b-b744-32ac31bef9e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:06 GMT" + "Sat, 13 Feb 2021 02:28:59 GMT" ], "Content-Length": [ - "1455" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f9f2a6d-acfe-4b98-9c85-7b91d29c97b2" + "a680cdcb-f517-4831-9cd8-0c639db2cf01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1035,44 +1005,44 @@ "11975" ], "x-ms-request-id": [ - "a337965d-da65-4b19-8feb-79c335acf694" + "10e78366-7a99-423f-81c0-98763ad33a7c" ], "x-ms-correlation-request-id": [ - "a337965d-da65-4b19-8feb-79c335acf694" + "10e78366-7a99-423f-81c0-98763ad33a7c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032639Z:a337965d-da65-4b19-8feb-79c335acf694" + "WESTUS2:20210213T022932Z:10e78366-7a99-423f-81c0-98763ad33a7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:39 GMT" + "Sat, 13 Feb 2021 02:29:32 GMT" ], "Content-Length": [ - "1455" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a680cdcb-f517-4831-9cd8-0c639db2cf01" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1095,50 +1065,47 @@ "11973" ], "x-ms-request-id": [ - "c0b64d45-6aff-4ccb-82e1-4061360b8d88" + "6d03b53d-2c3f-4b05-bb01-d972f79c3107" ], "x-ms-correlation-request-id": [ - "c0b64d45-6aff-4ccb-82e1-4061360b8d88" + "6d03b53d-2c3f-4b05-bb01-d972f79c3107" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032710Z:c0b64d45-6aff-4ccb-82e1-4061360b8d88" + "WESTUS2:20210213T023004Z:6d03b53d-2c3f-4b05-bb01-d972f79c3107" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:09 GMT" + "Sat, 13 Feb 2021 02:30:03 GMT" ], "Content-Length": [ - "1455" + "1484" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cec574cc-9691-48aa-9353-11fd02b059f9" + "36872c0d-d0c2-44f2-9d26-1916eba028f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1161,44 +1128,44 @@ "11960" ], "x-ms-request-id": [ - "30830b9d-57ca-4436-aa68-1c961c12bb95" + "50e0a22b-4de2-433e-818c-c122aabf41a1" ], "x-ms-correlation-request-id": [ - "30830b9d-57ca-4436-aa68-1c961c12bb95" + "50e0a22b-4de2-433e-818c-c122aabf41a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032917Z:30830b9d-57ca-4436-aa68-1c961c12bb95" + "WESTUS2:20210213T023211Z:50e0a22b-4de2-433e-818c-c122aabf41a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:16 GMT" + "Sat, 13 Feb 2021 02:32:10 GMT" ], "Content-Length": [ - "1455" + "1486" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "36872c0d-d0c2-44f2-9d26-1916eba028f7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1221,50 +1188,47 @@ "11958" ], "x-ms-request-id": [ - "a4474610-3445-4d1d-b40f-3de75cf00198" + "4c408f8d-aab1-4f75-b64c-1887ff18d64e" ], "x-ms-correlation-request-id": [ - "a4474610-3445-4d1d-b40f-3de75cf00198" + "4c408f8d-aab1-4f75-b64c-1887ff18d64e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032948Z:a4474610-3445-4d1d-b40f-3de75cf00198" + "WESTUS2:20210213T023242Z:4c408f8d-aab1-4f75-b64c-1887ff18d64e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:47 GMT" + "Sat, 13 Feb 2021 02:32:41 GMT" ], "Content-Length": [ - "1455" + "1486" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "9e7664db-91ec-4d65-ac24-e7cd5e97a853" + "f8dabf02-e99a-4880-8ec5-5c9b2bee8f55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1281,13 +1245,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/1a19bb36-f28a-4f71-b18c-aef9e087ab3a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/76614971-9459-4882-a312-c433bc9a2a1c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1a19bb36-f28a-4f71-b18c-aef9e087ab3a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/76614971-9459-4882-a312-c433bc9a2a1c?api-version=2021-01-15" ], "x-ms-request-id": [ - "1a19bb36-f28a-4f71-b18c-aef9e087ab3a" + "76614971-9459-4882-a312-c433bc9a2a1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,47 +1266,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "afd7d62e-fac4-4012-80e1-c6d5320d0110" + "689b6119-2600-4cb0-bf63-5a244cec4446" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032400Z:afd7d62e-fac4-4012-80e1-c6d5320d0110" + "WESTUS2:20210213T022652Z:689b6119-2600-4cb0-bf63-5a244cec4446" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:23:59 GMT" + "Sat, 13 Feb 2021 02:26:51 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "f0d6d80c-f0d0-4fc5-87a0-8f1e6ed995b3" + "a680cdcb-f517-4831-9cd8-0c639db2cf01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,13 +1320,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/524b4527-7d9d-43da-aca0-e8d63722fd52?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/addd570c-d0cc-436a-bb88-962884a4943b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/524b4527-7d9d-43da-aca0-e8d63722fd52?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/addd570c-d0cc-436a-bb88-962884a4943b?api-version=2021-01-15" ], "x-ms-request-id": [ - "524b4527-7d9d-43da-aca0-e8d63722fd52" + "addd570c-d0cc-436a-bb88-962884a4943b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,47 +1341,44 @@ "1193" ], "x-ms-correlation-request-id": [ - "c6cc1a71-dae6-4025-b150-106e245ca22b" + "dbac7298-df5b-4713-9ddc-a933f580a795" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032640Z:c6cc1a71-dae6-4025-b150-106e245ca22b" + "WESTUS2:20210213T022932Z:dbac7298-df5b-4713-9ddc-a933f580a795" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:39 GMT" + "Sat, 13 Feb 2021 02:29:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "05a9de5a-e1b2-401c-83ca-c0bb22429a95" + "36872c0d-d0c2-44f2-9d26-1916eba028f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1437,13 +1395,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/82325f69-5c8b-441e-99ed-52e0258f5bb8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/863277c9-2971-498d-a11e-fa0631994348?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/82325f69-5c8b-441e-99ed-52e0258f5bb8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/863277c9-2971-498d-a11e-fa0631994348?api-version=2021-01-15" ], "x-ms-request-id": [ - "82325f69-5c8b-441e-99ed-52e0258f5bb8" + "863277c9-2971-498d-a11e-fa0631994348" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,41 +1416,41 @@ "1188" ], "x-ms-correlation-request-id": [ - "ec00fa9d-ea4d-4f3d-8f0c-458695663375" + "59af529c-c9ed-4537-ab3f-06171d6ce3b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032917Z:ec00fa9d-ea4d-4f3d-8f0c-458695663375" + "WESTUS2:20210213T023211Z:59af529c-c9ed-4537-ab3f-06171d6ce3b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:16 GMT" + "Sat, 13 Feb 2021 02:32:10 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1a19bb36-f28a-4f71-b18c-aef9e087ab3a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xYTE5YmIzNi1mMjhhLTRmNzEtYjE4Yy1hZWY5ZTA4N2FiM2E/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/76614971-9459-4882-a312-c433bc9a2a1c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83NjYxNDk3MS05NDU5LTQ4ODItYTMxMi1jNDMzYmM5YTJhMWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f8dabf02-e99a-4880-8ec5-5c9b2bee8f55" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1515,50 +1473,47 @@ "11994" ], "x-ms-request-id": [ - "5e2b0474-e1eb-4726-a349-706cd364f2b2" + "6dec84a2-9264-4ce6-aa95-4bd45986dfd0" ], "x-ms-correlation-request-id": [ - "5e2b0474-e1eb-4726-a349-706cd364f2b2" + "6dec84a2-9264-4ce6-aa95-4bd45986dfd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032430Z:5e2b0474-e1eb-4726-a349-706cd364f2b2" + "WESTUS2:20210213T022722Z:6dec84a2-9264-4ce6-aa95-4bd45986dfd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:24:29 GMT" + "Sat, 13 Feb 2021 02:27:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1a19bb36-f28a-4f71-b18c-aef9e087ab3a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a9a517-3186-4b3f-a3ae-b7012ad4a073" + "ab9b72d3-e8f5-43be-93a8-c15a2412efba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1581,44 +1536,44 @@ "11992" ], "x-ms-request-id": [ - "969e7ee4-9a74-4a36-a35d-4d2fbc3ed555" + "1208db64-3c9b-41b3-a64f-28d37c5fc1fe" ], "x-ms-correlation-request-id": [ - "969e7ee4-9a74-4a36-a35d-4d2fbc3ed555" + "1208db64-3c9b-41b3-a64f-28d37c5fc1fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032431Z:969e7ee4-9a74-4a36-a35d-4d2fbc3ed555" + "WESTUS2:20210213T022723Z:1208db64-3c9b-41b3-a64f-28d37c5fc1fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:24:30 GMT" + "Sat, 13 Feb 2021 02:27:23 GMT" ], "Content-Length": [ - "1255" + "1318" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 72a9a517-3186-4b3f-a3ae-b7012ad4a073, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328043800366p/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:24:30.9809051Z, RequestEndTime: 2020-06-10T03:24:30.9809051Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:24:30.9809051Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14317/apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328043800366p/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: ab9b72d3-e8f5-43be-93a8-c15a2412efba, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522113744655s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:27:23.8050685Z, RequestEndTime: 2021-02-13T02:27:23.8150687Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:27:23.8150687Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14447/apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522113744655s/, LSN: 1, GlobalCommittedLsn: 1, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1, UsingLocalLSN: True, TransportException: null, ResourceType: StoredProcedure, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/sprocs/storedProcedure, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ab9b72d3-e8f5-43be-93a8-c15a2412efba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1641,50 +1596,47 @@ "11990" ], "x-ms-request-id": [ - "90876745-6bb3-4ccd-9690-bd6e35349870" + "e8ce5941-e030-4327-b295-4ef411cb4533" ], "x-ms-correlation-request-id": [ - "90876745-6bb3-4ccd-9690-bd6e35349870" + "e8ce5941-e030-4327-b295-4ef411cb4533" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032502Z:90876745-6bb3-4ccd-9690-bd6e35349870" + "WESTUS2:20210213T022755Z:e8ce5941-e030-4327-b295-4ef411cb4533" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:01 GMT" + "Sat, 13 Feb 2021 02:27:55 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b00696c-0000-0500-0000-5ee052730000\\\"\",\r\n \"_ts\": 1591759475\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"65008746-0000-0500-0000-602739100000\\\"\",\r\n \"_ts\": 1613183248\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d36b8c3f-1079-4319-a3ee-1bf91d484309" + "a57122db-2a51-4a69-8a66-5980aa141f37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1707,50 +1659,47 @@ "11981" ], "x-ms-request-id": [ - "e64a0f0d-ad33-4fec-a0f9-4d2d9d8b0f03" + "15091362-5fcc-433d-9b06-7ad25c17f5ed" ], "x-ms-correlation-request-id": [ - "e64a0f0d-ad33-4fec-a0f9-4d2d9d8b0f03" + "15091362-5fcc-433d-9b06-7ad25c17f5ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032607Z:e64a0f0d-ad33-4fec-a0f9-4d2d9d8b0f03" + "WESTUS2:20210213T022900Z:15091362-5fcc-433d-9b06-7ad25c17f5ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:07 GMT" + "Sat, 13 Feb 2021 02:28:59 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b00696c-0000-0500-0000-5ee052730000\\\"\",\r\n \"_ts\": 1591759475\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"65008746-0000-0500-0000-602739100000\\\"\",\r\n \"_ts\": 1613183248\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e239faf-a0ae-4a44-8666-ed626cd18779" + "d05b5dd6-d6cd-460d-9762-63f1e0cce464" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1773,44 +1722,44 @@ "11972" ], "x-ms-request-id": [ - "cecf4feb-8b86-4b2c-8555-3e039f96601e" + "ae5e64df-2adc-4488-88fd-683e01acadfb" ], "x-ms-correlation-request-id": [ - "cecf4feb-8b86-4b2c-8555-3e039f96601e" + "ae5e64df-2adc-4488-88fd-683e01acadfb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032711Z:cecf4feb-8b86-4b2c-8555-3e039f96601e" + "WESTUS2:20210213T023004Z:ae5e64df-2adc-4488-88fd-683e01acadfb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:11 GMT" + "Sat, 13 Feb 2021 02:30:03 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b00696c-0000-0500-0000-5ee052730000\\\"\",\r\n \"_ts\": 1591759475\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"65008746-0000-0500-0000-602739100000\\\"\",\r\n \"_ts\": 1613183248\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d05b5dd6-d6cd-460d-9762-63f1e0cce464" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1833,50 +1782,47 @@ "11970" ], "x-ms-request-id": [ - "c209009c-bbca-4d33-921b-a09f26265086" + "05cef642-4b1f-490e-904f-1a0e970e3b04" ], "x-ms-correlation-request-id": [ - "c209009c-bbca-4d33-921b-a09f26265086" + "05cef642-4b1f-490e-904f-1a0e970e3b04" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032742Z:c209009c-bbca-4d33-921b-a09f26265086" + "WESTUS2:20210213T023035Z:05cef642-4b1f-490e-904f-1a0e970e3b04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:41 GMT" + "Sat, 13 Feb 2021 02:30:35 GMT" ], "Content-Length": [ "611" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b001a6d-0000-0500-0000-5ee053130000\\\"\",\r\n \"_ts\": 1591759635\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"65004c4f-0000-0500-0000-602739b00000\\\"\",\r\n \"_ts\": 1613183408\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13ef9685-ff2a-4726-b9d2-6fbf2f015973" + "769ff285-6b6f-424c-b45a-72f572b29f3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1899,44 +1845,44 @@ "11957" ], "x-ms-request-id": [ - "d6dd658b-d87a-40f4-92de-12ffad720294" + "4e4961ac-e9c6-43db-8ac2-20703bbeede8" ], "x-ms-correlation-request-id": [ - "d6dd658b-d87a-40f4-92de-12ffad720294" + "4e4961ac-e9c6-43db-8ac2-20703bbeede8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032948Z:d6dd658b-d87a-40f4-92de-12ffad720294" + "WESTUS2:20210213T023242Z:4e4961ac-e9c6-43db-8ac2-20703bbeede8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:47 GMT" + "Sat, 13 Feb 2021 02:32:41 GMT" ], "Content-Length": [ "611" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b001a6d-0000-0500-0000-5ee053130000\\\"\",\r\n \"_ts\": 1591759635\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"65004c4f-0000-0500-0000-602739b00000\\\"\",\r\n \"_ts\": 1613183408\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "769ff285-6b6f-424c-b45a-72f572b29f3f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1959,50 +1905,47 @@ "11955" ], "x-ms-request-id": [ - "0bbfee6d-b587-463a-b59b-7ef9e6e9c400" + "6bbd8157-b675-476e-990d-e78c8738981c" ], "x-ms-correlation-request-id": [ - "0bbfee6d-b587-463a-b59b-7ef9e6e9c400" + "6bbd8157-b675-476e-990d-e78c8738981c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033019Z:0bbfee6d-b587-463a-b59b-7ef9e6e9c400" + "WESTUS2:20210213T023314Z:6bbd8157-b675-476e-990d-e78c8738981c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:19 GMT" + "Sat, 13 Feb 2021 02:33:13 GMT" ], "Content-Length": [ "698" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b00d46d-0000-0500-0000-5ee053b00000\\\"\",\r\n \"_ts\": 1591759792\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"6500a058-0000-0500-0000-60273a4e0000\\\"\",\r\n \"_ts\": 1613183566\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "bb1085bd-22c4-4cd7-9867-0f28ea943124" + "ab9b72d3-e8f5-43be-93a8-c15a2412efba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2019,13 +1962,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/2ad87fd7-60d0-4383-942c-7a38dd769188?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/80f74894-aa9e-4c2f-b0c1-a9ed464c9360?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2ad87fd7-60d0-4383-942c-7a38dd769188?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/80f74894-aa9e-4c2f-b0c1-a9ed464c9360?api-version=2021-01-15" ], "x-ms-request-id": [ - "2ad87fd7-60d0-4383-942c-7a38dd769188" + "80f74894-aa9e-4c2f-b0c1-a9ed464c9360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,47 +1983,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "d4ad694e-2a82-47d0-bc1d-eda8c427ebd2" + "524af410-ca19-46db-a9bc-e9075e685366" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032431Z:d4ad694e-2a82-47d0-bc1d-eda8c427ebd2" + "WESTUS2:20210213T022724Z:524af410-ca19-46db-a9bc-e9075e685366" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:24:31 GMT" + "Sat, 13 Feb 2021 02:27:23 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "93f386b3-1c46-45c6-bff4-a01c9f6a268e" + "d05b5dd6-d6cd-460d-9762-63f1e0cce464" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,13 +2037,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/aac7d683-6356-4441-89e1-e00220bc8a11?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/8d303578-09c1-42a2-b398-8014dc19d8f7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/aac7d683-6356-4441-89e1-e00220bc8a11?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8d303578-09c1-42a2-b398-8014dc19d8f7?api-version=2021-01-15" ], "x-ms-request-id": [ - "aac7d683-6356-4441-89e1-e00220bc8a11" + "8d303578-09c1-42a2-b398-8014dc19d8f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2118,47 +2058,44 @@ "1192" ], "x-ms-correlation-request-id": [ - "acd5c1f5-3170-4325-b485-b6a8585389a1" + "589e9366-8789-47d6-8c8f-5a7bab7fa896" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032711Z:acd5c1f5-3170-4325-b485-b6a8585389a1" + "WESTUS2:20210213T023004Z:589e9366-8789-47d6-8c8f-5a7bab7fa896" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:11 GMT" + "Sat, 13 Feb 2021 02:30:04 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "06686154-4541-4135-96e0-da0aff3423d7" + "769ff285-6b6f-424c-b45a-72f572b29f3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2175,13 +2112,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/a08e4dcf-c544-4bce-a84e-786af1cf12cc?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/c693be8b-c9ec-41be-94f9-72de0440ee87?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a08e4dcf-c544-4bce-a84e-786af1cf12cc?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c693be8b-c9ec-41be-94f9-72de0440ee87?api-version=2021-01-15" ], "x-ms-request-id": [ - "a08e4dcf-c544-4bce-a84e-786af1cf12cc" + "c693be8b-c9ec-41be-94f9-72de0440ee87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2196,41 +2133,41 @@ "1187" ], "x-ms-correlation-request-id": [ - "98d265fa-ea7a-4f45-b83f-a6f4c1baa863" + "9d94c6be-c770-4333-8b19-429c3e79952d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032949Z:98d265fa-ea7a-4f45-b83f-a6f4c1baa863" + "WESTUS2:20210213T023242Z:9d94c6be-c770-4333-8b19-429c3e79952d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:48 GMT" + "Sat, 13 Feb 2021 02:32:41 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2ad87fd7-60d0-4383-942c-7a38dd769188?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yYWQ4N2ZkNy02MGQwLTQzODMtOTQyYy03YTM4ZGQ3NjkxODg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/80f74894-aa9e-4c2f-b0c1-a9ed464c9360?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84MGY3NDg5NC1hYTllLTRjMmYtYjBjMS1hOWVkNDY0YzkzNjA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ab9b72d3-e8f5-43be-93a8-c15a2412efba" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2253,50 +2190,47 @@ "11991" ], "x-ms-request-id": [ - "2025b7bf-0637-432e-a812-9d3f6e1dd691" + "096b78b2-bf64-473d-9d80-ad63c0cb25fc" ], "x-ms-correlation-request-id": [ - "2025b7bf-0637-432e-a812-9d3f6e1dd691" + "096b78b2-bf64-473d-9d80-ad63c0cb25fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032502Z:2025b7bf-0637-432e-a812-9d3f6e1dd691" + "WESTUS2:20210213T022754Z:096b78b2-bf64-473d-9d80-ad63c0cb25fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:01 GMT" + "Sat, 13 Feb 2021 02:27:54 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2ad87fd7-60d0-4383-942c-7a38dd769188?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "405d6597-4b18-4cad-9dff-f120186a65d9" + "28f2c54b-0fe7-42e9-b66f-195b02f107bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2319,44 +2253,44 @@ "11989" ], "x-ms-request-id": [ - "61ce7c44-323b-48a8-a743-290e06064627" + "364d0cc3-670e-4cf7-b026-9e0f41e649f8" ], "x-ms-correlation-request-id": [ - "61ce7c44-323b-48a8-a743-290e06064627" + "364d0cc3-670e-4cf7-b026-9e0f41e649f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032503Z:61ce7c44-323b-48a8-a743-290e06064627" + "WESTUS2:20210213T022755Z:364d0cc3-670e-4cf7-b026-9e0f41e649f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:02 GMT" + "Sat, 13 Feb 2021 02:27:55 GMT" ], "Content-Length": [ - "1245" + "1308" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 405d6597-4b18-4cad-9dff-f120186a65d9, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328043800366p/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:25:03.3217603Z, RequestEndTime: 2020-06-10T03:25:03.3317512Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:25:03.3317512Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14317/apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328043800366p/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 28f2c54b-0fe7-42e9-b66f-195b02f107bc, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522013272013p/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:27:55.8738745Z, RequestEndTime: 2021-02-13T02:27:55.8838566Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:27:55.8838566Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14490/apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522013272013p/, LSN: 2, GlobalCommittedLsn: 2, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#2, UsingLocalLSN: True, TransportException: null, ResourceType: UserDefinedFunction, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/udfs/udf, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "28f2c54b-0fe7-42e9-b66f-195b02f107bc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2379,50 +2313,47 @@ "11987" ], "x-ms-request-id": [ - "03cb0306-603c-4c57-9dbb-110d80ee96c3" + "cb702db5-67ce-4cb0-a4d9-cec28f3d9530" ], "x-ms-correlation-request-id": [ - "03cb0306-603c-4c57-9dbb-110d80ee96c3" + "cb702db5-67ce-4cb0-a4d9-cec28f3d9530" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032534Z:03cb0306-603c-4c57-9dbb-110d80ee96c3" + "WESTUS2:20210213T022827Z:cb702db5-67ce-4cb0-a4d9-cec28f3d9530" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:33 GMT" + "Sat, 13 Feb 2021 02:28:26 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b008c6c-0000-0500-0000-5ee052930000\\\"\",\r\n \"_ts\": 1591759507\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"65006048-0000-0500-0000-602739300000\\\"\",\r\n \"_ts\": 1613183280\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f22e848-ea62-437a-82e2-634fa64867e5" + "536080a2-c156-4844-b366-c171f1c6dd6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2445,50 +2376,47 @@ "11980" ], "x-ms-request-id": [ - "bfb9868a-f44d-4422-bf33-15d0012978db" + "728dfc38-0973-416c-90e0-8b507b825205" ], "x-ms-correlation-request-id": [ - "bfb9868a-f44d-4422-bf33-15d0012978db" + "728dfc38-0973-416c-90e0-8b507b825205" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032607Z:bfb9868a-f44d-4422-bf33-15d0012978db" + "WESTUS2:20210213T022900Z:728dfc38-0973-416c-90e0-8b507b825205" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:07 GMT" + "Sat, 13 Feb 2021 02:29:00 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b008c6c-0000-0500-0000-5ee052930000\\\"\",\r\n \"_ts\": 1591759507\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"65006048-0000-0500-0000-602739300000\\\"\",\r\n \"_ts\": 1613183280\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb58a6f2-0abb-4442-8dd3-bd80a80955ad" + "d8639f46-5d9f-4ad3-8b47-3d55c2494166" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2511,44 +2439,44 @@ "11966" ], "x-ms-request-id": [ - "6041b239-3f84-4a30-a873-dc080dad81c3" + "cb0303b2-7457-4a0b-a438-9c73bf38511a" ], "x-ms-correlation-request-id": [ - "6041b239-3f84-4a30-a873-dc080dad81c3" + "cb0303b2-7457-4a0b-a438-9c73bf38511a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032813Z:6041b239-3f84-4a30-a873-dc080dad81c3" + "WESTUS2:20210213T023107Z:cb0303b2-7457-4a0b-a438-9c73bf38511a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:13 GMT" + "Sat, 13 Feb 2021 02:31:07 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b008c6c-0000-0500-0000-5ee052930000\\\"\",\r\n \"_ts\": 1591759507\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"65006048-0000-0500-0000-602739300000\\\"\",\r\n \"_ts\": 1613183280\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8639f46-5d9f-4ad3-8b47-3d55c2494166" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2571,50 +2499,47 @@ "11964" ], "x-ms-request-id": [ - "6d9adcbe-7e73-422a-bdcf-5e2539d17666" + "bd4641cb-5501-4fdd-8a0a-341f7f998784" ], "x-ms-correlation-request-id": [ - "6d9adcbe-7e73-422a-bdcf-5e2539d17666" + "bd4641cb-5501-4fdd-8a0a-341f7f998784" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032845Z:6d9adcbe-7e73-422a-bdcf-5e2539d17666" + "WESTUS2:20210213T023138Z:bd4641cb-5501-4fdd-8a0a-341f7f998784" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:45 GMT" + "Sat, 13 Feb 2021 02:31:38 GMT" ], "Content-Length": [ "581" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b00626d-0000-0500-0000-5ee053520000\\\"\",\r\n \"_ts\": 1591759698\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"6500fa52-0000-0500-0000-602739f00000\\\"\",\r\n \"_ts\": 1613183472\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd44c010-6fe4-494a-8967-586df11db0c4" + "07e1bfd0-c590-453b-9781-764786e3c726" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2637,44 +2562,44 @@ "11951" ], "x-ms-request-id": [ - "91406fbc-c219-485c-b3c3-ae5787e4216d" + "49fa6d84-c90f-48fc-bee5-4a73c0af725d" ], "x-ms-correlation-request-id": [ - "91406fbc-c219-485c-b3c3-ae5787e4216d" + "49fa6d84-c90f-48fc-bee5-4a73c0af725d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033051Z:91406fbc-c219-485c-b3c3-ae5787e4216d" + "WESTUS2:20210213T023345Z:49fa6d84-c90f-48fc-bee5-4a73c0af725d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:50 GMT" + "Sat, 13 Feb 2021 02:33:44 GMT" ], "Content-Length": [ "581" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b00626d-0000-0500-0000-5ee053520000\\\"\",\r\n \"_ts\": 1591759698\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"6500fa52-0000-0500-0000-602739f00000\\\"\",\r\n \"_ts\": 1613183472\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "07e1bfd0-c590-453b-9781-764786e3c726" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2697,50 +2622,47 @@ "11949" ], "x-ms-request-id": [ - "577d5cf2-004d-4abb-be7d-7b72ae404077" + "27966d27-ca09-4642-ba34-14d22f1ff64e" ], "x-ms-correlation-request-id": [ - "577d5cf2-004d-4abb-be7d-7b72ae404077" + "27966d27-ca09-4642-ba34-14d22f1ff64e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033122Z:577d5cf2-004d-4abb-be7d-7b72ae404077" + "WESTUS2:20210213T023417Z:27966d27-ca09-4642-ba34-14d22f1ff64e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:21 GMT" + "Sat, 13 Feb 2021 02:34:16 GMT" ], "Content-Length": [ "668" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b001f6e-0000-0500-0000-5ee053ef0000\\\"\",\r\n \"_ts\": 1591759855\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"65005a5c-0000-0500-0000-60273a8e0000\\\"\",\r\n \"_ts\": 1613183630\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "6bc550ac-77e2-43b8-90ae-207bb8b3212b" + "28f2c54b-0fe7-42e9-b66f-195b02f107bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2757,13 +2679,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/60a5dedb-0457-4f9a-9fc1-b15a436f9a30?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/e68cf525-2f55-4d96-92c1-b98f166eb98a?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60a5dedb-0457-4f9a-9fc1-b15a436f9a30?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e68cf525-2f55-4d96-92c1-b98f166eb98a?api-version=2021-01-15" ], "x-ms-request-id": [ - "60a5dedb-0457-4f9a-9fc1-b15a436f9a30" + "e68cf525-2f55-4d96-92c1-b98f166eb98a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2778,47 +2700,44 @@ "1196" ], "x-ms-correlation-request-id": [ - "780b9db0-d756-49bb-9248-a2b654dfa604" + "e7737e5e-eb46-4df4-9870-58bc0bb642b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032503Z:780b9db0-d756-49bb-9248-a2b654dfa604" + "WESTUS2:20210213T022756Z:e7737e5e-eb46-4df4-9870-58bc0bb642b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:03 GMT" + "Sat, 13 Feb 2021 02:27:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "72dce5c4-4822-4a72-bf73-a370d4a6e18f" + "d8639f46-5d9f-4ad3-8b47-3d55c2494166" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,13 +2754,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/dbf577ad-b8db-4f1e-91bd-418bb7100538?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/e8452e37-4b97-4f76-a24b-38fd95b9c82b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dbf577ad-b8db-4f1e-91bd-418bb7100538?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e8452e37-4b97-4f76-a24b-38fd95b9c82b?api-version=2021-01-15" ], "x-ms-request-id": [ - "dbf577ad-b8db-4f1e-91bd-418bb7100538" + "e8452e37-4b97-4f76-a24b-38fd95b9c82b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2856,47 +2775,44 @@ "1190" ], "x-ms-correlation-request-id": [ - "e94d73a8-aba5-4d9d-86c4-8951197d42cb" + "c11a6501-966d-498d-bbaf-94ff8c9af713" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032814Z:e94d73a8-aba5-4d9d-86c4-8951197d42cb" + "WESTUS2:20210213T023108Z:c11a6501-966d-498d-bbaf-94ff8c9af713" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:13 GMT" + "Sat, 13 Feb 2021 02:31:07 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "825b9c19-a7ab-485d-8b1e-57fe5096d52a" + "07e1bfd0-c590-453b-9781-764786e3c726" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2913,13 +2829,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/f9b4ed3f-4672-4e94-9d78-30430288aa84?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/35edac87-170f-43f2-b6dd-d2eb11194dcd?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f9b4ed3f-4672-4e94-9d78-30430288aa84?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/35edac87-170f-43f2-b6dd-d2eb11194dcd?api-version=2021-01-15" ], "x-ms-request-id": [ - "f9b4ed3f-4672-4e94-9d78-30430288aa84" + "35edac87-170f-43f2-b6dd-d2eb11194dcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2934,41 +2850,41 @@ "1185" ], "x-ms-correlation-request-id": [ - "197cc775-6501-40b7-b812-3933e2d10ed3" + "2e278ee5-188b-45a7-8004-64fd9bda3071" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033051Z:197cc775-6501-40b7-b812-3933e2d10ed3" + "WESTUS2:20210213T023346Z:2e278ee5-188b-45a7-8004-64fd9bda3071" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:51 GMT" + "Sat, 13 Feb 2021 02:33:45 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60a5dedb-0457-4f9a-9fc1-b15a436f9a30?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82MGE1ZGVkYi0wNDU3LTRmOWEtOWZjMS1iMTVhNDM2ZjlhMzA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e68cf525-2f55-4d96-92c1-b98f166eb98a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9lNjhjZjUyNS0yZjU1LTRkOTYtOTJjMS1iOThmMTY2ZWI5OGE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "28f2c54b-0fe7-42e9-b66f-195b02f107bc" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2991,50 +2907,47 @@ "11988" ], "x-ms-request-id": [ - "cb05bf66-0eeb-45a2-8745-92d40129c04a" + "01a3ab61-5250-46a0-b8ca-156e66d48d5e" ], "x-ms-correlation-request-id": [ - "cb05bf66-0eeb-45a2-8745-92d40129c04a" + "01a3ab61-5250-46a0-b8ca-156e66d48d5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032534Z:cb05bf66-0eeb-45a2-8745-92d40129c04a" + "WESTUS2:20210213T022826Z:01a3ab61-5250-46a0-b8ca-156e66d48d5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:33 GMT" + "Sat, 13 Feb 2021 02:28:25 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60a5dedb-0457-4f9a-9fc1-b15a436f9a30?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8012b7c2-4390-444e-a75a-d16e48937277" + "f29f7225-8866-485d-b009-d85415e54b19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3057,44 +2970,44 @@ "11986" ], "x-ms-request-id": [ - "8fdd05ec-032a-4637-a1f0-47ebc1edd64f" + "b0b3fa64-6ec7-4108-8664-3198d5bc53a4" ], "x-ms-correlation-request-id": [ - "8fdd05ec-032a-4637-a1f0-47ebc1edd64f" + "b0b3fa64-6ec7-4108-8664-3198d5bc53a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032535Z:8fdd05ec-032a-4637-a1f0-47ebc1edd64f" + "WESTUS2:20210213T022827Z:b0b3fa64-6ec7-4108-8664-3198d5bc53a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:34 GMT" + "Sat, 13 Feb 2021 02:28:26 GMT" ], "Content-Length": [ - "1241" + "1304" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 8012b7c2-4390-444e-a75a-d16e48937277, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328220059625s/, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:25:34.9760035Z, RequestEndTime: 2020-06-10T03:25:34.9837240Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:25:34.9837240Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14401/apps/40790e35-e390-4e4f-91a1-18885677940a/services/085fc05b-b318-4185-8bb7-0eed89c53626/partitions/01d7f106-2f6f-4214-99f1-0af49312822b/replicas/132362328220059625s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: f29f7225-8866-485d-b009-d85415e54b19, Request URI: /apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522113744655s/, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:28:27.4652563Z, RequestEndTime: 2021-02-13T02:28:27.4652563Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:28:27.4652563Z, StoreResult: StorePhysicalAddress: rntbd://sn4prdapp19-docdb-2.documents.azure.com:14447/apps/40790e35-e390-4e4f-91a1-18885677940a/services/7697a256-3cd9-4a80-af35-5fa65e2568ad/partitions/fdfd6683-1e04-4b5f-80ad-e0b960cc481e/replicas/132576522113744655s/, LSN: 3, GlobalCommittedLsn: 3, PartitionKeyRangeId: 0, IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#3, UsingLocalLSN: True, TransportException: null, ResourceType: Trigger, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/container1/triggers/trigger, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f29f7225-8866-485d-b009-d85415e54b19" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3117,50 +3030,47 @@ "11984" ], "x-ms-request-id": [ - "ac478219-164e-4862-85d1-dbc6058a3f03" + "963d5ba9-ddcd-423e-9bff-44d967c00813" ], "x-ms-correlation-request-id": [ - "ac478219-164e-4862-85d1-dbc6058a3f03" + "963d5ba9-ddcd-423e-9bff-44d967c00813" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032606Z:ac478219-164e-4862-85d1-dbc6058a3f03" + "WESTUS2:20210213T022859Z:963d5ba9-ddcd-423e-9bff-44d967c00813" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:06 GMT" + "Sat, 13 Feb 2021 02:28:59 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00bc6c-0000-0500-0000-5ee052b30000\\\"\",\r\n \"_ts\": 1591759539\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"6500fd49-0000-0500-0000-6027394f0000\\\"\",\r\n \"_ts\": 1613183311\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "482a091d-5f45-42fc-b294-24b380dbe857" + "0966b828-ae30-4767-b739-6e4e9a83501f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3183,50 +3093,47 @@ "11979" ], "x-ms-request-id": [ - "a238a134-4979-4b56-8be5-b9fa9097198d" + "b8a8ffab-a1f6-4c14-854b-b6f65df31d4d" ], "x-ms-correlation-request-id": [ - "a238a134-4979-4b56-8be5-b9fa9097198d" + "b8a8ffab-a1f6-4c14-854b-b6f65df31d4d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032607Z:a238a134-4979-4b56-8be5-b9fa9097198d" + "WESTUS2:20210213T022900Z:b8a8ffab-a1f6-4c14-854b-b6f65df31d4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:07 GMT" + "Sat, 13 Feb 2021 02:29:00 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00bc6c-0000-0500-0000-5ee052b30000\\\"\",\r\n \"_ts\": 1591759539\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"6500fd49-0000-0500-0000-6027394f0000\\\"\",\r\n \"_ts\": 1613183311\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58a06823-0e62-4921-9619-911e254a987f" + "92d7863b-a021-48e9-b65a-e24d168e7bb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3249,44 +3156,44 @@ "11969" ], "x-ms-request-id": [ - "6fe8e353-6ba1-4c22-ad67-a892fd8d7674" + "4e6dcf77-e172-4b8e-b3e3-7ce53047d2a8" ], "x-ms-correlation-request-id": [ - "6fe8e353-6ba1-4c22-ad67-a892fd8d7674" + "4e6dcf77-e172-4b8e-b3e3-7ce53047d2a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032742Z:6fe8e353-6ba1-4c22-ad67-a892fd8d7674" + "WESTUS2:20210213T023035Z:4e6dcf77-e172-4b8e-b3e3-7ce53047d2a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:42 GMT" + "Sat, 13 Feb 2021 02:30:35 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00bc6c-0000-0500-0000-5ee052b30000\\\"\",\r\n \"_ts\": 1591759539\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"6500fd49-0000-0500-0000-6027394f0000\\\"\",\r\n \"_ts\": 1613183311\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "92d7863b-a021-48e9-b65a-e24d168e7bb9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3309,50 +3216,47 @@ "11967" ], "x-ms-request-id": [ - "cb3d861f-e468-492a-b2a7-a6e2f0bb854d" + "1249194b-ff89-4308-8251-b05b5eca31a6" ], "x-ms-correlation-request-id": [ - "cb3d861f-e468-492a-b2a7-a6e2f0bb854d" + "1249194b-ff89-4308-8251-b05b5eca31a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032813Z:cb3d861f-e468-492a-b2a7-a6e2f0bb854d" + "WESTUS2:20210213T023107Z:1249194b-ff89-4308-8251-b05b5eca31a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:12 GMT" + "Sat, 13 Feb 2021 02:31:06 GMT" ], "Content-Length": [ "618" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00436d-0000-0500-0000-5ee053320000\\\"\",\r\n \"_ts\": 1591759666\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"65001a51-0000-0500-0000-602739d00000\\\"\",\r\n \"_ts\": 1613183440\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65f07ad0-bb1f-4dbe-9c10-64bce0fac7f6" + "7a1523e1-2e47-4911-bbda-c6221f513656" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3375,44 +3279,44 @@ "11954" ], "x-ms-request-id": [ - "2af8a734-969b-4718-aa70-1eb211200b1d" + "39fba24d-32db-4678-8fb2-10b03b036ec6" ], "x-ms-correlation-request-id": [ - "2af8a734-969b-4718-aa70-1eb211200b1d" + "39fba24d-32db-4678-8fb2-10b03b036ec6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033019Z:2af8a734-969b-4718-aa70-1eb211200b1d" + "WESTUS2:20210213T023314Z:39fba24d-32db-4678-8fb2-10b03b036ec6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:19 GMT" + "Sat, 13 Feb 2021 02:33:13 GMT" ], "Content-Length": [ "618" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00436d-0000-0500-0000-5ee053320000\\\"\",\r\n \"_ts\": 1591759666\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"65001a51-0000-0500-0000-602739d00000\\\"\",\r\n \"_ts\": 1613183440\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7a1523e1-2e47-4911-bbda-c6221f513656" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3435,50 +3339,47 @@ "11952" ], "x-ms-request-id": [ - "cdc191bf-9c53-4278-bb84-0025e33de9a2" + "8cfeb005-2291-4427-8176-a6a0c32c0fa0" ], "x-ms-correlation-request-id": [ - "cdc191bf-9c53-4278-bb84-0025e33de9a2" + "8cfeb005-2291-4427-8176-a6a0c32c0fa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033051Z:cdc191bf-9c53-4278-bb84-0025e33de9a2" + "WESTUS2:20210213T023345Z:8cfeb005-2291-4427-8176-a6a0c32c0fa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:50 GMT" + "Sat, 13 Feb 2021 02:33:44 GMT" ], "Content-Length": [ "705" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00f56d-0000-0500-0000-5ee053cf0000\\\"\",\r\n \"_ts\": 1591759823\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"6500825a-0000-0500-0000-60273a6e0000\\\"\",\r\n \"_ts\": 1613183598\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "a23ae466-52e7-4d11-8f6b-f7c78c8957e0" + "f29f7225-8866-485d-b009-d85415e54b19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3495,13 +3396,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/6fba8b49-7d27-4671-a7cc-4f1a0f2fc679?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/ed4a2aec-e96c-4f51-8ccd-287c299263dd?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6fba8b49-7d27-4671-a7cc-4f1a0f2fc679?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ed4a2aec-e96c-4f51-8ccd-287c299263dd?api-version=2021-01-15" ], "x-ms-request-id": [ - "6fba8b49-7d27-4671-a7cc-4f1a0f2fc679" + "ed4a2aec-e96c-4f51-8ccd-287c299263dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3516,47 +3417,44 @@ "1195" ], "x-ms-correlation-request-id": [ - "2553083e-370a-43e1-8530-1ca66895c235" + "36727773-e506-43b9-bd8e-689074a1fede" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032535Z:2553083e-370a-43e1-8530-1ca66895c235" + "WESTUS2:20210213T022828Z:36727773-e506-43b9-bd8e-689074a1fede" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:25:34 GMT" + "Sat, 13 Feb 2021 02:28:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "023e5a97-5c16-497a-a494-ea47de464382" + "92d7863b-a021-48e9-b65a-e24d168e7bb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3573,13 +3471,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/75e56ee3-545a-47e6-afda-56f59dfa9029?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/f1a633f0-a30e-4631-a89a-273167978667?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75e56ee3-545a-47e6-afda-56f59dfa9029?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f1a633f0-a30e-4631-a89a-273167978667?api-version=2021-01-15" ], "x-ms-request-id": [ - "75e56ee3-545a-47e6-afda-56f59dfa9029" + "f1a633f0-a30e-4631-a89a-273167978667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,47 +3492,44 @@ "1191" ], "x-ms-correlation-request-id": [ - "4e23098e-f40a-4dad-aba6-2d57be06155d" + "9b49b679-b947-4966-9d41-1215043012cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032742Z:4e23098e-f40a-4dad-aba6-2d57be06155d" + "WESTUS2:20210213T023036Z:9b49b679-b947-4966-9d41-1215043012cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:42 GMT" + "Sat, 13 Feb 2021 02:30:36 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "1b6cc131-88df-474f-9116-b25f05d83936" + "7a1523e1-2e47-4911-bbda-c6221f513656" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3651,13 +3546,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/590df95c-9d2c-464a-bed2-95727e630649?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/c6231743-af8b-4240-b5c3-e1d398fcb381?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/590df95c-9d2c-464a-bed2-95727e630649?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c6231743-af8b-4240-b5c3-e1d398fcb381?api-version=2021-01-15" ], "x-ms-request-id": [ - "590df95c-9d2c-464a-bed2-95727e630649" + "c6231743-af8b-4240-b5c3-e1d398fcb381" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3672,41 +3567,41 @@ "1186" ], "x-ms-correlation-request-id": [ - "eb4e58bc-75a9-4859-a9a7-d057d5f4851a" + "e64964f4-1f8c-4d71-8db8-d223068795bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033020Z:eb4e58bc-75a9-4859-a9a7-d057d5f4851a" + "WESTUS2:20210213T023314Z:e64964f4-1f8c-4d71-8db8-d223068795bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:20 GMT" + "Sat, 13 Feb 2021 02:33:14 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6fba8b49-7d27-4671-a7cc-4f1a0f2fc679?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82ZmJhOGI0OS03ZDI3LTQ2NzEtYTdjYy00ZjFhMGYyZmM2Nzk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/ed4a2aec-e96c-4f51-8ccd-287c299263dd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9lZDRhMmFlYy1lOTZjLTRmNTEtOGNjZC0yODdjMjk5MjYzZGQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f29f7225-8866-485d-b009-d85415e54b19" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3729,44 +3624,44 @@ "11985" ], "x-ms-request-id": [ - "5b69d4b4-4fd8-4cf9-85fe-ceacd7e9ad0d" + "a80bce5d-005e-47a5-b5dc-304b674911e4" ], "x-ms-correlation-request-id": [ - "5b69d4b4-4fd8-4cf9-85fe-ceacd7e9ad0d" + "a80bce5d-005e-47a5-b5dc-304b674911e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032606Z:5b69d4b4-4fd8-4cf9-85fe-ceacd7e9ad0d" + "WESTUS2:20210213T022858Z:a80bce5d-005e-47a5-b5dc-304b674911e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:05 GMT" + "Sat, 13 Feb 2021 02:28:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6fba8b49-7d27-4671-a7cc-4f1a0f2fc679?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4d0293c8-0551-40c1-9c62-9cedaf1cf712?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80ZDAyOTNjOC0wNTUxLTQwYzEtOWM2Mi05Y2VkYWYxY2Y3MTI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b1d7f646-7b90-4f88-afdc-d2f91709f087?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iMWQ3ZjY0Ni03YjkwLTRmODgtYWZkYy1kMmY5MTcwOWYwODc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "66932e06-cb84-4673-a307-7e4f57f859c6" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3789,44 +3684,44 @@ "11977" ], "x-ms-request-id": [ - "408b2f1b-5301-46d0-974c-6f2928a0306e" + "08ebdb81-fd74-42b6-bc04-7bbf4e0f301e" ], "x-ms-correlation-request-id": [ - "408b2f1b-5301-46d0-974c-6f2928a0306e" + "08ebdb81-fd74-42b6-bc04-7bbf4e0f301e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032639Z:408b2f1b-5301-46d0-974c-6f2928a0306e" + "WESTUS2:20210213T022931Z:08ebdb81-fd74-42b6-bc04-7bbf4e0f301e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:26:38 GMT" + "Sat, 13 Feb 2021 02:29:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4d0293c8-0551-40c1-9c62-9cedaf1cf712?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/524b4527-7d9d-43da-aca0-e8d63722fd52?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81MjRiNDUyNy03ZDlkLTQzZGEtYWNhMC1lOGQ2MzcyMmZkNTI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/addd570c-d0cc-436a-bb88-962884a4943b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hZGRkNTcwYy1kMGNjLTQzNmEtYmI4OC05NjI4ODRhNDk0M2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a680cdcb-f517-4831-9cd8-0c639db2cf01" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3849,44 +3744,44 @@ "11974" ], "x-ms-request-id": [ - "62d6acf2-d39b-4095-b8b9-742e8fc7ac67" + "eded5681-66d5-4575-95fa-f6b6f0fff085" ], "x-ms-correlation-request-id": [ - "62d6acf2-d39b-4095-b8b9-742e8fc7ac67" + "eded5681-66d5-4575-95fa-f6b6f0fff085" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032710Z:62d6acf2-d39b-4095-b8b9-742e8fc7ac67" + "WESTUS2:20210213T023003Z:eded5681-66d5-4575-95fa-f6b6f0fff085" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:09 GMT" + "Sat, 13 Feb 2021 02:30:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/524b4527-7d9d-43da-aca0-e8d63722fd52?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/aac7d683-6356-4441-89e1-e00220bc8a11?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hYWM3ZDY4My02MzU2LTQ0NDEtODllMS1lMDAyMjBiYzhhMTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8d303578-09c1-42a2-b398-8014dc19d8f7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84ZDMwMzU3OC0wOWMxLTQyYTItYjM5OC04MDE0ZGMxOWQ4Zjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d05b5dd6-d6cd-460d-9762-63f1e0cce464" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3909,44 +3804,44 @@ "11971" ], "x-ms-request-id": [ - "589623ea-9835-4177-a0d0-2510c1cbb2c8" + "e8f3f873-a1a6-48b1-a867-34ff1b330d8a" ], "x-ms-correlation-request-id": [ - "589623ea-9835-4177-a0d0-2510c1cbb2c8" + "e8f3f873-a1a6-48b1-a867-34ff1b330d8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032741Z:589623ea-9835-4177-a0d0-2510c1cbb2c8" + "WESTUS2:20210213T023034Z:e8f3f873-a1a6-48b1-a867-34ff1b330d8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:27:41 GMT" + "Sat, 13 Feb 2021 02:30:34 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/aac7d683-6356-4441-89e1-e00220bc8a11?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75e56ee3-545a-47e6-afda-56f59dfa9029?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83NWU1NmVlMy01NDVhLTQ3ZTYtYWZkYS01NmY1OWRmYTkwMjk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f1a633f0-a30e-4631-a89a-273167978667?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mMWE2MzNmMC1hMzBlLTQ2MzEtYTg5YS0yNzMxNjc5Nzg2Njc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "92d7863b-a021-48e9-b65a-e24d168e7bb9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3969,44 +3864,44 @@ "11968" ], "x-ms-request-id": [ - "7d81a146-2fed-44d1-858c-dee7a59e7775" + "b100e3f2-1ecb-4edc-867c-6c24939640ad" ], "x-ms-correlation-request-id": [ - "7d81a146-2fed-44d1-858c-dee7a59e7775" + "b100e3f2-1ecb-4edc-867c-6c24939640ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032813Z:7d81a146-2fed-44d1-858c-dee7a59e7775" + "WESTUS2:20210213T023106Z:b100e3f2-1ecb-4edc-867c-6c24939640ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:12 GMT" + "Sat, 13 Feb 2021 02:31:06 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/75e56ee3-545a-47e6-afda-56f59dfa9029?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dbf577ad-b8db-4f1e-91bd-418bb7100538?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kYmY1NzdhZC1iOGRiLTRmMWUtOTFiZC00MThiYjcxMDA1Mzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/e8452e37-4b97-4f76-a24b-38fd95b9c82b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9lODQ1MmUzNy00Yjk3LTRmNzYtYTI0Yi0zOGZkOTViOWM4MmI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d8639f46-5d9f-4ad3-8b47-3d55c2494166" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4029,44 +3924,44 @@ "11965" ], "x-ms-request-id": [ - "204016f4-caf2-478f-b560-bce121113e9f" + "5c5e8b5f-e59b-4d96-b697-1c4eafa57f13" ], "x-ms-correlation-request-id": [ - "204016f4-caf2-478f-b560-bce121113e9f" + "5c5e8b5f-e59b-4d96-b697-1c4eafa57f13" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032844Z:204016f4-caf2-478f-b560-bce121113e9f" + "WESTUS2:20210213T023138Z:5c5e8b5f-e59b-4d96-b697-1c4eafa57f13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:28:44 GMT" + "Sat, 13 Feb 2021 02:31:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/dbf577ad-b8db-4f1e-91bd-418bb7100538?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a3d62c00-bd1f-4fdc-8d21-310163a3c645?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hM2Q2MmMwMC1iZDFmLTRmZGMtOGQyMS0zMTAxNjNhM2M2NDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/5ddc0f4c-0154-4ce9-b5bc-020657e8edc0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81ZGRjMGY0Yy0wMTU0LTRjZTktYjViYy0wMjA2NTdlOGVkYzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c21dcda8-9b8e-4564-9ce4-64ecda397db8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4089,44 +3984,44 @@ "11962" ], "x-ms-request-id": [ - "231c96c5-1ba1-4f19-99e3-288e24c3e75e" + "05d77cb9-d9a9-4fac-b3e6-b62f10269d1a" ], "x-ms-correlation-request-id": [ - "231c96c5-1ba1-4f19-99e3-288e24c3e75e" + "05d77cb9-d9a9-4fac-b3e6-b62f10269d1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032916Z:231c96c5-1ba1-4f19-99e3-288e24c3e75e" + "WESTUS2:20210213T023210Z:05d77cb9-d9a9-4fac-b3e6-b62f10269d1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:15 GMT" + "Sat, 13 Feb 2021 02:32:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a3d62c00-bd1f-4fdc-8d21-310163a3c645?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/82325f69-5c8b-441e-99ed-52e0258f5bb8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84MjMyNWY2OS01YzhiLTQ0MWUtOTllZC01MmUwMjU4ZjViYjg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/863277c9-2971-498d-a11e-fa0631994348?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84NjMyNzdjOS0yOTcxLTQ5OGQtYTExZS1mYTA2MzE5OTQzNDg/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "36872c0d-d0c2-44f2-9d26-1916eba028f7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4149,44 +4044,44 @@ "11959" ], "x-ms-request-id": [ - "16d97971-66ca-4788-a624-1b5f220e22ce" + "7ed45177-5e45-4473-b9ef-fbab125141e5" ], "x-ms-correlation-request-id": [ - "16d97971-66ca-4788-a624-1b5f220e22ce" + "7ed45177-5e45-4473-b9ef-fbab125141e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T032947Z:16d97971-66ca-4788-a624-1b5f220e22ce" + "WESTUS2:20210213T023241Z:7ed45177-5e45-4473-b9ef-fbab125141e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:29:47 GMT" + "Sat, 13 Feb 2021 02:32:40 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/82325f69-5c8b-441e-99ed-52e0258f5bb8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a08e4dcf-c544-4bce-a84e-786af1cf12cc?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hMDhlNGRjZi1jNTQ0LTRiY2UtYTg0ZS03ODZhZjFjZjEyY2M/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c693be8b-c9ec-41be-94f9-72de0440ee87?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jNjkzYmU4Yi1jOWVjLTQxYmUtOTRmOS03MmRlMDQ0MGVlODc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "769ff285-6b6f-424c-b45a-72f572b29f3f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4209,44 +4104,44 @@ "11956" ], "x-ms-request-id": [ - "fd155b10-1020-4956-b070-53a0f0e876b7" + "bd560908-75d3-43b9-a8ab-55857c8aa6d1" ], "x-ms-correlation-request-id": [ - "fd155b10-1020-4956-b070-53a0f0e876b7" + "bd560908-75d3-43b9-a8ab-55857c8aa6d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033019Z:fd155b10-1020-4956-b070-53a0f0e876b7" + "WESTUS2:20210213T023313Z:bd560908-75d3-43b9-a8ab-55857c8aa6d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:19 GMT" + "Sat, 13 Feb 2021 02:33:13 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a08e4dcf-c544-4bce-a84e-786af1cf12cc?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/590df95c-9d2c-464a-bed2-95727e630649?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81OTBkZjk1Yy05ZDJjLTQ2NGEtYmVkMi05NTcyN2U2MzA2NDk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c6231743-af8b-4240-b5c3-e1d398fcb381?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jNjIzMTc0My1hZjhiLTQyNDAtYjVjMy1lMWQzOThmY2IzODE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7a1523e1-2e47-4911-bbda-c6221f513656" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4269,44 +4164,44 @@ "11953" ], "x-ms-request-id": [ - "e1084ddd-735a-48fd-8694-d0bbbf476069" + "dfb16d68-4d51-4a1e-9e47-25d18b4a9ac3" ], "x-ms-correlation-request-id": [ - "e1084ddd-735a-48fd-8694-d0bbbf476069" + "dfb16d68-4d51-4a1e-9e47-25d18b4a9ac3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033050Z:e1084ddd-735a-48fd-8694-d0bbbf476069" + "WESTUS2:20210213T023344Z:dfb16d68-4d51-4a1e-9e47-25d18b4a9ac3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:30:50 GMT" + "Sat, 13 Feb 2021 02:33:44 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/590df95c-9d2c-464a-bed2-95727e630649?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f9b4ed3f-4672-4e94-9d78-30430288aa84?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mOWI0ZWQzZi00NjcyLTRlOTQtOWQ3OC0zMDQzMDI4OGFhODQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/35edac87-170f-43f2-b6dd-d2eb11194dcd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zNWVkYWM4Ny0xNzBmLTQzZjItYjZkZC1kMmViMTExOTRkY2Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "07e1bfd0-c590-453b-9781-764786e3c726" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4329,50 +4224,47 @@ "11950" ], "x-ms-request-id": [ - "f6d760f9-6614-47d9-bea1-d219fb9eca20" + "2888e318-2c9a-49b2-90bc-87f578253d50" ], "x-ms-correlation-request-id": [ - "f6d760f9-6614-47d9-bea1-d219fb9eca20" + "2888e318-2c9a-49b2-90bc-87f578253d50" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033121Z:f6d760f9-6614-47d9-bea1-d219fb9eca20" + "WESTUS2:20210213T023416Z:2888e318-2c9a-49b2-90bc-87f578253d50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:21 GMT" + "Sat, 13 Feb 2021 02:34:16 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f9b4ed3f-4672-4e94-9d78-30430288aa84?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54ac4981-a520-439e-9188-055e03e52627" + "eab896b3-7dea-440e-9e37-8da4ce1a6f23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4395,50 +4287,47 @@ "11948" ], "x-ms-request-id": [ - "668ff1d6-881f-4b6e-8531-14f78ab16b0a" + "ee65e090-b6ec-4dbb-811a-7d171510a72d" ], "x-ms-correlation-request-id": [ - "668ff1d6-881f-4b6e-8531-14f78ab16b0a" + "ee65e090-b6ec-4dbb-811a-7d171510a72d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033122Z:668ff1d6-881f-4b6e-8531-14f78ab16b0a" + "WESTUS2:20210213T023417Z:ee65e090-b6ec-4dbb-811a-7d171510a72d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:21 GMT" + "Sat, 13 Feb 2021 02:34:17 GMT" ], "Content-Length": [ - "1389" + "1420" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8=\",\r\n \"_ts\": 1591759444,\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/\",\r\n \"_etag\": \"\\\"0000841e-0000-0500-0000-5ee052540000\\\"\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"4rd1AJJH3LQ=\",\r\n \"_ts\": 1613183217,\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/\",\r\n \"_etag\": \"\\\"00007728-0000-0500-0000-602738f10000\\\"\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e545daf4-c2de-4021-9c62-6ec23234ad2d" + "b6e39963-2648-4e6a-ad8c-43e7ecf12916" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4461,50 +4350,47 @@ "11947" ], "x-ms-request-id": [ - "e4c15f56-5237-4bd8-805a-478a072fd4b2" + "2d09d81b-09fb-4f63-95cf-19013e3c8604" ], "x-ms-correlation-request-id": [ - "e4c15f56-5237-4bd8-805a-478a072fd4b2" + "2d09d81b-09fb-4f63-95cf-19013e3c8604" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033122Z:e4c15f56-5237-4bd8-805a-478a072fd4b2" + "WESTUS2:20210213T023417Z:2d09d81b-09fb-4f63-95cf-19013e3c8604" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:22 GMT" + "Sat, 13 Feb 2021 02:34:17 GMT" ], "Content-Length": [ "3098" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName6\",\r\n \"_rid\": \"F7kzAA==\",\r\n \"_self\": \"dbs/F7kzAA==/\",\r\n \"_etag\": \"\\\"0000b425-0000-0500-0000-5eda91480000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382344\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AA==\",\r\n \"_self\": \"dbs/3jY9AA==/\",\r\n \"_etag\": \"\\\"0000821e-0000-0500-0000-5ee052340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591759412\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db3\",\r\n \"_rid\": \"sOBHAA==\",\r\n \"_self\": \"dbs/sOBHAA==/\",\r\n \"_etag\": \"\\\"0000b703-0000-0500-0000-5eb210310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1588727857\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"jrVRAA==\",\r\n \"_self\": \"dbs/jrVRAA==/\",\r\n \"_etag\": \"\\\"0000df6c-0000-0500-0000-5e95fb340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1586887476\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName5\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName5\",\r\n \"_rid\": \"wC1ZAA==\",\r\n \"_self\": \"dbs/wC1ZAA==/\",\r\n \"_etag\": \"\\\"0000b025-0000-0500-0000-5eda90ab0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382187\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db670\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db670\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db670\",\r\n \"_rid\": \"nctwAA==\",\r\n \"_self\": \"dbs/nctwAA==/\",\r\n \"_etag\": \"\\\"0000ff39-0000-0500-0000-5ee017c30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744451\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db67\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db67\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db67\",\r\n \"_rid\": \"yFt8AA==\",\r\n \"_self\": \"dbs/yFt8AA==/\",\r\n \"_etag\": \"\\\"0000fb39-0000-0500-0000-5ee017360000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744310\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName6\",\r\n \"_rid\": \"F7kzAA==\",\r\n \"_self\": \"dbs/F7kzAA==/\",\r\n \"_etag\": \"\\\"0000b425-0000-0500-0000-5eda91480000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382344\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db3\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db3\",\r\n \"_rid\": \"sOBHAA==\",\r\n \"_self\": \"dbs/sOBHAA==/\",\r\n \"_etag\": \"\\\"0000b703-0000-0500-0000-5eb210310000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1588727857\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db1\",\r\n \"_rid\": \"jrVRAA==\",\r\n \"_self\": \"dbs/jrVRAA==/\",\r\n \"_etag\": \"\\\"0000df6c-0000-0500-0000-5e95fb340000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1586887476\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName5\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"dbName5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName5\",\r\n \"_rid\": \"wC1ZAA==\",\r\n \"_self\": \"dbs/wC1ZAA==/\",\r\n \"_etag\": \"\\\"0000b025-0000-0500-0000-5eda90ab0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591382187\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db670\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db670\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db670\",\r\n \"_rid\": \"nctwAA==\",\r\n \"_self\": \"dbs/nctwAA==/\",\r\n \"_etag\": \"\\\"0000ff39-0000-0500-0000-5ee017c30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744451\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AA==\",\r\n \"_self\": \"dbs/4rd1AA==/\",\r\n \"_etag\": \"\\\"00007428-0000-0500-0000-602738d00000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613183184\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/db67\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"db67\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"db67\",\r\n \"_rid\": \"yFt8AA==\",\r\n \"_self\": \"dbs/yFt8AA==/\",\r\n \"_etag\": \"\\\"0000fb39-0000-0500-0000-5ee017360000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591744310\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "220de5b3-3597-41a7-89d9-f41fbbe8cd35" + "6ed24285-03b0-48cc-831d-4fe4fae336bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4527,50 +4413,47 @@ "11946" ], "x-ms-request-id": [ - "1d2719e1-ac0a-4c68-9a49-d761fbb44ecc" + "d659daa0-29c5-4c4f-996a-963241125e46" ], "x-ms-correlation-request-id": [ - "1d2719e1-ac0a-4c68-9a49-d761fbb44ecc" + "d659daa0-29c5-4c4f-996a-963241125e46" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033123Z:1d2719e1-ac0a-4c68-9a49-d761fbb44ecc" + "WESTUS2:20210213T023418Z:d659daa0-29c5-4c4f-996a-963241125e46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:22 GMT" + "Sat, 13 Feb 2021 02:34:17 GMT" ], "Content-Length": [ "710" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAgA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/sprocs/3jY9AIa-PP8BAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"5b00d46d-0000-0500-0000-5ee053b00000\\\"\",\r\n \"_ts\": 1591759792\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAgA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/sprocs/4rd1AJJH3LQBAAAAAAAAgA==/\",\r\n \"_etag\": \"\\\"6500a058-0000-0500-0000-60273a4e0000\\\"\",\r\n \"_ts\": 1613183566\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "549b0707-1861-48e7-acd7-c453d7c33951" + "c34813fb-c80b-47f9-86d2-d0e955148f94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4593,50 +4476,47 @@ "11945" ], "x-ms-request-id": [ - "f7c8fc93-e998-4ea6-9865-e6c633e960a8" + "bc313b04-c32d-43e5-99f7-6d22e84d5df7" ], "x-ms-correlation-request-id": [ - "f7c8fc93-e998-4ea6-9865-e6c633e960a8" + "bc313b04-c32d-43e5-99f7-6d22e84d5df7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033123Z:f7c8fc93-e998-4ea6-9865-e6c633e960a8" + "WESTUS2:20210213T023418Z:bc313b04-c32d-43e5-99f7-6d22e84d5df7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:22 GMT" + "Sat, 13 Feb 2021 02:34:17 GMT" ], "Content-Length": [ "680" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAYA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/udfs/3jY9AIa-PP8BAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"5b001f6e-0000-0500-0000-5ee053ef0000\\\"\",\r\n \"_ts\": 1591759855\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAYA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/udfs/4rd1AJJH3LQBAAAAAAAAYA==/\",\r\n \"_etag\": \"\\\"65005a5c-0000-0500-0000-60273a8e0000\\\"\",\r\n \"_ts\": 1613183630\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "370be0d3-d193-496c-a50d-bc5a71ae0d1b" + "dd30d4c1-f4a6-4844-8d0f-14efd715f123" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4659,50 +4539,47 @@ "11944" ], "x-ms-request-id": [ - "1572f43f-5362-40f4-ba09-02af4ee44e80" + "94e7a5bc-699a-4f78-8548-e50d8fd9c45b" ], "x-ms-correlation-request-id": [ - "1572f43f-5362-40f4-ba09-02af4ee44e80" + "94e7a5bc-699a-4f78-8548-e50d8fd9c45b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033123Z:1572f43f-5362-40f4-ba09-02af4ee44e80" + "WESTUS2:20210213T023418Z:94e7a5bc-699a-4f78-8548-e50d8fd9c45b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:22 GMT" + "Sat, 13 Feb 2021 02:34:18 GMT" ], "Content-Length": [ "717" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"3jY9AIa-PP8BAAAAAAAAcA==\",\r\n \"_self\": \"dbs/3jY9AA==/colls/3jY9AIa-PP8=/triggers/3jY9AIa-PP8BAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"5b00f56d-0000-0500-0000-5ee053cf0000\\\"\",\r\n \"_ts\": 1591759823\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"4rd1AJJH3LQBAAAAAAAAcA==\",\r\n \"_self\": \"dbs/4rd1AA==/colls/4rd1AJJH3LQ=/triggers/4rd1AJJH3LQBAAAAAAAAcA==/\",\r\n \"_etag\": \"\\\"6500825a-0000-0500-0000-60273a6e0000\\\"\",\r\n \"_ts\": 1613183598\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffd5f3f2-f86e-4903-b4f9-75643ab84573" + "6009cbf1-c989-42e7-96e3-b430c13557cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4713,13 +4590,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/83389fec-2a0d-441c-8af1-11d918e4a9d9?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/83389fec-2a0d-441c-8af1-11d918e4a9d9?api-version=2021-01-15" ], "x-ms-request-id": [ - "c7e35c9d-2730-49a9-9f5d-3c51a8656ca1" + "83389fec-2a0d-441c-8af1-11d918e4a9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4734,41 +4611,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "604d8619-283f-4b0e-9c63-d2b8193d13fb" + "1c48eda4-9a4d-4e4b-9b1b-f8e4d815cef3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033124Z:604d8619-283f-4b0e-9c63-d2b8193d13fb" + "WESTUS2:20210213T023419Z:1c48eda4-9a4d-4e4b-9b1b-f8e4d815cef3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:23 GMT" + "Sat, 13 Feb 2021 02:34:18 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jN2UzNWM5ZC0yNzMwLTQ5YTktOWY1ZC0zYzUxYTg2NTZjYTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/83389fec-2a0d-441c-8af1-11d918e4a9d9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84MzM4OWZlYy0yYTBkLTQ0MWMtOGFmMS0xMWQ5MThlNGE5ZDk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6009cbf1-c989-42e7-96e3-b430c13557cf" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4791,44 +4668,44 @@ "11943" ], "x-ms-request-id": [ - "a54cc3e4-9b3a-4db3-8761-12f3414210d2" + "23512ae6-dafa-418f-b292-b75228c9a69f" ], "x-ms-correlation-request-id": [ - "a54cc3e4-9b3a-4db3-8761-12f3414210d2" + "23512ae6-dafa-418f-b292-b75228c9a69f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033154Z:a54cc3e4-9b3a-4db3-8761-12f3414210d2" + "WESTUS2:20210213T023449Z:23512ae6-dafa-418f-b292-b75228c9a69f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:54 GMT" + "Sat, 13 Feb 2021 02:34:49 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlL29wZXJhdGlvblJlc3VsdHMvYzdlMzVjOWQtMjczMC00OWE5LTlmNWQtM2M1MWE4NjU2Y2ExP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/83389fec-2a0d-441c-8af1-11d918e4a9d9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3N0b3JlZFByb2NlZHVyZXMvc3RvcmVkUHJvY2VkdXJlL29wZXJhdGlvblJlc3VsdHMvODMzODlmZWMtMmEwZC00NDFjLThhZjEtMTFkOTE4ZTRhOWQ5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6009cbf1-c989-42e7-96e3-b430c13557cf" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4851,47 +4728,44 @@ "11942" ], "x-ms-request-id": [ - "99141b5e-7d12-4aaf-ae86-a0e64df8ee87" + "30573611-864e-46bf-b0a2-ffda047a47fa" ], "x-ms-correlation-request-id": [ - "99141b5e-7d12-4aaf-ae86-a0e64df8ee87" + "30573611-864e-46bf-b0a2-ffda047a47fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033154Z:99141b5e-7d12-4aaf-ae86-a0e64df8ee87" + "WESTUS2:20210213T023449Z:30573611-864e-46bf-b0a2-ffda047a47fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:54 GMT" + "Sat, 13 Feb 2021 02:34:49 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/storedProcedures/storedProcedure/operationResults/c7e35c9d-2730-49a9-9f5d-3c51a8656ca1?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3383c947-2e7d-4f7d-8f2f-dc6fc591b7f6" + "344fbe50-1a86-4cd0-b87b-a955325fe867" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4902,13 +4776,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/04111553-6bac-4246-bf80-f94f2a8caf45?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/04111553-6bac-4246-bf80-f94f2a8caf45?api-version=2021-01-15" ], "x-ms-request-id": [ - "4eead5b1-edbc-443d-a227-8972b1801b5a" + "04111553-6bac-4246-bf80-f94f2a8caf45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,41 +4797,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "a886c0aa-2b0b-44d5-a4cc-8b07541844ae" + "e7374236-ea57-4fe4-ae8b-938f70b0e244" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033155Z:a886c0aa-2b0b-44d5-a4cc-8b07541844ae" + "WESTUS2:20210213T023450Z:e7374236-ea57-4fe4-ae8b-938f70b0e244" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:31:54 GMT" + "Sat, 13 Feb 2021 02:34:50 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80ZWVhZDViMS1lZGJjLTQ0M2QtYTIyNy04OTcyYjE4MDFiNWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/04111553-6bac-4246-bf80-f94f2a8caf45?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wNDExMTU1My02YmFjLTQyNDYtYmY4MC1mOTRmMmE4Y2FmNDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "344fbe50-1a86-4cd0-b87b-a955325fe867" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4980,44 +4854,44 @@ "11999" ], "x-ms-request-id": [ - "012b7da3-a2ed-4793-a96a-f9138ead35cd" + "bd0624ec-4407-4fcc-886b-226553310767" ], "x-ms-correlation-request-id": [ - "012b7da3-a2ed-4793-a96a-f9138ead35cd" + "bd0624ec-4407-4fcc-886b-226553310767" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033225Z:012b7da3-a2ed-4793-a96a-f9138ead35cd" + "WESTUS2:20210213T023521Z:bd0624ec-4407-4fcc-886b-226553310767" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:25 GMT" + "Sat, 13 Feb 2021 02:35:20 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIvb3BlcmF0aW9uUmVzdWx0cy80ZWVhZDViMS1lZGJjLTQ0M2QtYTIyNy04OTcyYjE4MDFiNWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/04111553-6bac-4246-bf80-f94f2a8caf45?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3RyaWdnZXJzL3RyaWdnZXIvb3BlcmF0aW9uUmVzdWx0cy8wNDExMTU1My02YmFjLTQyNDYtYmY4MC1mOTRmMmE4Y2FmNDU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "344fbe50-1a86-4cd0-b87b-a955325fe867" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5040,47 +4914,44 @@ "11998" ], "x-ms-request-id": [ - "3e5e558b-3837-4af8-b996-5a336c343073" + "e361140f-aaf4-48ca-8bc1-872c27e29485" ], "x-ms-correlation-request-id": [ - "3e5e558b-3837-4af8-b996-5a336c343073" + "e361140f-aaf4-48ca-8bc1-872c27e29485" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033225Z:3e5e558b-3837-4af8-b996-5a336c343073" + "WESTUS2:20210213T023521Z:e361140f-aaf4-48ca-8bc1-872c27e29485" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:25 GMT" + "Sat, 13 Feb 2021 02:35:20 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/triggers/trigger/operationResults/4eead5b1-edbc-443d-a227-8972b1801b5a?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c4c6a79-ad99-4664-9c6f-78c8eddb6013" + "6c5e9dbe-670f-413f-9f55-eb2cc2b00349" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5091,13 +4962,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/74747660-cef5-4ae2-8f7f-dc6836595251?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/74747660-cef5-4ae2-8f7f-dc6836595251?api-version=2021-01-15" ], "x-ms-request-id": [ - "937f813b-6cf8-4984-93c9-439b74fe61b0" + "74747660-cef5-4ae2-8f7f-dc6836595251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5109,44 +4980,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "4a2ae246-42b5-49c3-bad5-3b22d4b534bf" + "9cdbb70f-6e1d-4d87-a650-463c6ae03f00" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033227Z:4a2ae246-42b5-49c3-bad5-3b22d4b534bf" + "WESTUS2:20210213T023522Z:9cdbb70f-6e1d-4d87-a650-463c6ae03f00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:26 GMT" + "Sat, 13 Feb 2021 02:35:21 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85MzdmODEzYi02Y2Y4LTQ5ODQtOTNjOS00MzliNzRmZTYxYjA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/74747660-cef5-4ae2-8f7f-dc6836595251?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83NDc0NzY2MC1jZWY1LTRhZTItOGY3Zi1kYzY4MzY1OTUyNTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6c5e9dbe-670f-413f-9f55-eb2cc2b00349" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5166,47 +5037,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "ffe6c80e-1af5-4cfa-a392-1471fb2a6093" + "b4686a08-890d-45f7-948e-e196dc889829" ], "x-ms-correlation-request-id": [ - "ffe6c80e-1af5-4cfa-a392-1471fb2a6093" + "b4686a08-890d-45f7-948e-e196dc889829" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033257Z:ffe6c80e-1af5-4cfa-a392-1471fb2a6093" + "WESTUS2:20210213T023552Z:b4686a08-890d-45f7-948e-e196dc889829" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:56 GMT" + "Sat, 13 Feb 2021 02:35:52 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZi9vcGVyYXRpb25SZXN1bHRzLzkzN2Y4MTNiLTZjZjgtNDk4NC05M2M5LTQzOWI3NGZlNjFiMD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/74747660-cef5-4ae2-8f7f-dc6836595251?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL3VzZXJEZWZpbmVkRnVuY3Rpb25zL3VkZi9vcGVyYXRpb25SZXN1bHRzLzc0NzQ3NjYwLWNlZjUtNGFlMi04ZjdmLWRjNjgzNjU5NTI1MT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6c5e9dbe-670f-413f-9f55-eb2cc2b00349" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5226,50 +5097,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "70dce62d-91fe-40a7-b086-f88d3199111b" + "e4e8cd52-7f65-4b26-ae80-2e84ca76aa23" ], "x-ms-correlation-request-id": [ - "70dce62d-91fe-40a7-b086-f88d3199111b" + "e4e8cd52-7f65-4b26-ae80-2e84ca76aa23" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033257Z:70dce62d-91fe-40a7-b086-f88d3199111b" + "WESTUS2:20210213T023553Z:e4e8cd52-7f65-4b26-ae80-2e84ca76aa23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:56 GMT" + "Sat, 13 Feb 2021 02:35:52 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/userDefinedFunctions/udf/operationResults/937f813b-6cf8-4984-93c9-439b74fe61b0?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5118f0f-eb59-48f5-9ac5-0cecbc0ecee8" + "90d81cff-d2f8-431f-9514-6a89f5ace05c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5280,13 +5148,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/45a5eae4-9168-4608-9fe7-4b3c3d5eaef6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/45a5eae4-9168-4608-9fe7-4b3c3d5eaef6?api-version=2021-01-15" ], "x-ms-request-id": [ - "d0046a9a-20a7-4e18-b671-291b7cf24557" + "45a5eae4-9168-4608-9fe7-4b3c3d5eaef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5298,50 +5166,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "691ad958-5a85-479f-bd9c-537771c8441f" + "7da1706c-3982-496c-a751-9c2411bf5ed2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033258Z:691ad958-5a85-479f-bd9c-537771c8441f" + "WESTUS2:20210213T023554Z:7da1706c-3982-496c-a751-9c2411bf5ed2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:32:57 GMT" + "Sat, 13 Feb 2021 02:35:53 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1c8a0fe-d254-4705-b33f-c1aeffc4999c" + "e04f716b-87c8-452a-bfb7-f2eee99ce633" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5352,13 +5217,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/d4be53ee-eb78-4ff9-b6be-cfee5c5c6bc3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d4be53ee-eb78-4ff9-b6be-cfee5c5c6bc3?api-version=2021-01-15" ], "x-ms-request-id": [ - "52596757-83bb-4768-8c06-d8c4ab833e50" + "d4be53ee-eb78-4ff9-b6be-cfee5c5c6bc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5373,41 +5238,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "3afd4450-4e5d-4b7d-a23d-a84d193f2b42" + "bb5370a3-72da-4631-870d-f40f486ef62b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033400Z:3afd4450-4e5d-4b7d-a23d-a84d193f2b42" + "WESTUS2:20210213T023658Z:bb5370a3-72da-4631-870d-f40f486ef62b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:59 GMT" + "Sat, 13 Feb 2021 02:36:58 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kMDA0NmE5YS0yMGE3LTRlMTgtYjY3MS0yOTFiN2NmMjQ1NTc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/45a5eae4-9168-4608-9fe7-4b3c3d5eaef6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80NWE1ZWFlNC05MTY4LTQ2MDgtOWZlNy00YjNjM2Q1ZWFlZjY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "90d81cff-d2f8-431f-9514-6a89f5ace05c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5427,47 +5292,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "fdfd3e73-3886-4d12-aa69-1e6a142ce750" + "fbfb53a3-29d7-4941-99b4-9c8a4b6a7fc8" ], "x-ms-correlation-request-id": [ - "fdfd3e73-3886-4d12-aa69-1e6a142ce750" + "fbfb53a3-29d7-4941-99b4-9c8a4b6a7fc8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033328Z:fdfd3e73-3886-4d12-aa69-1e6a142ce750" + "WESTUS2:20210213T023624Z:fbfb53a3-29d7-4941-99b4-9c8a4b6a7fc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:27 GMT" + "Sat, 13 Feb 2021 02:36:23 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvZDAwNDZhOWEtMjBhNy00ZTE4LWI2NzEtMjkxYjdjZjI0NTU3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/45a5eae4-9168-4608-9fe7-4b3c3d5eaef6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvNDVhNWVhZTQtOTE2OC00NjA4LTlmZTctNGIzYzNkNWVhZWY2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "90d81cff-d2f8-431f-9514-6a89f5ace05c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5487,50 +5352,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "d4932c64-c6e6-43b9-8557-69981c1c691a" + "70739586-73b9-4bcf-afea-1e5b3f62eef0" ], "x-ms-correlation-request-id": [ - "d4932c64-c6e6-43b9-8557-69981c1c691a" + "70739586-73b9-4bcf-afea-1e5b3f62eef0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033328Z:d4932c64-c6e6-43b9-8557-69981c1c691a" + "WESTUS2:20210213T023624Z:70739586-73b9-4bcf-afea-1e5b3f62eef0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:27 GMT" + "Sat, 13 Feb 2021 02:36:24 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/d0046a9a-20a7-4e18-b671-291b7cf24557?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92cb9269-eed2-4c3a-9fa1-d87dc3c9a8db" + "7f99847f-bed9-461d-8e51-204e90319d93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5541,13 +5403,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/b56e964a-322b-4954-9470-f5df9c63ce69?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b56e964a-322b-4954-9470-f5df9c63ce69?api-version=2021-01-15" ], "x-ms-request-id": [ - "60c2b49d-9e38-454d-a47e-b7ef451eab27" + "b56e964a-322b-4954-9470-f5df9c63ce69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5559,50 +5421,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "4a265446-68a5-46ec-8a76-a29f3c2bba70" + "4ab9980a-c017-445d-b0c9-91ad407a1071" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033329Z:4a265446-68a5-46ec-8a76-a29f3c2bba70" + "WESTUS2:20210213T023627Z:4ab9980a-c017-445d-b0c9-91ad407a1071" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:29 GMT" + "Sat, 13 Feb 2021 02:36:26 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81e32cba-2c47-41c8-b382-d342c5168d7c" + "dda9367f-455f-4e76-b9f8-be1cab451963" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5613,13 +5472,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/f6e68914-5e04-4ce2-97eb-a32b82ff6f03?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f6e68914-5e04-4ce2-97eb-a32b82ff6f03?api-version=2021-01-15" ], "x-ms-request-id": [ - "20efa71c-439d-4461-83a6-7cbe103b701f" + "f6e68914-5e04-4ce2-97eb-a32b82ff6f03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5634,41 +5493,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "6c31f0ea-d58e-4368-97a6-18750219278b" + "467a31b7-33d7-4f11-acd8-4ca22993e513" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033432Z:6c31f0ea-d58e-4368-97a6-18750219278b" + "WESTUS2:20210213T023730Z:467a31b7-33d7-4f11-acd8-4ca22993e513" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:34:31 GMT" + "Sat, 13 Feb 2021 02:37:29 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82MGMyYjQ5ZC05ZTM4LTQ1NGQtYTQ3ZS1iN2VmNDUxZWFiMjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b56e964a-322b-4954-9470-f5df9c63ce69?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iNTZlOTY0YS0zMjJiLTQ5NTQtOTQ3MC1mNWRmOWM2M2NlNjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7f99847f-bed9-461d-8e51-204e90319d93" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5688,47 +5547,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11999" ], "x-ms-request-id": [ - "d8987825-e0e2-46e4-a3aa-c91a078bf2f6" + "5152b0d7-3480-4a89-9650-455970f0989e" ], "x-ms-correlation-request-id": [ - "d8987825-e0e2-46e4-a3aa-c91a078bf2f6" + "5152b0d7-3480-4a89-9650-455970f0989e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033359Z:d8987825-e0e2-46e4-a3aa-c91a078bf2f6" + "WESTUS2:20210213T023657Z:5152b0d7-3480-4a89-9650-455970f0989e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:59 GMT" + "Sat, 13 Feb 2021 02:36:57 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy82MGMyYjQ5ZC05ZTM4LTQ1NGQtYTQ3ZS1iN2VmNDUxZWFiMjc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/b56e964a-322b-4954-9470-f5df9c63ce69?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9iNTZlOTY0YS0zMjJiLTQ5NTQtOTQ3MC1mNWRmOWM2M2NlNjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7f99847f-bed9-461d-8e51-204e90319d93" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5748,44 +5607,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11998" ], "x-ms-request-id": [ - "0fa0aa67-e0f2-450b-96e3-55a8e58e8d83" + "f3e3ea2f-63b3-4090-bd7a-4cf8a3106424" ], "x-ms-correlation-request-id": [ - "0fa0aa67-e0f2-450b-96e3-55a8e58e8d83" + "f3e3ea2f-63b3-4090-bd7a-4cf8a3106424" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033359Z:0fa0aa67-e0f2-450b-96e3-55a8e58e8d83" + "WESTUS2:20210213T023657Z:f3e3ea2f-63b3-4090-bd7a-4cf8a3106424" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:33:59 GMT" + "Sat, 13 Feb 2021 02:36:57 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/60c2b49d-9e38-454d-a47e-b7ef451eab27?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81MjU5Njc1Ny04M2JiLTQ3NjgtOGMwNi1kOGM0YWI4MzNlNTA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d4be53ee-eb78-4ff9-b6be-cfee5c5c6bc3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kNGJlNTNlZS1lYjc4LTRmZjktYjZiZS1jZmVlNWM1YzZiYzM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e04f716b-87c8-452a-bfb7-f2eee99ce633" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5808,44 +5667,44 @@ "11999" ], "x-ms-request-id": [ - "6797e992-3172-46b6-9beb-69cfa6f63288" + "59854f74-0d6b-484e-86d3-bdf6bcca895f" ], "x-ms-correlation-request-id": [ - "6797e992-3172-46b6-9beb-69cfa6f63288" + "59854f74-0d6b-484e-86d3-bdf6bcca895f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033430Z:6797e992-3172-46b6-9beb-69cfa6f63288" + "WESTUS2:20210213T023729Z:59854f74-0d6b-484e-86d3-bdf6bcca895f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:34:30 GMT" + "Sat, 13 Feb 2021 02:37:28 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvNTI1OTY3NTctODNiYi00NzY4LThjMDYtZDhjNGFiODMzZTUwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/d4be53ee-eb78-4ff9-b6be-cfee5c5c6bc3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvY29udGFpbmVycy9jb250YWluZXIxL29wZXJhdGlvblJlc3VsdHMvZDRiZTUzZWUtZWI3OC00ZmY5LWI2YmUtY2ZlZTVjNWM2YmMzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e04f716b-87c8-452a-bfb7-f2eee99ce633" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5868,41 +5727,41 @@ "11998" ], "x-ms-request-id": [ - "bf181a52-2794-42bd-8d3d-4c8727fcc93f" + "579b13a4-95bf-4644-8422-1ea3a51c9459" ], "x-ms-correlation-request-id": [ - "bf181a52-2794-42bd-8d3d-4c8727fcc93f" + "579b13a4-95bf-4644-8422-1ea3a51c9459" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033430Z:bf181a52-2794-42bd-8d3d-4c8727fcc93f" + "WESTUS2:20210213T023729Z:579b13a4-95bf-4644-8422-1ea3a51c9459" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:34:30 GMT" + "Sat, 13 Feb 2021 02:37:28 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/containers/container1/operationResults/52596757-83bb-4768-8c06-d8c4ab833e50?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yMGVmYTcxYy00MzlkLTQ0NjEtODNhNi03Y2JlMTAzYjcwMWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f6e68914-5e04-4ce2-97eb-a32b82ff6f03?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mNmU2ODkxNC01ZTA0LTRjZTItOTdlYi1hMzJiODJmZjZmMDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dda9367f-455f-4e76-b9f8-be1cab451963" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5925,44 +5784,44 @@ "11999" ], "x-ms-request-id": [ - "1da7239a-ecb7-461a-bcff-34912ecca132" + "7b9fa43d-d1b0-46c1-998d-5b744868184f" ], "x-ms-correlation-request-id": [ - "1da7239a-ecb7-461a-bcff-34912ecca132" + "7b9fa43d-d1b0-46c1-998d-5b744868184f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033502Z:1da7239a-ecb7-461a-bcff-34912ecca132" + "WESTUS2:20210213T023800Z:7b9fa43d-d1b0-46c1-998d-5b744868184f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:35:01 GMT" + "Sat, 13 Feb 2021 02:38:00 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8yMGVmYTcxYy00MzlkLTQ0NjEtODNhNi03Y2JlMTAzYjcwMWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/f6e68914-5e04-4ce2-97eb-a32b82ff6f03?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9mNmU2ODkxNC01ZTA0LTRjZTItOTdlYi1hMzJiODJmZjZmMDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dda9367f-455f-4e76-b9f8-be1cab451963" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -5985,25 +5844,22 @@ "11998" ], "x-ms-request-id": [ - "5feafa21-f0ec-41c3-ae12-cf6dbd7740cf" + "63b26978-4253-49d2-b597-bf32632b5420" ], "x-ms-correlation-request-id": [ - "5feafa21-f0ec-41c3-ae12-cf6dbd7740cf" + "63b26978-4253-49d2-b597-bf32632b5420" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T033502Z:5feafa21-f0ec-41c3-ae12-cf6dbd7740cf" + "WESTUS2:20210213T023800Z:63b26978-4253-49d2-b597-bf32632b5420" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:35:01 GMT" + "Sat, 13 Feb 2021 02:38:00 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName/operationResults/20efa71c-439d-4461-83a6-7cbe103b701f?api-version=2020-04-01" ] }, "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 0cfc71d6bc0b..4c9d7638685c 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cad1fbd-335e-49a3-9f4b-fcb4ef9a7fad" + "206f006e-86ae-4808-98bd-7870604e7136" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "49537c66-28a1-44e8-8abe-d195563f7030" + "5bb34c90-2f06-4d09-b03d-549c725ea1f7" ], "x-ms-correlation-request-id": [ - "49537c66-28a1-44e8-8abe-d195563f7030" + "5bb34c90-2f06-4d09-b03d-549c725ea1f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191046Z:49537c66-28a1-44e8-8abe-d195563f7030" + "WESTUS2:20210213T024328Z:5bb34c90-2f06-4d09-b03d-549c725ea1f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:10:46 GMT" + "Sat, 13 Feb 2021 02:43:27 GMT" ], "Content-Length": [ - "1710" + "1785" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 0cad1fbd-335e-49a3-9f4b-fcb4ef9a7fad, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:10:46.9052897Z, RequestEndTime: 2020-06-10T19:10:46.9052897Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:10:46.9052897Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, LSN: 434, GlobalCommittedLsn: 434, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#434, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:10:46.9052897Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 434, GlobalCommittedLsn: 434, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#434, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 206f006e-86ae-4808-98bd-7870604e7136, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:43:28.0376436Z, RequestEndTime: 2021-02-13T02:43:28.0376436Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:43:28.0376436Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10295, GlobalCommittedLsn: 10295, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10295, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:43:28.0376436Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10295, GlobalCommittedLsn: 10295, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10295, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "206f006e-86ae-4808-98bd-7870604e7136" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "70d8c268-342e-482a-ab56-c55844f48fd6" + "0f01ee57-08de-4ea1-9ac1-07cfe00349ae" ], "x-ms-correlation-request-id": [ - "70d8c268-342e-482a-ab56-c55844f48fd6" + "0f01ee57-08de-4ea1-9ac1-07cfe00349ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191118Z:70d8c268-342e-482a-ab56-c55844f48fd6" + "WESTUS2:20210213T024359Z:0f01ee57-08de-4ea1-9ac1-07cfe00349ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:18 GMT" + "Sat, 13 Feb 2021 02:43:58 GMT" ], "Content-Length": [ "446" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"oPMTAA==\",\r\n \"_self\": \"dbs/oPMTAA==/\",\r\n \"_etag\": \"\\\"00003d1e-0000-0500-0000-5ee1303c0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591816252\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"ZR8wAA==\",\r\n \"_self\": \"dbs/ZR8wAA==/\",\r\n \"_etag\": \"\\\"00009c28-0000-0500-0000-60273cd50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613184213\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "20f3e807-0739-47aa-832e-d66496d6693c" + "206f006e-86ae-4808-98bd-7870604e7136" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/f71231ad-9093-4e11-8d5b-12dac2e4dde4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/00be3813-f2c0-4439-84b7-e33f152250ae?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f71231ad-9093-4e11-8d5b-12dac2e4dde4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/00be3813-f2c0-4439-84b7-e33f152250ae?api-version=2021-01-15" ], "x-ms-request-id": [ - "f71231ad-9093-4e11-8d5b-12dac2e4dde4" + "00be3813-f2c0-4439-84b7-e33f152250ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "b54ff583-92b3-499b-852a-8545a11ea38b" + "76c282bc-06a4-4191-bbce-35b064830c11" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191047Z:b54ff583-92b3-499b-852a-8545a11ea38b" + "WESTUS2:20210213T024328Z:76c282bc-06a4-4191-bbce-35b064830c11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:10:47 GMT" + "Sat, 13 Feb 2021 02:43:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f71231ad-9093-4e11-8d5b-12dac2e4dde4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mNzEyMzFhZC05MDkzLTRlMTEtOGQ1Yi0xMmRhYzJlNGRkZTQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/00be3813-f2c0-4439-84b7-e33f152250ae?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wMGJlMzgxMy1mMmMwLTQ0MzktODRiNy1lMzNmMTUyMjUwYWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "206f006e-86ae-4808-98bd-7870604e7136" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -237,50 +234,47 @@ "11998" ], "x-ms-request-id": [ - "2fa5d819-59b7-4eea-b255-5bad96d08b80" + "ab6963f7-73f0-4081-9f95-4743b4c59fb6" ], "x-ms-correlation-request-id": [ - "2fa5d819-59b7-4eea-b255-5bad96d08b80" + "ab6963f7-73f0-4081-9f95-4743b4c59fb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191118Z:2fa5d819-59b7-4eea-b255-5bad96d08b80" + "WESTUS2:20210213T024358Z:ab6963f7-73f0-4081-9f95-4743b4c59fb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:17 GMT" + "Sat, 13 Feb 2021 02:43:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f71231ad-9093-4e11-8d5b-12dac2e4dde4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "413c1637-78c6-46e4-9150-f37c9294bbe3" + "6d43997c-14c5-4eec-8e48-7ce17eaefede" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -303,44 +297,44 @@ "11996" ], "x-ms-request-id": [ - "ff2a9584-5793-4451-99cc-66966a346794" + "69be55b1-f196-45bd-bfc6-27b68b44d724" ], "x-ms-correlation-request-id": [ - "ff2a9584-5793-4451-99cc-66966a346794" + "69be55b1-f196-45bd-bfc6-27b68b44d724" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191119Z:ff2a9584-5793-4451-99cc-66966a346794" + "WESTUS2:20210213T024359Z:69be55b1-f196-45bd-bfc6-27b68b44d724" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:18 GMT" + "Sat, 13 Feb 2021 02:43:59 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"MFQp\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"jkcj\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0120ab61-517e-4635-9b40-d99b7b83d0d3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -363,44 +357,44 @@ "11994" ], "x-ms-request-id": [ - "222496ae-09cc-450a-8ea1-2df68c178650" + "73e09c38-4fcc-4a60-a809-658a02a1ec52" ], "x-ms-correlation-request-id": [ - "222496ae-09cc-450a-8ea1-2df68c178650" + "73e09c38-4fcc-4a60-a809-658a02a1ec52" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191150Z:222496ae-09cc-450a-8ea1-2df68c178650" + "WESTUS2:20210213T024431Z:73e09c38-4fcc-4a60-a809-658a02a1ec52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:50 GMT" + "Sat, 13 Feb 2021 02:44:31 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"MFQp\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"jkcj\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "55037778-e109-463e-9b48-325266de5764" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -423,44 +417,44 @@ "11992" ], "x-ms-request-id": [ - "d67f92ff-d427-4578-bd94-66c6f38fa159" + "ec21dfc8-9dc8-435e-a5f0-01791c0d4cbd" ], "x-ms-correlation-request-id": [ - "d67f92ff-d427-4578-bd94-66c6f38fa159" + "ec21dfc8-9dc8-435e-a5f0-01791c0d4cbd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191222Z:d67f92ff-d427-4578-bd94-66c6f38fa159" + "WESTUS2:20210213T024502Z:ec21dfc8-9dc8-435e-a5f0-01791c0d4cbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:21 GMT" + "Sat, 13 Feb 2021 02:45:02 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"MFQp\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"jkcj\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "de6b50a6-d9c6-4102-aec0-58995227d5a8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -483,50 +477,47 @@ "11989" ], "x-ms-request-id": [ - "b82b5b9a-144b-42bb-bb90-73a10aca227f" + "c6f0c171-081a-4a34-ab54-82c4ced38fd5" ], "x-ms-correlation-request-id": [ - "b82b5b9a-144b-42bb-bb90-73a10aca227f" + "c6f0c171-081a-4a34-ab54-82c4ced38fd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191254Z:b82b5b9a-144b-42bb-bb90-73a10aca227f" + "WESTUS2:20210213T024535Z:c6f0c171-081a-4a34-ab54-82c4ced38fd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:54 GMT" + "Sat, 13 Feb 2021 02:45:34 GMT" ], "Content-Length": [ "371" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"MFQp\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"jkcj\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "6d2d2cd5-8d76-4cd2-b5c0-91f5bd305aca" + "0120ab61-517e-4635-9b40-d99b7b83d0d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/fa378c7a-eb32-46a4-a376-e3ff69f088cd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/abe7eba4-ed4d-40dd-9239-38233470ad4f?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa378c7a-eb32-46a4-a376-e3ff69f088cd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/abe7eba4-ed4d-40dd-9239-38233470ad4f?api-version=2021-01-15" ], "x-ms-request-id": [ - "fa378c7a-eb32-46a4-a376-e3ff69f088cd" + "abe7eba4-ed4d-40dd-9239-38233470ad4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +555,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "4f2814e6-1fac-4817-9c09-f6f44c925c52" + "90939b79-4058-427c-b398-0b8ac8a2b7da" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191119Z:4f2814e6-1fac-4817-9c09-f6f44c925c52" + "WESTUS2:20210213T024400Z:90939b79-4058-427c-b398-0b8ac8a2b7da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:19 GMT" + "Sat, 13 Feb 2021 02:44:00 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "e06f4acf-84d1-43bb-9c0c-8a938118fb19" + "55037778-e109-463e-9b48-325266de5764" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +609,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/59c2c4c7-a578-4fb3-abec-62b8151eb3ed?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/32b32cd2-fe45-46e1-a097-045c8eba3561?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/59c2c4c7-a578-4fb3-abec-62b8151eb3ed?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/32b32cd2-fe45-46e1-a097-045c8eba3561?api-version=2021-01-15" ], "x-ms-request-id": [ - "59c2c4c7-a578-4fb3-abec-62b8151eb3ed" + "32b32cd2-fe45-46e1-a097-045c8eba3561" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +630,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "7a30ad4e-a098-4d51-ab3e-4eacb0b5197f" + "048a8c1f-4541-4ca0-8c49-c1eb23559325" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191151Z:7a30ad4e-a098-4d51-ab3e-4eacb0b5197f" + "WESTUS2:20210213T024432Z:048a8c1f-4541-4ca0-8c49-c1eb23559325" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:50 GMT" + "Sat, 13 Feb 2021 02:44:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "7dff1410-1fbc-40b8-8774-9057743cbd4c" + "de6b50a6-d9c6-4102-aec0-58995227d5a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +684,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/80a676d1-e0a1-409a-8d30-1413d4ee6a50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default/operationResults/07d1e648-9b17-4a85-825a-732abfc804f2?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/80a676d1-e0a1-409a-8d30-1413d4ee6a50?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/07d1e648-9b17-4a85-825a-732abfc804f2?api-version=2021-01-15" ], "x-ms-request-id": [ - "80a676d1-e0a1-409a-8d30-1413d4ee6a50" + "07d1e648-9b17-4a85-825a-732abfc804f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +705,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "cf76fbda-efcd-401d-be32-ebe807d29e4f" + "aff092c6-4b1b-4f64-a49e-736854594923" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191223Z:cf76fbda-efcd-401d-be32-ebe807d29e4f" + "WESTUS2:20210213T024503Z:aff092c6-4b1b-4f64-a49e-736854594923" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:22 GMT" + "Sat, 13 Feb 2021 02:45:02 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa378c7a-eb32-46a4-a376-e3ff69f088cd?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mYTM3OGM3YS1lYjMyLTQ2YTQtYTM3Ni1lM2ZmNjlmMDg4Y2Q/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/abe7eba4-ed4d-40dd-9239-38233470ad4f?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hYmU3ZWJhNC1lZDRkLTQwZGQtOTIzOS0zODIzMzQ3MGFkNGY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0120ab61-517e-4635-9b40-d99b7b83d0d3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -777,44 +762,44 @@ "11995" ], "x-ms-request-id": [ - "91bbb7fc-c05b-48be-9f91-2775551ffa08" + "a0f00e3a-6b5c-426e-80dd-f335e4c469e9" ], "x-ms-correlation-request-id": [ - "91bbb7fc-c05b-48be-9f91-2775551ffa08" + "a0f00e3a-6b5c-426e-80dd-f335e4c469e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191150Z:91bbb7fc-c05b-48be-9f91-2775551ffa08" + "WESTUS2:20210213T024430Z:a0f00e3a-6b5c-426e-80dd-f335e4c469e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:11:49 GMT" + "Sat, 13 Feb 2021 02:44:30 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fa378c7a-eb32-46a4-a376-e3ff69f088cd?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/59c2c4c7-a578-4fb3-abec-62b8151eb3ed?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81OWMyYzRjNy1hNTc4LTRmYjMtYWJlYy02MmI4MTUxZWIzZWQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/32b32cd2-fe45-46e1-a097-045c8eba3561?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8zMmIzMmNkMi1mZTQ1LTQ2ZTEtYTA5Ny0wNDVjOGViYTM1NjE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "55037778-e109-463e-9b48-325266de5764" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -837,50 +822,47 @@ "11993" ], "x-ms-request-id": [ - "58669af7-5f4a-42b7-9471-30717ecd142b" + "6c5b66c3-578f-4f9d-8dec-c3590acb59cc" ], "x-ms-correlation-request-id": [ - "58669af7-5f4a-42b7-9471-30717ecd142b" + "6c5b66c3-578f-4f9d-8dec-c3590acb59cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191222Z:58669af7-5f4a-42b7-9471-30717ecd142b" + "WESTUS2:20210213T024502Z:6c5b66c3-578f-4f9d-8dec-c3590acb59cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:21 GMT" + "Sat, 13 Feb 2021 02:45:01 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/59c2c4c7-a578-4fb3-abec-62b8151eb3ed?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ee6ce5-76b7-4937-be54-4bc2533b8113" + "5d178528-c8e2-4343-964c-9613175c3b00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -903,44 +885,44 @@ "11991" ], "x-ms-request-id": [ - "0766e301-48cc-4792-bd02-74bee9f5d461" + "f9ed469a-fabf-4e06-ab36-978eda065805" ], "x-ms-correlation-request-id": [ - "0766e301-48cc-4792-bd02-74bee9f5d461" + "f9ed469a-fabf-4e06-ab36-978eda065805" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191222Z:0766e301-48cc-4792-bd02-74bee9f5d461" + "WESTUS2:20210213T024502Z:f9ed469a-fabf-4e06-ab36-978eda065805" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:21 GMT" + "Sat, 13 Feb 2021 02:45:02 GMT" ], "Content-Length": [ - "2035" + "2404" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812\",\r\n \"name\": \"cosmosdb9921232812\",\r\n \"location\": \"South Central US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\",\r\n \"CosmosAccountType\": \"Non-Production\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2020-04-09T20:26:35.0312197Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812.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 \"instanceId\": \"936f2e1c-47bc-4164-813a-b0b81d0274ad\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"documentEndpoint\": \"https://cosmosdb9921232812-southcentralus.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\": \"cosmosdb9921232812-southcentralus\",\r\n \"locationName\": \"South Central US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableStorageAnalytics\"\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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/southcentralus/operationsStatus/80a676d1-e0a1-409a-8d30-1413d4ee6a50?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84MGE2NzZkMS1lMGExLTQwOWEtOGQzMC0xNDEzZDRlZTZhNTA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/07d1e648-9b17-4a85-825a-732abfc804f2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wN2QxZTY0OC05YjE3LTRhODUtODI1YS03MzJhYmZjODA0ZjI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "de6b50a6-d9c6-4102-aec0-58995227d5a8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -963,50 +945,47 @@ "11990" ], "x-ms-request-id": [ - "a096a497-033f-44b0-beee-511264c58285" + "539d432e-aeee-48c4-ae69-5bc9065be8cc" ], "x-ms-correlation-request-id": [ - "a096a497-033f-44b0-beee-511264c58285" + "539d432e-aeee-48c4-ae69-5bc9065be8cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191253Z:a096a497-033f-44b0-beee-511264c58285" + "WESTUS2:20210213T024534Z:539d432e-aeee-48c4-ae69-5bc9065be8cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:53 GMT" + "Sat, 13 Feb 2021 02:45:34 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/80a676d1-e0a1-409a-8d30-1413d4ee6a50?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19e9932a-0a09-43f6-95c7-8d2ba879b4ab" + "ec6a93c3-6e2a-47d9-bb02-4dde0784459e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1029,44 +1008,44 @@ "11988" ], "x-ms-request-id": [ - "1e39df02-3970-4bbf-97d5-b96f95cfbfee" + "c3ea14d8-cea5-48df-8110-8774e8858316" ], "x-ms-correlation-request-id": [ - "1e39df02-3970-4bbf-97d5-b96f95cfbfee" + "c3ea14d8-cea5-48df-8110-8774e8858316" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191254Z:1e39df02-3970-4bbf-97d5-b96f95cfbfee" + "WESTUS2:20210213T024535Z:c3ea14d8-cea5-48df-8110-8774e8858316" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:54 GMT" + "Sat, 13 Feb 2021 02:45:35 GMT" ], "Content-Length": [ - "1734" + "1809" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 19e9932a-0a09-43f6-95c7-8d2ba879b4ab, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:12:54.6780295Z, RequestEndTime: 2020-06-10T19:12:54.6880277Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:12:54.6880277Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362806057719635s, LSN: 438, GlobalCommittedLsn: 438, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#438, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:12:54.6880277Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 438, GlobalCommittedLsn: 438, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#438, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: ec6a93c3-6e2a-47d9-bb02-4dde0784459e, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:45:35.4622025Z, RequestEndTime: 2021-02-13T02:45:35.4622025Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:45:35.4622025Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10299, GlobalCommittedLsn: 10299, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10299, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:45:35.4622025Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10299, GlobalCommittedLsn: 10299, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10299, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName3/colls/containerName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ec6a93c3-6e2a-47d9-bb02-4dde0784459e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1089,50 +1068,47 @@ "11986" ], "x-ms-request-id": [ - "61029610-33ce-4b6a-a8b9-313dd911d0ca" + "6594c350-0e3e-43e5-ae63-657fba2f3b72" ], "x-ms-correlation-request-id": [ - "61029610-33ce-4b6a-a8b9-313dd911d0ca" + "6594c350-0e3e-43e5-ae63-657fba2f3b72" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191326Z:61029610-33ce-4b6a-a8b9-313dd911d0ca" + "WESTUS2:20210213T024607Z:6594c350-0e3e-43e5-ae63-657fba2f3b72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:25 GMT" + "Sat, 13 Feb 2021 02:46:06 GMT" ], "Content-Length": [ - "1043" + "1074" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"oPMTAIm7tiQ=\",\r\n \"_ts\": 1591816379,\r\n \"_self\": \"dbs/oPMTAA==/colls/oPMTAIm7tiQ=/\",\r\n \"_etag\": \"\\\"0000471e-0000-0500-0000-5ee130bb0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"ZR8wANBZzAQ=\",\r\n \"_ts\": 1613184340,\r\n \"_self\": \"dbs/ZR8wAA==/colls/ZR8wANBZzAQ=/\",\r\n \"_etag\": \"\\\"0000a728-0000-0500-0000-60273d540000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "f7d691df-f75d-4d72-a45e-b273c802d289" + "ec6a93c3-6e2a-47d9-bb02-4dde0784459e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,13 +1125,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/6e396a41-6a59-4a53-8515-170e34aef402?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/095f6b11-a42b-4da9-bef8-aa7b42a1a63d?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6e396a41-6a59-4a53-8515-170e34aef402?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/095f6b11-a42b-4da9-bef8-aa7b42a1a63d?api-version=2021-01-15" ], "x-ms-request-id": [ - "6e396a41-6a59-4a53-8515-170e34aef402" + "095f6b11-a42b-4da9-bef8-aa7b42a1a63d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1170,41 +1146,41 @@ "1195" ], "x-ms-correlation-request-id": [ - "cdbc156f-8fc8-4b02-87ec-ff10b9718c74" + "0679e7c7-a58e-4fd4-8194-add2d884b694" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191255Z:cdbc156f-8fc8-4b02-87ec-ff10b9718c74" + "WESTUS2:20210213T024535Z:0679e7c7-a58e-4fd4-8194-add2d884b694" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:12:55 GMT" + "Sat, 13 Feb 2021 02:45:35 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6e396a41-6a59-4a53-8515-170e34aef402?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82ZTM5NmE0MS02YTU5LTRhNTMtODUxNS0xNzBlMzRhZWY0MDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/095f6b11-a42b-4da9-bef8-aa7b42a1a63d?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wOTVmNmIxMS1hNDJiLTRkYTktYmVmOC1hYTdiNDJhMWE2M2Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ec6a93c3-6e2a-47d9-bb02-4dde0784459e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1227,50 +1203,47 @@ "11987" ], "x-ms-request-id": [ - "b47abde5-65f0-4912-a200-37fb758d6cc9" + "bac58d87-a456-4884-93df-5792aa9664a7" ], "x-ms-correlation-request-id": [ - "b47abde5-65f0-4912-a200-37fb758d6cc9" + "bac58d87-a456-4884-93df-5792aa9664a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191325Z:b47abde5-65f0-4912-a200-37fb758d6cc9" + "WESTUS2:20210213T024606Z:bac58d87-a456-4884-93df-5792aa9664a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:25 GMT" + "Sat, 13 Feb 2021 02:46:05 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6e396a41-6a59-4a53-8515-170e34aef402?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e749f627-a1dd-4506-8f45-2bb6035eb0d7" + "89a4230c-fc0e-4375-8085-cdfabfacf66b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1293,44 +1266,44 @@ "11985" ], "x-ms-request-id": [ - "d53986d2-553f-4903-a3fd-dcd35340ae0f" + "1abb1e90-b2bf-490b-9cf4-24872d300f1c" ], "x-ms-correlation-request-id": [ - "d53986d2-553f-4903-a3fd-dcd35340ae0f" + "1abb1e90-b2bf-490b-9cf4-24872d300f1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191326Z:d53986d2-553f-4903-a3fd-dcd35340ae0f" + "WESTUS2:20210213T024607Z:1abb1e90-b2bf-490b-9cf4-24872d300f1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:26 GMT" + "Sat, 13 Feb 2021 02:46:06 GMT" ], "Content-Length": [ "407" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"-MAz\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Vu86\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0653d47-01be-4bbd-9568-6751b271a7c7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1353,44 +1326,44 @@ "11983" ], "x-ms-request-id": [ - "30841ecc-0979-4c11-9d43-d2ad72f46842" + "fc5935e4-c26d-44df-88a9-cace13ebef46" ], "x-ms-correlation-request-id": [ - "30841ecc-0979-4c11-9d43-d2ad72f46842" + "fc5935e4-c26d-44df-88a9-cace13ebef46" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191358Z:30841ecc-0979-4c11-9d43-d2ad72f46842" + "WESTUS2:20210213T024639Z:fc5935e4-c26d-44df-88a9-cace13ebef46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:58 GMT" + "Sat, 13 Feb 2021 02:46:38 GMT" ], "Content-Length": [ "407" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"-MAz\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Vu86\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f5bbb3b7-3ac7-423b-8ab0-f74f282c54d4" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1413,44 +1386,44 @@ "11981" ], "x-ms-request-id": [ - "87682c8b-b747-42d4-84be-49d10b553f0c" + "b1d8563f-c8fc-4d2e-8325-3ca8bebadf08" ], "x-ms-correlation-request-id": [ - "87682c8b-b747-42d4-84be-49d10b553f0c" + "b1d8563f-c8fc-4d2e-8325-3ca8bebadf08" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191430Z:87682c8b-b747-42d4-84be-49d10b553f0c" + "WESTUS2:20210213T024710Z:b1d8563f-c8fc-4d2e-8325-3ca8bebadf08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:14:29 GMT" + "Sat, 13 Feb 2021 02:47:09 GMT" ], "Content-Length": [ "407" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"-MAz\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Vu86\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3cf783a9-e889-44b1-9f75-081c063cf1ab" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1473,50 +1446,47 @@ "11979" ], "x-ms-request-id": [ - "3447a292-6bdb-4556-9250-4dfa335f20bf" + "0b3d2141-b6f1-40b6-879b-96237dbe9753" ], "x-ms-correlation-request-id": [ - "3447a292-6bdb-4556-9250-4dfa335f20bf" + "0b3d2141-b6f1-40b6-879b-96237dbe9753" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191501Z:3447a292-6bdb-4556-9250-4dfa335f20bf" + "WESTUS2:20210213T024742Z:0b3d2141-b6f1-40b6-879b-96237dbe9753" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:01 GMT" + "Sat, 13 Feb 2021 02:47:41 GMT" ], "Content-Length": [ "407" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"-MAz\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"Vu86\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "139289de-63a6-4f8e-9413-eaaf418b031d" + "e0653d47-01be-4bbd-9568-6751b271a7c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1533,13 +1503,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/67037aca-fb42-4983-bf2c-baaa2c7f06b6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/2b2ff306-5346-477a-bbdb-a69f53927dc0?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/67037aca-fb42-4983-bf2c-baaa2c7f06b6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2b2ff306-5346-477a-bbdb-a69f53927dc0?api-version=2021-01-15" ], "x-ms-request-id": [ - "67037aca-fb42-4983-bf2c-baaa2c7f06b6" + "2b2ff306-5346-477a-bbdb-a69f53927dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,47 +1524,44 @@ "1194" ], "x-ms-correlation-request-id": [ - "4515781b-f407-4a61-83c7-e14b757ea004" + "beeda5ad-f018-4c29-993f-5350efbcd079" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191327Z:4515781b-f407-4a61-83c7-e14b757ea004" + "WESTUS2:20210213T024608Z:beeda5ad-f018-4c29-993f-5350efbcd079" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:27 GMT" + "Sat, 13 Feb 2021 02:46:07 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "8a3c4c56-ecb3-49bb-8b7a-effe59485887" + "f5bbb3b7-3ac7-423b-8ab0-f74f282c54d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,13 +1578,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/b2361448-65f0-4692-ba2e-4676572fd3a5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/a4e94eaf-6d5f-4e6d-bae5-9e6a0e0f3683?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b2361448-65f0-4692-ba2e-4676572fd3a5?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a4e94eaf-6d5f-4e6d-bae5-9e6a0e0f3683?api-version=2021-01-15" ], "x-ms-request-id": [ - "b2361448-65f0-4692-ba2e-4676572fd3a5" + "a4e94eaf-6d5f-4e6d-bae5-9e6a0e0f3683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,47 +1599,44 @@ "1193" ], "x-ms-correlation-request-id": [ - "276fcd98-5708-48bd-81e5-66e41766600f" + "6eee3fe3-dc06-4d68-9301-b1bc1d77e577" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191359Z:276fcd98-5708-48bd-81e5-66e41766600f" + "WESTUS2:20210213T024639Z:6eee3fe3-dc06-4d68-9301-b1bc1d77e577" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:58 GMT" + "Sat, 13 Feb 2021 02:46:39 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS90aHJvdWdocHV0U2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "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": [ - "c932ace1-78d1-469b-9343-64ee47122ae8" + "3cf783a9-e889-44b1-9f75-081c063cf1ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,13 +1653,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/beb0bd35-bf7e-4d0d-bcc4-3a0329f0fc77?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default/operationResults/f4e219ae-0e17-45cd-b290-86421c2fcc70?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/beb0bd35-bf7e-4d0d-bcc4-3a0329f0fc77?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f4e219ae-0e17-45cd-b290-86421c2fcc70?api-version=2021-01-15" ], "x-ms-request-id": [ - "beb0bd35-bf7e-4d0d-bcc4-3a0329f0fc77" + "f4e219ae-0e17-45cd-b290-86421c2fcc70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,41 +1674,41 @@ "1192" ], "x-ms-correlation-request-id": [ - "262ebda1-c590-4744-b63f-acdc6435bae6" + "0031c58e-2cef-4833-9fb5-6d5e1ce742ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191430Z:262ebda1-c590-4744-b63f-acdc6435bae6" + "WESTUS2:20210213T024711Z:0031c58e-2cef-4833-9fb5-6d5e1ce742ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:14:29 GMT" + "Sat, 13 Feb 2021 02:47:10 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/67037aca-fb42-4983-bf2c-baaa2c7f06b6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82NzAzN2FjYS1mYjQyLTQ5ODMtYmYyYy1iYWFhMmM3ZjA2YjY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2b2ff306-5346-477a-bbdb-a69f53927dc0?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yYjJmZjMwNi01MzQ2LTQ3N2EtYmJkYi1hNjlmNTM5MjdkYzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0653d47-01be-4bbd-9568-6751b271a7c7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1767,44 +1731,44 @@ "11984" ], "x-ms-request-id": [ - "b08b7860-bb9e-404a-8598-3f6f180ecdf0" + "5568b452-b2f1-4b7a-b3eb-35328335848f" ], "x-ms-correlation-request-id": [ - "b08b7860-bb9e-404a-8598-3f6f180ecdf0" + "5568b452-b2f1-4b7a-b3eb-35328335848f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191358Z:b08b7860-bb9e-404a-8598-3f6f180ecdf0" + "WESTUS2:20210213T024638Z:5568b452-b2f1-4b7a-b3eb-35328335848f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:13:57 GMT" + "Sat, 13 Feb 2021 02:46:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/67037aca-fb42-4983-bf2c-baaa2c7f06b6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b2361448-65f0-4692-ba2e-4676572fd3a5?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iMjM2MTQ0OC02NWYwLTQ2OTItYmEyZS00Njc2NTcyZmQzYTU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/a4e94eaf-6d5f-4e6d-bae5-9e6a0e0f3683?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9hNGU5NGVhZi02ZDVmLTRlNmQtYmFlNS05ZTZhMGUwZjM2ODM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f5bbb3b7-3ac7-423b-8ab0-f74f282c54d4" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1827,44 +1791,44 @@ "11982" ], "x-ms-request-id": [ - "845b106b-74ae-4620-a01d-6b742967729f" + "8c099067-0dcf-4c76-84b8-091d7afbdbd3" ], "x-ms-correlation-request-id": [ - "845b106b-74ae-4620-a01d-6b742967729f" + "8c099067-0dcf-4c76-84b8-091d7afbdbd3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191429Z:845b106b-74ae-4620-a01d-6b742967729f" + "WESTUS2:20210213T024710Z:8c099067-0dcf-4c76-84b8-091d7afbdbd3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:14:28 GMT" + "Sat, 13 Feb 2021 02:47:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/b2361448-65f0-4692-ba2e-4676572fd3a5?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/beb0bd35-bf7e-4d0d-bcc4-3a0329f0fc77?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9iZWIwYmQzNS1iZjdlLTRkMGQtYmNjNC0zYTAzMjlmMGZjNzc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f4e219ae-0e17-45cd-b290-86421c2fcc70?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mNGUyMTlhZS0wZTE3LTQ1Y2QtYjI5MC04NjQyMWMyZmNjNzA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3cf783a9-e889-44b1-9f75-081c063cf1ab" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1887,50 +1851,47 @@ "11980" ], "x-ms-request-id": [ - "927e76ff-5e21-4d93-98ba-852460c918ba" + "8e7b1e4c-8438-4326-a86b-806387f6113e" ], "x-ms-correlation-request-id": [ - "927e76ff-5e21-4d93-98ba-852460c918ba" + "8e7b1e4c-8438-4326-a86b-806387f6113e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191501Z:927e76ff-5e21-4d93-98ba-852460c918ba" + "WESTUS2:20210213T024741Z:8e7b1e4c-8438-4326-a86b-806387f6113e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:00 GMT" + "Sat, 13 Feb 2021 02:47:40 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/beb0bd35-bf7e-4d0d-bcc4-3a0329f0fc77?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40c7a93b-b452-4e06-8638-6266808a3c86" + "7b4b9ad2-df89-438f-95bb-ba4e1d54cb4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1953,44 +1914,44 @@ "11978" ], "x-ms-request-id": [ - "79fbd00d-f83c-41d0-ad4d-419df9c3429f" + "a88009fa-e38b-4504-ac5e-02ce6691d226" ], "x-ms-correlation-request-id": [ - "79fbd00d-f83c-41d0-ad4d-419df9c3429f" + "a88009fa-e38b-4504-ac5e-02ce6691d226" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191502Z:79fbd00d-f83c-41d0-ad4d-419df9c3429f" + "WESTUS2:20210213T024742Z:a88009fa-e38b-4504-ac5e-02ce6691d226" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:01 GMT" + "Sat, 13 Feb 2021 02:47:41 GMT" ], "Content-Length": [ - "1710" + "1785" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 40c7a93b-b452-4e06-8638-6266808a3c86, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:15:01.9936851Z, RequestEndTime: 2020-06-10T19:15:01.9936851Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:15:01.9936851Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 442, GlobalCommittedLsn: 442, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#442, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:15:01.9936851Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, LSN: 442, GlobalCommittedLsn: 442, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#442, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 7b4b9ad2-df89-438f-95bb-ba4e1d54cb4c, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:47:42.6017226Z, RequestEndTime: 2021-02-13T02:47:42.6017226Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:47:42.6017226Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10303, GlobalCommittedLsn: 10303, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10303, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:47:42.6017226Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132521323566202816s, LSN: 10303, GlobalCommittedLsn: 10303, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10303, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b4b9ad2-df89-438f-95bb-ba4e1d54cb4c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2013,50 +1974,47 @@ "11976" ], "x-ms-request-id": [ - "16ad9c6f-2179-4ad9-849f-c8dcda5fcbc1" + "43c78aa0-1dad-4303-883b-75a6fe99a23e" ], "x-ms-correlation-request-id": [ - "16ad9c6f-2179-4ad9-849f-c8dcda5fcbc1" + "43c78aa0-1dad-4303-883b-75a6fe99a23e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191533Z:16ad9c6f-2179-4ad9-849f-c8dcda5fcbc1" + "WESTUS2:20210213T024814Z:43c78aa0-1dad-4303-883b-75a6fe99a23e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:32 GMT" + "Sat, 13 Feb 2021 02:48:13 GMT" ], "Content-Length": [ "446" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"stxRAA==\",\r\n \"_self\": \"dbs/stxRAA==/\",\r\n \"_etag\": \"\\\"00004f1e-0000-0500-0000-5ee1313a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1591816506\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"7F9sAA==\",\r\n \"_self\": \"dbs/7F9sAA==/\",\r\n \"_etag\": \"\\\"0000b028-0000-0500-0000-60273dd40000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613184468\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "899b784e-257b-4df8-ba9c-42a9089fbb3c" + "7b4b9ad2-df89-438f-95bb-ba4e1d54cb4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2073,13 +2031,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/0609ba46-ed79-478d-ab5d-7413afb3eaf3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/084da60e-80fa-4769-855b-c0af844dc7fc?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0609ba46-ed79-478d-ab5d-7413afb3eaf3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/084da60e-80fa-4769-855b-c0af844dc7fc?api-version=2021-01-15" ], "x-ms-request-id": [ - "0609ba46-ed79-478d-ab5d-7413afb3eaf3" + "084da60e-80fa-4769-855b-c0af844dc7fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,41 +2052,41 @@ "1191" ], "x-ms-correlation-request-id": [ - "22a98763-f4bf-491e-b724-e5816e953488" + "c03c24f3-cd6c-4765-aaa8-0f02bccb9df7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191502Z:22a98763-f4bf-491e-b724-e5816e953488" + "WESTUS2:20210213T024743Z:c03c24f3-cd6c-4765-aaa8-0f02bccb9df7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:02 GMT" + "Sat, 13 Feb 2021 02:47:42 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0609ba46-ed79-478d-ab5d-7413afb3eaf3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wNjA5YmE0Ni1lZDc5LTQ3OGQtYWI1ZC03NDEzYWZiM2VhZjM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/084da60e-80fa-4769-855b-c0af844dc7fc?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wODRkYTYwZS04MGZhLTQ3NjktODU1Yi1jMGFmODQ0ZGM3ZmM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b4b9ad2-df89-438f-95bb-ba4e1d54cb4c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2151,50 +2109,47 @@ "11977" ], "x-ms-request-id": [ - "05276e37-563c-4d23-8660-6b00990fd6fa" + "dd2be8d7-4967-4704-871a-8233c6eef91a" ], "x-ms-correlation-request-id": [ - "05276e37-563c-4d23-8660-6b00990fd6fa" + "dd2be8d7-4967-4704-871a-8233c6eef91a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191532Z:05276e37-563c-4d23-8660-6b00990fd6fa" + "WESTUS2:20210213T024813Z:dd2be8d7-4967-4704-871a-8233c6eef91a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:32 GMT" + "Sat, 13 Feb 2021 02:48:13 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/0609ba46-ed79-478d-ab5d-7413afb3eaf3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87a73640-695e-45ef-bab9-574f64107a90" + "a611f6d1-9dac-4919-a58e-1a0f27430376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2217,50 +2172,47 @@ "11975" ], "x-ms-request-id": [ - "5c8b1625-b280-4975-b468-4992577f5fe1" + "bf179b27-be57-41fb-a26b-3bc106a180ca" ], "x-ms-correlation-request-id": [ - "5c8b1625-b280-4975-b468-4992577f5fe1" + "bf179b27-be57-41fb-a26b-3bc106a180ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191533Z:5c8b1625-b280-4975-b468-4992577f5fe1" + "WESTUS2:20210213T024814Z:bf179b27-be57-41fb-a26b-3bc106a180ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:33 GMT" + "Sat, 13 Feb 2021 02:48:14 GMT" ], "Content-Length": [ "415" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"bgKZ\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\",\r\n \"name\": \"gAGO\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "228da9bd-f660-41ab-aec3-e2b0b6eb3ec9" + "d54261ce-812b-4dbd-a37b-a9ac23597e9d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2283,44 +2235,44 @@ "11974" ], "x-ms-request-id": [ - "32f2dee3-3430-4663-97be-8fc1bf4cabf8" + "a18988b5-2bda-4c2f-a8ef-f4c72fe876b4" ], "x-ms-correlation-request-id": [ - "32f2dee3-3430-4663-97be-8fc1bf4cabf8" + "a18988b5-2bda-4c2f-a8ef-f4c72fe876b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191534Z:32f2dee3-3430-4663-97be-8fc1bf4cabf8" + "WESTUS2:20210213T024815Z:a18988b5-2bda-4c2f-a8ef-f4c72fe876b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:33 GMT" + "Sat, 13 Feb 2021 02:48:14 GMT" ], "Content-Length": [ - "1735" + "1810" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 228da9bd-f660-41ab-aec3-e2b0b6eb3ec9, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:15:34.0142696Z, RequestEndTime: 2020-06-10T19:15:34.0142696Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:15:34.0142696Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362715483770622s, LSN: 443, GlobalCommittedLsn: 443, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#443, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:15:34.0142696Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132362730594281148s, LSN: 443, GlobalCommittedLsn: 443, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#443, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/containerName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: d54261ce-812b-4dbd-a37b-a9ac23597e9d, Request URI: /apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T02:48:15.0516259Z, RequestEndTime: 2021-02-13T02:48:15.0516259Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T02:48:15.0516259Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520306290366695s, LSN: 10304, GlobalCommittedLsn: 10304, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10304, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T02:48:15.0516259Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/41c501ed-891d-41ee-a069-6e58fc9767b3/services/77cfc4e0-6254-4557-a083-ae8e227e15ca/partitions/dd1c6b6f-9dea-4ef2-a9c9-35aa7636d3df/replicas/132520312329624149s, LSN: 10304, GlobalCommittedLsn: 10304, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10304, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName4/colls/containerName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d54261ce-812b-4dbd-a37b-a9ac23597e9d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2343,50 +2295,47 @@ "11972" ], "x-ms-request-id": [ - "cf71bd5e-941e-47c8-bb4e-3d57cd1c7e05" + "6a5aea44-fd89-4983-b9cf-b8a01e5648f7" ], "x-ms-correlation-request-id": [ - "cf71bd5e-941e-47c8-bb4e-3d57cd1c7e05" + "6a5aea44-fd89-4983-b9cf-b8a01e5648f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191605Z:cf71bd5e-941e-47c8-bb4e-3d57cd1c7e05" + "WESTUS2:20210213T024846Z:6a5aea44-fd89-4983-b9cf-b8a01e5648f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:04 GMT" + "Sat, 13 Feb 2021 02:48:45 GMT" ], "Content-Length": [ - "1046" + "1077" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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\": \"stxRAPJnqPE=\",\r\n \"_ts\": 1591816539,\r\n \"_self\": \"dbs/stxRAA==/colls/stxRAPJnqPE=/\",\r\n \"_etag\": \"\\\"0000531e-0000-0500-0000-5ee1315b0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"7F9sALLSi24=\",\r\n \"_ts\": 1613184500,\r\n \"_self\": \"dbs/7F9sAA==/colls/7F9sALLSi24=/\",\r\n \"_etag\": \"\\\"0000b528-0000-0500-0000-60273df40000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "fa19fd19-b5df-47cf-a9d9-208d013babe2" + "d54261ce-812b-4dbd-a37b-a9ac23597e9d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,13 +2352,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/d015f6e4-22dd-4780-b0d6-061459d887d6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/22edb669-2e65-4066-b5c4-4df50b3351d3?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d015f6e4-22dd-4780-b0d6-061459d887d6?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/22edb669-2e65-4066-b5c4-4df50b3351d3?api-version=2021-01-15" ], "x-ms-request-id": [ - "d015f6e4-22dd-4780-b0d6-061459d887d6" + "22edb669-2e65-4066-b5c4-4df50b3351d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,41 +2373,41 @@ "1190" ], "x-ms-correlation-request-id": [ - "d36e6374-7338-4186-8691-272c487e428f" + "0d2d1609-4e9a-4111-a213-55a9d9be67b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191534Z:d36e6374-7338-4186-8691-272c487e428f" + "WESTUS2:20210213T024815Z:0d2d1609-4e9a-4111-a213-55a9d9be67b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:15:34 GMT" + "Sat, 13 Feb 2021 02:48:15 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d015f6e4-22dd-4780-b0d6-061459d887d6?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kMDE1ZjZlNC0yMmRkLTQ3ODAtYjBkNi0wNjE0NTlkODg3ZDY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/22edb669-2e65-4066-b5c4-4df50b3351d3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yMmVkYjY2OS0yZTY1LTQwNjYtYjVjNC00ZGY1MGIzMzUxZDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d54261ce-812b-4dbd-a37b-a9ac23597e9d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2481,50 +2430,47 @@ "11973" ], "x-ms-request-id": [ - "a71afcb3-5807-462e-881d-e726269a3f20" + "64a4ae8a-82a0-4e8e-b778-96d434ab73cf" ], "x-ms-correlation-request-id": [ - "a71afcb3-5807-462e-881d-e726269a3f20" + "64a4ae8a-82a0-4e8e-b778-96d434ab73cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191605Z:a71afcb3-5807-462e-881d-e726269a3f20" + "WESTUS2:20210213T024845Z:64a4ae8a-82a0-4e8e-b778-96d434ab73cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:04 GMT" + "Sat, 13 Feb 2021 02:48:45 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d015f6e4-22dd-4780-b0d6-061459d887d6?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "787c02ca-0b7d-4d57-993f-047220d1ff36" + "82351586-6537-420a-8956-954cc34cca42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2547,44 +2493,44 @@ "11971" ], "x-ms-request-id": [ - "fd23e572-e0f0-4bdf-aba2-eb621d7c3b10" + "65709d84-ce88-46ab-8294-321d1a15a13b" ], "x-ms-correlation-request-id": [ - "fd23e572-e0f0-4bdf-aba2-eb621d7c3b10" + "65709d84-ce88-46ab-8294-321d1a15a13b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191605Z:fd23e572-e0f0-4bdf-aba2-eb621d7c3b10" + "WESTUS2:20210213T024846Z:65709d84-ce88-46ab-8294-321d1a15a13b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:05 GMT" + "Sat, 13 Feb 2021 02:48:46 GMT" ], "Content-Length": [ "452" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"AmU+\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"0bxT\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0bf098e9-42a3-4cbd-941e-185666930bbb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2607,50 +2553,47 @@ "11969" ], "x-ms-request-id": [ - "47030dde-042a-4d1f-975c-a16fdb982fb2" + "ed3ff05f-acf9-4d64-b132-5ff1250a2671" ], "x-ms-correlation-request-id": [ - "47030dde-042a-4d1f-975c-a16fdb982fb2" + "ed3ff05f-acf9-4d64-b132-5ff1250a2671" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191637Z:47030dde-042a-4d1f-975c-a16fdb982fb2" + "WESTUS2:20210213T024918Z:ed3ff05f-acf9-4d64-b132-5ff1250a2671" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:37 GMT" + "Sat, 13 Feb 2021 02:49:17 GMT" ], "Content-Length": [ "453" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"AmU+\",\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/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\",\r\n \"name\": \"0bxT\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "7a2a1f9a-22e7-4fac-8b3e-ed1bed85082e" + "0bf098e9-42a3-4cbd-941e-185666930bbb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2667,13 +2610,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default/operationResults/9dc2f239-22da-4efa-b150-51609b593665?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default/operationResults/4338a12c-c695-4dbd-9bae-8ea730716639?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9dc2f239-22da-4efa-b150-51609b593665?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4338a12c-c695-4dbd-9bae-8ea730716639?api-version=2021-01-15" ], "x-ms-request-id": [ - "9dc2f239-22da-4efa-b150-51609b593665" + "4338a12c-c695-4dbd-9bae-8ea730716639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,41 +2631,41 @@ "1189" ], "x-ms-correlation-request-id": [ - "98723fc7-c57c-4740-8220-e542d382b6a0" + "21b91cf9-6e67-42ca-a47d-74935f6e105c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191606Z:98723fc7-c57c-4740-8220-e542d382b6a0" + "WESTUS2:20210213T024847Z:21b91cf9-6e67-42ca-a47d-74935f6e105c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:05 GMT" + "Sat, 13 Feb 2021 02:48:46 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9dc2f239-22da-4efa-b150-51609b593665?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy85ZGMyZjIzOS0yMmRhLTRlZmEtYjE1MC01MTYwOWI1OTM2NjU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/4338a12c-c695-4dbd-9bae-8ea730716639?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy80MzM4YTEyYy1jNjk1LTRkYmQtOWJhZS04ZWE3MzA3MTY2Mzk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0bf098e9-42a3-4cbd-941e-185666930bbb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2745,50 +2688,47 @@ "11970" ], "x-ms-request-id": [ - "79fea40e-efe7-4525-9f38-59fa95e593bc" + "4e182083-c081-418d-a14c-3885f98d0058" ], "x-ms-correlation-request-id": [ - "79fea40e-efe7-4525-9f38-59fa95e593bc" + "4e182083-c081-418d-a14c-3885f98d0058" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191636Z:79fea40e-efe7-4525-9f38-59fa95e593bc" + "WESTUS2:20210213T024917Z:4e182083-c081-418d-a14c-3885f98d0058" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:36 GMT" + "Sat, 13 Feb 2021 02:49:17 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/9dc2f239-22da-4efa-b150-51609b593665?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e746dba-3197-478e-8f29-33f9a9634e4a" + "001fa869-afc3-4ca0-a9e7-f5f0a0decca1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2799,13 +2739,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/1d5054a1-7a40-45f1-bd1c-f2d62af2e8f5?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1d5054a1-7a40-45f1-bd1c-f2d62af2e8f5?api-version=2021-01-15" ], "x-ms-request-id": [ - "8d518cf7-70e0-4a62-a1d4-44e6783aefbe" + "1d5054a1-7a40-45f1-bd1c-f2d62af2e8f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2820,47 +2760,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "5aa9232d-3a07-4788-b66e-f445ccbf4999" + "171fd461-26c3-40d1-9230-4c4b24d67f52" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191637Z:5aa9232d-3a07-4788-b66e-f445ccbf4999" + "WESTUS2:20210213T024918Z:171fd461-26c3-40d1-9230-4c4b24d67f52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:16:37 GMT" + "Sat, 13 Feb 2021 02:49:18 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8148d157-acfc-4214-b538-855df4c29085" + "22c50127-b9a6-4c90-a5b0-b77fdf50af1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2871,13 +2808,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/f8e448c4-291c-46c3-b6e8-584af7521543?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f8e448c4-291c-46c3-b6e8-584af7521543?api-version=2021-01-15" ], "x-ms-request-id": [ - "04f39a0e-89d1-48cb-a9eb-37cff4676b04" + "f8e448c4-291c-46c3-b6e8-584af7521543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2892,41 +2829,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "c0ea65d2-d9b8-4a11-a9de-08deb6b0a423" + "a71a05f0-be8b-4cdc-a6a4-06ccc67ac38b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191843Z:c0ea65d2-d9b8-4a11-a9de-08deb6b0a423" + "WESTUS2:20210213T025124Z:a71a05f0-be8b-4cdc-a6a4-06ccc67ac38b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:43 GMT" + "Sat, 13 Feb 2021 02:51:24 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy84ZDUxOGNmNy03MGUwLTRhNjItYTFkNC00NGU2NzgzYWVmYmU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1d5054a1-7a40-45f1-bd1c-f2d62af2e8f5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xZDUwNTRhMS03YTQwLTQ1ZjEtYmQxYy1mMmQ2MmFmMmU4ZjU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "001fa869-afc3-4ca0-a9e7-f5f0a0decca1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -2949,44 +2886,44 @@ "11968" ], "x-ms-request-id": [ - "38b7329f-eed4-4889-9691-aa32e7e16b35" + "a4c3837e-ff69-438a-9b6a-61ca04639e7a" ], "x-ms-correlation-request-id": [ - "38b7329f-eed4-4889-9691-aa32e7e16b35" + "a4c3837e-ff69-438a-9b6a-61ca04639e7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191708Z:38b7329f-eed4-4889-9691-aa32e7e16b35" + "WESTUS2:20210213T024948Z:a4c3837e-ff69-438a-9b6a-61ca04639e7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:07 GMT" + "Sat, 13 Feb 2021 02:49:47 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzLzhkNTE4Y2Y3LTcwZTAtNGE2Mi1hMWQ0LTQ0ZTY3ODNhZWZiZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/1d5054a1-7a40-45f1-bd1c-f2d62af2e8f5?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzLzFkNTA1NGExLTdhNDAtNDVmMS1iZDFjLWYyZDYyYWYyZThmNT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "001fa869-afc3-4ca0-a9e7-f5f0a0decca1" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3009,47 +2946,44 @@ "11967" ], "x-ms-request-id": [ - "d89833f5-a7b8-4b06-a3a5-c4075993ee46" + "a2b734b2-a3b3-4764-8e70-ce4aa9e865ac" ], "x-ms-correlation-request-id": [ - "d89833f5-a7b8-4b06-a3a5-c4075993ee46" + "a2b734b2-a3b3-4764-8e70-ce4aa9e865ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191708Z:d89833f5-a7b8-4b06-a3a5-c4075993ee46" + "WESTUS2:20210213T024948Z:a2b734b2-a3b3-4764-8e70-ce4aa9e865ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:08 GMT" + "Sat, 13 Feb 2021 02:49:47 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/8d518cf7-70e0-4a62-a1d4-44e6783aefbe?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c2fc13c-d7e0-4f18-be15-b57e71c4b6fa" + "37f8d73a-6177-4e9b-9de1-07e90c2a844c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3060,13 +2994,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/f8b29555-e229-4425-9c08-99bf29cf0372?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f8b29555-e229-4425-9c08-99bf29cf0372?api-version=2021-01-15" ], "x-ms-request-id": [ - "2b85c080-bdad-45b8-90c1-9b4d8eec94ea" + "f8b29555-e229-4425-9c08-99bf29cf0372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3078,50 +3012,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "32266d11-9462-4127-9b11-ec35dfaca8a5" + "f9f0c449-4088-41a4-9372-27f79e903c8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191708Z:32266d11-9462-4127-9b11-ec35dfaca8a5" + "WESTUS2:20210213T024950Z:f9f0c449-4088-41a4-9372-27f79e903c8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:08 GMT" + "Sat, 13 Feb 2021 02:49:49 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb059ef6-7fda-4e5c-ba76-c4c94c6e57cf" + "b4b63e33-d746-482a-9d36-c85534a78f07" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3132,13 +3063,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/f2488515-e6aa-49d7-add5-794cd7a3b3bd?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f2488515-e6aa-49d7-add5-794cd7a3b3bd?api-version=2021-01-15" ], "x-ms-request-id": [ - "55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a" + "f2488515-e6aa-49d7-add5-794cd7a3b3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3150,44 +3081,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "df8cdbd4-7370-43f2-8227-ce6100034515" + "7fcef266-7fac-4315-b648-5ff9d5c263f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191915Z:df8cdbd4-7370-43f2-8227-ce6100034515" + "WESTUS2:20210213T025156Z:7fcef266-7fac-4315-b648-5ff9d5c263f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:14 GMT" + "Sat, 13 Feb 2021 02:51:56 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8yYjg1YzA4MC1iZGFkLTQ1YjgtOTBjMS05YjRkOGVlYzk0ZWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f8b29555-e229-4425-9c08-99bf29cf0372?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mOGIyOTU1NS1lMjI5LTQ0MjUtOWMwOC05OWJmMjljZjAzNzI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f8d73a-6177-4e9b-9de1-07e90c2a844c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3207,47 +3138,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11999" ], "x-ms-request-id": [ - "fbfd9f80-cf8c-4b31-bbaa-616e05965625" + "bc810bc3-a9c4-4a57-8696-0f25dde7eb60" ], "x-ms-correlation-request-id": [ - "fbfd9f80-cf8c-4b31-bbaa-616e05965625" + "bc810bc3-a9c4-4a57-8696-0f25dde7eb60" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191739Z:fbfd9f80-cf8c-4b31-bbaa-616e05965625" + "WESTUS2:20210213T025020Z:bc810bc3-a9c4-4a57-8696-0f25dde7eb60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:38 GMT" + "Sat, 13 Feb 2021 02:50:20 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvMmI4NWMwODAtYmRhZC00NWI4LTkwYzEtOWI0ZDhlZWM5NGVhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/f8b29555-e229-4425-9c08-99bf29cf0372?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvZjhiMjk1NTUtZTIyOS00NDI1LTljMDgtOTliZjI5Y2YwMzcyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "37f8d73a-6177-4e9b-9de1-07e90c2a844c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3267,50 +3198,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11998" ], "x-ms-request-id": [ - "3992b012-5293-4495-894e-202485e16aea" + "b907b5bb-dacb-4adf-855f-54ac548badab" ], "x-ms-correlation-request-id": [ - "3992b012-5293-4495-894e-202485e16aea" + "b907b5bb-dacb-4adf-855f-54ac548badab" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191739Z:3992b012-5293-4495-894e-202485e16aea" + "WESTUS2:20210213T025020Z:b907b5bb-dacb-4adf-855f-54ac548badab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:39 GMT" + "Sat, 13 Feb 2021 02:50:20 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/2b85c080-bdad-45b8-90c1-9b4d8eec94ea?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f804055-c765-41fe-9f20-d41bc12d10a9" + "4eade80d-43f9-47f7-849d-ebf34d1491d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3321,13 +3249,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/1a13af78-8884-429e-96d4-086209104eae?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1a13af78-8884-429e-96d4-086209104eae?api-version=2021-01-15" ], "x-ms-request-id": [ - "1e85d9d5-2518-40ba-9692-0356b2d6a0f1" + "1a13af78-8884-429e-96d4-086209104eae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3342,47 +3270,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "dd0d28bc-53d0-4c04-b98b-f1969c3211c4" + "af9fbc82-bf12-40a9-8d67-2e17da72cb98" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191740Z:dd0d28bc-53d0-4c04-b98b-f1969c3211c4" + "WESTUS2:20210213T025021Z:af9fbc82-bf12-40a9-8d67-2e17da72cb98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:17:40 GMT" + "Sat, 13 Feb 2021 02:50:21 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b596df4-43a8-491b-9a3a-64c48f02060c" + "c22c207b-deea-42cf-8358-a52e35d6932b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3393,13 +3318,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/6f9548e8-482e-41f8-adab-d9dafe81bf90?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6f9548e8-482e-41f8-adab-d9dafe81bf90?api-version=2021-01-15" ], "x-ms-request-id": [ - "73fa4071-2394-40a8-83a2-495b6d409ce9" + "6f9548e8-482e-41f8-adab-d9dafe81bf90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3414,41 +3339,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "9ac29f3b-3440-4510-8294-7820e4f184b3" + "6e17d73c-23b8-403b-9c23-de1120e8a25f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191946Z:9ac29f3b-3440-4510-8294-7820e4f184b3" + "WESTUS2:20210213T025228Z:6e17d73c-23b8-403b-9c23-de1120e8a25f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:45 GMT" + "Sat, 13 Feb 2021 02:52:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xZTg1ZDlkNS0yNTE4LTQwYmEtOTY5Mi0wMzU2YjJkNmEwZjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1a13af78-8884-429e-96d4-086209104eae?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8xYTEzYWY3OC04ODg0LTQyOWUtOTZkNC0wODYyMDkxMDRlYWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4eade80d-43f9-47f7-849d-ebf34d1491d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3471,44 +3396,44 @@ "11999" ], "x-ms-request-id": [ - "b9ae6d42-8ecb-492f-b4fa-d3906ba7b1f7" + "bb6a9cd7-219c-4897-a1ae-ce33c223564b" ], "x-ms-correlation-request-id": [ - "b9ae6d42-8ecb-492f-b4fa-d3906ba7b1f7" + "bb6a9cd7-219c-4897-a1ae-ce33c223564b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191810Z:b9ae6d42-8ecb-492f-b4fa-d3906ba7b1f7" + "WESTUS2:20210213T025051Z:bb6a9cd7-219c-4897-a1ae-ce33c223564b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:10 GMT" + "Sat, 13 Feb 2021 02:50:51 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy8xZTg1ZDlkNS0yNTE4LTQwYmEtOTY5Mi0wMzU2YjJkNmEwZjE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/1a13af78-8884-429e-96d4-086209104eae?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy8xYTEzYWY3OC04ODg0LTQyOWUtOTZkNC0wODYyMDkxMDRlYWU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4eade80d-43f9-47f7-849d-ebf34d1491d7" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3531,47 +3456,44 @@ "11998" ], "x-ms-request-id": [ - "6fc809c1-5923-4cc2-9303-d3185da7b1d4" + "8dbcf279-94ab-4345-a188-bb7f8fa64d69" ], "x-ms-correlation-request-id": [ - "6fc809c1-5923-4cc2-9303-d3185da7b1d4" + "8dbcf279-94ab-4345-a188-bb7f8fa64d69" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191810Z:6fc809c1-5923-4cc2-9303-d3185da7b1d4" + "WESTUS2:20210213T025051Z:8dbcf279-94ab-4345-a188-bb7f8fa64d69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:10 GMT" + "Sat, 13 Feb 2021 02:50:51 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/1e85d9d5-2518-40ba-9692-0356b2d6a0f1?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "585f9795-591f-4746-b61a-63da0758eeda" + "9b7e2700-a254-4146-9bf5-ab96e5a95de9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3582,13 +3504,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/c8dc94cc-b89e-4d35-b311-3450c880d1cf?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c8dc94cc-b89e-4d35-b311-3450c880d1cf?api-version=2021-01-15" ], "x-ms-request-id": [ - "fc7fa25c-2849-4acb-84b4-bf5239dd63d2" + "c8dc94cc-b89e-4d35-b311-3450c880d1cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3600,50 +3522,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "904e5300-c77b-4646-92b4-b841e0dc4ea6" + "37b5f5be-85ac-4939-8823-192854d56519" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191812Z:904e5300-c77b-4646-92b4-b841e0dc4ea6" + "WESTUS2:20210213T025052Z:37b5f5be-85ac-4939-8823-192854d56519" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:12 GMT" + "Sat, 13 Feb 2021 02:50:52 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd03f659-cd39-4741-8e26-65b4a1a7486e" + "174f8fee-e09e-4f2b-a6a9-80b31d37bbd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3654,13 +3573,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/d66dd056-fca8-4c29-a443-1d970ca88fcb?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d66dd056-fca8-4c29-a443-1d970ca88fcb?api-version=2021-01-15" ], "x-ms-request-id": [ - "705f78d0-d159-4c0f-8377-d486d212fef0" + "d66dd056-fca8-4c29-a443-1d970ca88fcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3675,41 +3594,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "bdd0eb6f-de40-48f5-885d-69b6fdc9ef74" + "479136fe-c776-43d8-9b3b-60fd254acea6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192018Z:bdd0eb6f-de40-48f5-885d-69b6fdc9ef74" + "WESTUS2:20210213T025259Z:479136fe-c776-43d8-9b3b-60fd254acea6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:20:17 GMT" + "Sat, 13 Feb 2021 02:52:59 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mYzdmYTI1Yy0yODQ5LTRhY2ItODRiNC1iZjUyMzlkZDYzZDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/c8dc94cc-b89e-4d35-b311-3450c880d1cf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9jOGRjOTRjYy1iODllLTRkMzUtYjMxMS0zNDUwYzg4MGQxY2Y/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9b7e2700-a254-4146-9bf5-ab96e5a95de9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3729,47 +3648,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "208d2cee-1f83-4693-83f0-90bfb7a9d32d" + "50b0412b-a4d8-4767-ab75-168fcb8c1b1f" ], "x-ms-correlation-request-id": [ - "208d2cee-1f83-4693-83f0-90bfb7a9d32d" + "50b0412b-a4d8-4767-ab75-168fcb8c1b1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191842Z:208d2cee-1f83-4693-83f0-90bfb7a9d32d" + "WESTUS2:20210213T025123Z:50b0412b-a4d8-4767-ab75-168fcb8c1b1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:42 GMT" + "Sat, 13 Feb 2021 02:51:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvZmM3ZmEyNWMtMjg0OS00YWNiLTg0YjQtYmY1MjM5ZGQ2M2QyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/c8dc94cc-b89e-4d35-b311-3450c880d1cf?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvYzhkYzk0Y2MtYjg5ZS00ZDM1LWIzMTEtMzQ1MGM4ODBkMWNmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9b7e2700-a254-4146-9bf5-ab96e5a95de9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3789,44 +3708,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "b2e4c595-777f-42aa-839a-c2127f84d80f" + "87b814a0-2a93-455d-9436-7c223f4b7f19" ], "x-ms-correlation-request-id": [ - "b2e4c595-777f-42aa-839a-c2127f84d80f" + "87b814a0-2a93-455d-9436-7c223f4b7f19" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191842Z:b2e4c595-777f-42aa-839a-c2127f84d80f" + "WESTUS2:20210213T025123Z:87b814a0-2a93-455d-9436-7c223f4b7f19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:18:42 GMT" + "Sat, 13 Feb 2021 02:51:23 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/fc7fa25c-2849-4acb-84b4-bf5239dd63d2?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy8wNGYzOWEwZS04OWQxLTQ4Y2ItYTllYi0zN2NmZjQ2NzZiMDQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f8e448c4-291c-46c3-b6e8-584af7521543?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mOGU0NDhjNC0yOTFjLTQ2YzMtYjZlOC01ODRhZjc1MjE1NDM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c50127-b9a6-4c90-a5b0-b77fdf50af1e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3849,44 +3768,44 @@ "11999" ], "x-ms-request-id": [ - "90bcbf02-e03a-4e7b-b9b7-62fb87e75ff9" + "6f7e1b80-b572-4cfb-a738-b3c20d0b3d4e" ], "x-ms-correlation-request-id": [ - "90bcbf02-e03a-4e7b-b9b7-62fb87e75ff9" + "6f7e1b80-b572-4cfb-a738-b3c20d0b3d4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191914Z:90bcbf02-e03a-4e7b-b9b7-62fb87e75ff9" + "WESTUS2:20210213T025155Z:6f7e1b80-b572-4cfb-a738-b3c20d0b3d4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:13 GMT" + "Sat, 13 Feb 2021 02:51:54 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzLzA0ZjM5YTBlLTg5ZDEtNDhjYi1hOWViLTM3Y2ZmNDY3NmIwND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/f8e448c4-291c-46c3-b6e8-584af7521543?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZS9vcGVyYXRpb25SZXN1bHRzL2Y4ZTQ0OGM0LTI5MWMtNDZjMy1iNmU4LTU4NGFmNzUyMTU0Mz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22c50127-b9a6-4c90-a5b0-b77fdf50af1e" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3909,41 +3828,41 @@ "11998" ], "x-ms-request-id": [ - "139bd938-3645-4423-9db6-ed84f73af9a4" + "fe208758-de3c-4094-84bb-27223c476df9" ], "x-ms-correlation-request-id": [ - "139bd938-3645-4423-9db6-ed84f73af9a4" + "fe208758-de3c-4094-84bb-27223c476df9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191914Z:139bd938-3645-4423-9db6-ed84f73af9a4" + "WESTUS2:20210213T025155Z:fe208758-de3c-4094-84bb-27223c476df9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:13 GMT" + "Sat, 13 Feb 2021 02:51:54 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/containers/containerName/operationResults/04f39a0e-89d1-48cb-a9eb-37cff4676b04?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy81NWJiODU5My1mMmRjLTRlOWYtOWQ2OC0zYjRhYjBiZTVhOWE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/f2488515-e6aa-49d7-add5-794cd7a3b3bd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9mMjQ4ODUxNS1lNmFhLTQ5ZDctYWRkNS03OTRjZDdhM2IzYmQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b4b63e33-d746-482a-9d36-c85534a78f07" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -3963,47 +3882,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "0daea8dc-5b43-4eac-8cda-530346ce463a" + "0d15a70c-d401-4ce2-9ea8-3791a0a66dcb" ], "x-ms-correlation-request-id": [ - "0daea8dc-5b43-4eac-8cda-530346ce463a" + "0d15a70c-d401-4ce2-9ea8-3791a0a66dcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191945Z:0daea8dc-5b43-4eac-8cda-530346ce463a" + "WESTUS2:20210213T025227Z:0d15a70c-d401-4ce2-9ea8-3791a0a66dcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:45 GMT" + "Sat, 13 Feb 2021 02:52:26 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvNTViYjg1OTMtZjJkYy00ZTlmLTlkNjgtM2I0YWIwYmU1YTlhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/f2488515-e6aa-49d7-add5-794cd7a3b3bd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWUzL29wZXJhdGlvblJlc3VsdHMvZjI0ODg1MTUtZTZhYS00OWQ3LWFkZDUtNzk0Y2Q3YTNiM2JkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b4b63e33-d746-482a-9d36-c85534a78f07" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4023,44 +3942,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "1348d20f-930c-4b3d-b5cb-2f70a00340b7" + "043d70c3-b3f2-4f45-b28a-4b1132e8993f" ], "x-ms-correlation-request-id": [ - "1348d20f-930c-4b3d-b5cb-2f70a00340b7" + "043d70c3-b3f2-4f45-b28a-4b1132e8993f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T191945Z:1348d20f-930c-4b3d-b5cb-2f70a00340b7" + "WESTUS2:20210213T025227Z:043d70c3-b3f2-4f45-b28a-4b1132e8993f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:19:45 GMT" + "Sat, 13 Feb 2021 02:52:26 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName3/operationResults/55bb8593-f2dc-4e9f-9d68-3b4ab0be5a9a?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83M2ZhNDA3MS0yMzk0LTQwYTgtODNhMi00OTViNmQ0MDljZTk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/6f9548e8-482e-41f8-adab-d9dafe81bf90?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy82Zjk1NDhlOC00ODJlLTQxZjgtYWRhYi1kOWRhZmU4MWJmOTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c22c207b-deea-42cf-8358-a52e35d6932b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4080,47 +3999,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "48b069e9-a7f5-4296-9a1d-8f27c98b9d16" + "062cdc7b-fb69-4d37-9338-35ee30143004" ], "x-ms-correlation-request-id": [ - "48b069e9-a7f5-4296-9a1d-8f27c98b9d16" + "062cdc7b-fb69-4d37-9338-35ee30143004" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192016Z:48b069e9-a7f5-4296-9a1d-8f27c98b9d16" + "WESTUS2:20210213T025258Z:062cdc7b-fb69-4d37-9338-35ee30143004" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:20:15 GMT" + "Sat, 13 Feb 2021 02:52:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy83M2ZhNDA3MS0yMzk0LTQwYTgtODNhMi00OTViNmQ0MDljZTk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/6f9548e8-482e-41f8-adab-d9dafe81bf90?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L2NvbnRhaW5lcnMvY29udGFpbmVyTmFtZTMvb3BlcmF0aW9uUmVzdWx0cy82Zjk1NDhlOC00ODJlLTQxZjgtYWRhYi1kOWRhZmU4MWJmOTA/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c22c207b-deea-42cf-8358-a52e35d6932b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4140,44 +4059,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "426dc843-9097-460f-9d3e-a727eb064d37" + "2fb32579-3b5f-4ef2-b9bc-54dd1ef3f3e6" ], "x-ms-correlation-request-id": [ - "426dc843-9097-460f-9d3e-a727eb064d37" + "2fb32579-3b5f-4ef2-b9bc-54dd1ef3f3e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192017Z:426dc843-9097-460f-9d3e-a727eb064d37" + "WESTUS2:20210213T025258Z:2fb32579-3b5f-4ef2-b9bc-54dd1ef3f3e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:20:16 GMT" + "Sat, 13 Feb 2021 02:52:58 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/containers/containerName3/operationResults/73fa4071-2394-40a8-83a2-495b6d409ce9?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy83MDVmNzhkMC1kMTU5LTRjMGYtODM3Ny1kNDg2ZDIxMmZlZjA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/d66dd056-fca8-4c29-a443-1d970ca88fcb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uc1N0YXR1cy9kNjZkZDA1Ni1mY2E4LTRjMjktYTQ0My0xZDk3MGNhODhmY2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "174f8fee-e09e-4f2b-a6a9-80b31d37bbd8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4200,44 +4119,44 @@ "11999" ], "x-ms-request-id": [ - "7064d771-289d-45d7-aaec-c1268af842e0" + "e8ee87be-88aa-4643-bd95-54096f8976f9" ], "x-ms-correlation-request-id": [ - "7064d771-289d-45d7-aaec-c1268af842e0" + "e8ee87be-88aa-4643-bd95-54096f8976f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192048Z:7064d771-289d-45d7-aaec-c1268af842e0" + "WESTUS2:20210213T025329Z:e8ee87be-88aa-4643-bd95-54096f8976f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:20:48 GMT" + "Sat, 13 Feb 2021 02:53:29 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/southcentralus/operationsStatus/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvNzA1Zjc4ZDAtZDE1OS00YzBmLTgzNzctZDQ4NmQyMTJmZWYwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/d66dd056-fca8-4c29-a443-1d970ca88fcb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL3JndGVzdDk5MjEyMzI4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvY29zbW9zZGI5OTIxMjMyODEyL3NxbERhdGFiYXNlcy9kYk5hbWU0L29wZXJhdGlvblJlc3VsdHMvZDY2ZGQwNTYtZmNhOC00YzI5LWE0NDMtMWQ5NzBjYTg4ZmNiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "174f8fee-e09e-4f2b-a6a9-80b31d37bbd8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -4260,25 +4179,22 @@ "11998" ], "x-ms-request-id": [ - "39310369-3b68-4ab1-a89b-cec0fe85e340" + "e1f2b1f8-43eb-4e7c-89a6-27d342398ceb" ], "x-ms-correlation-request-id": [ - "39310369-3b68-4ab1-a89b-cec0fe85e340" + "e1f2b1f8-43eb-4e7c-89a6-27d342398ceb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T192048Z:39310369-3b68-4ab1-a89b-cec0fe85e340" + "WESTUS2:20210213T025330Z:e1f2b1f8-43eb-4e7c-89a6-27d342398ceb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:20:48 GMT" + "Sat, 13 Feb 2021 02:53:30 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/rgtest9921232812/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb9921232812/sqlDatabases/dbName4/operationResults/705f78d0-d159-4c0f-8377-d486d212fef0?api-version=2020-04-01" ] }, "ResponseBody": "", 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 b9b3bbd0d95e..2c839a6964a1 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4608ca3a-cbdb-4854-9f3f-7ba2da0ebd21" + "7b7d7b4e-f1f7-4e86-bfc8-7b594b777735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "013814be-4b26-4448-b54a-0849312205ab" + "6b482c88-1b05-4c6d-82b3-99468b7c8f73" ], "x-ms-correlation-request-id": [ - "013814be-4b26-4448-b54a-0849312205ab" + "6b482c88-1b05-4c6d-82b3-99468b7c8f73" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002724Z:013814be-4b26-4448-b54a-0849312205ab" + "WESTUS2:20210213T031746Z:6b482c88-1b05-4c6d-82b3-99468b7c8f73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:23 GMT" + "Sat, 13 Feb 2021 03:17:45 GMT" ], "Content-Length": [ "1795" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01" ] }, - "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: 4608ca3a-cbdb-4854-9f3f-7ba2da0ebd21, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132434234212595983s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-09-03T00:27:24.1718383Z, RequestEndTime: 2020-09-03T00:27:24.1818090Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-09-03T00:27:24.1818090Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132434234212595983s, LSN: 266, GlobalCommittedLsn: 266, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#266, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-09-03T00:27:24.1818090Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132431434246361315s, LSN: 266, GlobalCommittedLsn: 266, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#266, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/tableName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 7b7d7b4e-f1f7-4e86-bfc8-7b594b777735, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132541162127553582s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:17:46.1362349Z, RequestEndTime: 2021-02-13T03:17:46.1462356Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:17:46.1462356Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132541162127553582s, LSN: 344, GlobalCommittedLsn: 344, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#344, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:17:46.1462356Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132545225780040312s, LSN: 344, GlobalCommittedLsn: 344, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#344, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/tableName4, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b7d7b4e-f1f7-4e86-bfc8-7b594b777735" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "e9e611ab-ead2-4fe5-9bad-aa81dcf38026" + "7f5f3601-0e4e-4ba6-b4bf-ba9374ecd0b7" ], "x-ms-correlation-request-id": [ - "e9e611ab-ead2-4fe5-9bad-aa81dcf38026" + "7f5f3601-0e4e-4ba6-b4bf-ba9374ecd0b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002755Z:e9e611ab-ead2-4fe5-9bad-aa81dcf38026" + "WESTUS2:20210213T031817Z:7f5f3601-0e4e-4ba6-b4bf-ba9374ecd0b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:55 GMT" + "Sat, 13 Feb 2021 03:18:16 GMT" ], "Content-Length": [ "384" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/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\": \"bilIAO-+WFk=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-8189-0202e80101d6\\\"\",\r\n \"_ts\": 1599092849\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/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\": \"bilIAMr5pX8=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-cfb2500101d7\\\"\",\r\n \"_ts\": 1613186271\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "6b34b51d-125b-45a0-87eb-a723b0d1deef" + "7b7d7b4e-f1f7-4e86-bfc8-7b594b777735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/5691774a-58fc-4923-baf8-2169e75832ac?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/ac0ab3b9-f2cd-4a9d-9908-eaa646ec6c63?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5691774a-58fc-4923-baf8-2169e75832ac?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ab3b9-f2cd-4a9d-9908-eaa646ec6c63?api-version=2021-01-15" ], "x-ms-request-id": [ - "5691774a-58fc-4923-baf8-2169e75832ac" + "ac0ab3b9-f2cd-4a9d-9908-eaa646ec6c63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "9235e84b-972d-4d0d-badb-5931a5760313" + "df020a6f-eeed-4e77-a494-a02410c37183" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002724Z:9235e84b-972d-4d0d-badb-5931a5760313" + "WESTUS2:20210213T031746Z:df020a6f-eeed-4e77-a494-a02410c37183" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:23 GMT" + "Sat, 13 Feb 2021 03:17:46 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5691774a-58fc-4923-baf8-2169e75832ac?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY5MTc3NGEtNThmYy00OTIzLWJhZjgtMjE2OWU3NTgzMmFjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ac0ab3b9-f2cd-4a9d-9908-eaa646ec6c63?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWMwYWIzYjktZjJjZC00YTlkLTk5MDgtZWFhNjQ2ZWM2YzYzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7b7d7b4e-f1f7-4e86-bfc8-7b594b777735" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -234,53 +231,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "163af925-02ff-4569-bc3a-30fe8e71928f" + "8a843c68-e418-4880-8693-a57d24cb5b2d" ], "x-ms-correlation-request-id": [ - "163af925-02ff-4569-bc3a-30fe8e71928f" + "8a843c68-e418-4880-8693-a57d24cb5b2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002755Z:163af925-02ff-4569-bc3a-30fe8e71928f" + "WESTUS2:20210213T031817Z:8a843c68-e418-4880-8693-a57d24cb5b2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:55 GMT" + "Sat, 13 Feb 2021 03:18:16 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5691774a-58fc-4923-baf8-2169e75832ac?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "503735e2-c08d-4b07-804f-31cf9b621157" + "a4e37497-4e5f-492a-8e4b-c5d09d8227cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -300,53 +294,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "7f3671f5-b0a6-4b36-87a7-71d04f8e7005" + "f327e29a-e10f-475a-aa9e-1e0d6e2a603c" ], "x-ms-correlation-request-id": [ - "7f3671f5-b0a6-4b36-87a7-71d04f8e7005" + "f327e29a-e10f-475a-aa9e-1e0d6e2a603c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002755Z:7f3671f5-b0a6-4b36-87a7-71d04f8e7005" + "WESTUS2:20210213T031817Z:f327e29a-e10f-475a-aa9e-1e0d6e2a603c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:55 GMT" + "Sat, 13 Feb 2021 03:18:17 GMT" ], "Content-Length": [ "360" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"NTdY\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"rOp-\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80739978-a01d-41b2-bb60-6e07437af6bf" + "794b3a81-f89c-4791-b384-144e84532ee9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/58e947a7-28d8-4a5e-8a5f-a95673a6b2b9?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58e947a7-28d8-4a5e-8a5f-a95673a6b2b9?api-version=2021-01-15" ], "x-ms-request-id": [ - "b4e43a78-9481-4d38-a705-ee884346394c" + "58e947a7-28d8-4a5e-8a5f-a95673a6b2b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +369,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "734f1a58-6336-462e-970d-714c9132ca48" + "999b8fe9-85ca-4f11-8664-7b658391af9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002756Z:734f1a58-6336-462e-970d-714c9132ca48" + "WESTUS2:20210213T031818Z:999b8fe9-85ca-4f11-8664-7b658391af9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:27:56 GMT" + "Sat, 13 Feb 2021 03:18:17 GMT" ], "Content-Length": [ "21" @@ -400,16 +391,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjRlNDNhNzgtOTQ4MS00ZDM4LWE3MDUtZWU4ODQzNDYzOTRjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/58e947a7-28d8-4a5e-8a5f-a95673a6b2b9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNThlOTQ3YTctMjhkOC00YTVlLThhNWYtYTk1NjczYTZiMmI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "794b3a81-f89c-4791-b384-144e84532ee9" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -429,47 +423,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "c2e9ce24-a6fd-4743-9ebd-6ea1ed21aecf" + "f9cb92e5-0272-4981-bd60-9951949ddd3c" ], "x-ms-correlation-request-id": [ - "c2e9ce24-a6fd-4743-9ebd-6ea1ed21aecf" + "f9cb92e5-0272-4981-bd60-9951949ddd3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002826Z:c2e9ce24-a6fd-4743-9ebd-6ea1ed21aecf" + "WESTUS2:20210213T031848Z:f9cb92e5-0272-4981-bd60-9951949ddd3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:26 GMT" + "Sat, 13 Feb 2021 03:18:48 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzL2I0ZTQzYTc4LTk0ODEtNGQzOC1hNzA1LWVlODg0MzQ2Mzk0Yz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/58e947a7-28d8-4a5e-8a5f-a95673a6b2b9?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb0F1dG9zY2FsZS9vcGVyYXRpb25SZXN1bHRzLzU4ZTk0N2E3LTI4ZDgtNGE1ZS04YTVmLWE5NTY3M2E2YjJiOT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "794b3a81-f89c-4791-b384-144e84532ee9" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -489,53 +483,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "cfd46105-87d7-4400-973b-50a00c619b88" + "35dcee50-568e-4cdd-b682-0e708ad8c03b" ], "x-ms-correlation-request-id": [ - "cfd46105-87d7-4400-973b-50a00c619b88" + "35dcee50-568e-4cdd-b682-0e708ad8c03b" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002826Z:cfd46105-87d7-4400-973b-50a00c619b88" + "WESTUS2:20210213T031849Z:35dcee50-568e-4cdd-b682-0e708ad8c03b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:26 GMT" + "Sat, 13 Feb 2021 03:18:48 GMT" ], "Content-Length": [ "441" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale/operationResults/b4e43a78-9481-4d38-a705-ee884346394c?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"NTdY\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToAutoscale\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToAutoscale\",\r\n \"name\": \"rOp-\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc1f6e1a-a4eb-43d3-96b0-8863a6dda9f1" + "2b4f86cb-ef96-45ac-aa99-738a27dd8be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -555,53 +546,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "10637bd3-0e3d-4cd5-a98e-2385d67e85e8" + "6decfaca-770a-4d96-b724-2a6ad1481a1c" ], "x-ms-correlation-request-id": [ - "10637bd3-0e3d-4cd5-a98e-2385d67e85e8" + "6decfaca-770a-4d96-b724-2a6ad1481a1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002826Z:10637bd3-0e3d-4cd5-a98e-2385d67e85e8" + "WESTUS2:20210213T031849Z:6decfaca-770a-4d96-b724-2a6ad1481a1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:26 GMT" + "Sat, 13 Feb 2021 03:18:48 GMT" ], "Content-Length": [ - "2091" + "2200" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:58:42.873838Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"bb56fa0e-a388-4702-9ea9-393360c606fd\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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 }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:58:42.873838Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"bb56fa0e-a388-4702-9ea9-393360c606fd\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5b0dee7-7097-4a9a-82c7-e94070337379" + "a7bef836-e40a-4531-ba32-0eff81948f17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -612,13 +600,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/4bf2d576-44e0-41ae-807e-5f148a1210f4?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4bf2d576-44e0-41ae-807e-5f148a1210f4?api-version=2021-01-15" ], "x-ms-request-id": [ - "5f79e42f-e60c-44a0-b99c-093bb8bae525" + "4bf2d576-44e0-41ae-807e-5f148a1210f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,16 +621,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "866fe92d-c4f5-4ad7-a745-fd66e5e33c91" + "6c90c391-835b-48e6-99a2-6b3d815be5e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002827Z:866fe92d-c4f5-4ad7-a745-fd66e5e33c91" + "WESTUS2:20210213T031849Z:6c90c391-835b-48e6-99a2-6b3d815be5e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:26 GMT" + "Sat, 13 Feb 2021 03:18:49 GMT" ], "Content-Length": [ "21" @@ -655,16 +643,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWY3OWU0MmYtZTYwYy00NGEwLWI5OWMtMDkzYmI4YmFlNTI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4bf2d576-44e0-41ae-807e-5f148a1210f4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGJmMmQ1NzYtNDRlMC00MWFlLTgwN2UtNWYxNDhhMTIxMGY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a7bef836-e40a-4531-ba32-0eff81948f17" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -684,47 +675,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "248f2009-0e56-41e4-ab8b-d2150bcbc017" + "94d7aedb-5e4c-4a7c-bf2b-c5ad45768b65" ], "x-ms-correlation-request-id": [ - "248f2009-0e56-41e4-ab8b-d2150bcbc017" + "94d7aedb-5e4c-4a7c-bf2b-c5ad45768b65" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002857Z:248f2009-0e56-41e4-ab8b-d2150bcbc017" + "WESTUS2:20210213T031920Z:94d7aedb-5e4c-4a7c-bf2b-c5ad45768b65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:56 GMT" + "Sat, 13 Feb 2021 03:19:20 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy81Zjc5ZTQyZi1lNjBjLTQ0YTAtYjk5Yy0wOTNiYjhiYWU1MjU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/4bf2d576-44e0-41ae-807e-5f148a1210f4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0L21pZ3JhdGVUb01hbnVhbFRocm91Z2hwdXQvb3BlcmF0aW9uUmVzdWx0cy80YmYyZDU3Ni00NGUwLTQxYWUtODA3ZS01ZjE0OGExMjEwZjQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a7bef836-e40a-4531-ba32-0eff81948f17" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -744,53 +735,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "ab823a2c-e56d-413d-8e0b-192a8363827f" + "ff9a525d-955d-454b-907a-231e8b20942c" ], "x-ms-correlation-request-id": [ - "ab823a2c-e56d-413d-8e0b-192a8363827f" + "ff9a525d-955d-454b-907a-231e8b20942c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002857Z:ab823a2c-e56d-413d-8e0b-192a8363827f" + "WESTUS2:20210213T031920Z:ff9a525d-955d-454b-907a-231e8b20942c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:57 GMT" + "Sat, 13 Feb 2021 03:19:20 GMT" ], "Content-Length": [ "412" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput/operationResults/5f79e42f-e60c-44a0-b99c-093bb8bae525?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"NTdY\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/throughputSettings/default/migrateToManualThroughput\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/migrateToManualThroughput\",\r\n \"name\": \"rOp-\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"throughput\": 4000,\r\n \"minimumThroughput\": \"400\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b818191a-df9a-4f6f-802b-865321b4abc7" + "290e1201-8759-46ad-8931-cf58ad228f55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -801,13 +789,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/71d6a871-ca59-4f4f-b3b7-9b9235076085?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/71d6a871-ca59-4f4f-b3b7-9b9235076085?api-version=2021-01-15" ], "x-ms-request-id": [ - "918a1292-aab3-417a-b94a-c0656d62118e" + "71d6a871-ca59-4f4f-b3b7-9b9235076085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,47 +810,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "f0f1fa44-bef8-4543-9abc-1c01783d0192" + "7e9bfb90-983f-411b-ba2e-e51b58258391" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002857Z:f0f1fa44-bef8-4543-9abc-1c01783d0192" + "WESTUS2:20210213T031921Z:7e9bfb90-983f-411b-ba2e-e51b58258391" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:28:57 GMT" + "Sat, 13 Feb 2021 03:19:20 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d81f01-b53f-4c92-9cec-01e388a8dae5" + "41d673b6-3227-4f7d-acf8-f5a17c5e0d5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -873,13 +858,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/2ebe5131-1f3a-4fc9-b2e5-400be9fc3819?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ebe5131-1f3a-4fc9-b2e5-400be9fc3819?api-version=2021-01-15" ], "x-ms-request-id": [ - "2ee14c00-ce47-4373-9120-7a6bbc9a5be8" + "2ebe5131-1f3a-4fc9-b2e5-400be9fc3819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,41 +879,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "43bfc6f0-f385-4b1d-8e0c-2f0a780f1a74" + "30ac51ef-eef2-4a96-b09f-156cd51edd1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002929Z:43bfc6f0-f385-4b1d-8e0c-2f0a780f1a74" + "WESTUS2:20210213T031952Z:30ac51ef-eef2-4a96-b09f-156cd51edd1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:29:28 GMT" + "Sat, 13 Feb 2021 03:19:52 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTE4YTEyOTItYWFiMy00MTdhLWI5NGEtYzA2NTZkNjIxMThlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/71d6a871-ca59-4f4f-b3b7-9b9235076085?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzFkNmE4NzEtY2E1OS00ZjRmLWIzYjctOWI5MjM1MDc2MDg1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "290e1201-8759-46ad-8931-cf58ad228f55" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -948,47 +933,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "02393cab-086b-4f69-b851-21ab6dba9e7d" + "6fffb24f-4c4c-41b5-b37b-86dbf474074a" ], "x-ms-correlation-request-id": [ - "02393cab-086b-4f69-b851-21ab6dba9e7d" + "6fffb24f-4c4c-41b5-b37b-86dbf474074a" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002928Z:02393cab-086b-4f69-b851-21ab6dba9e7d" + "WESTUS2:20210213T031951Z:6fffb24f-4c4c-41b5-b37b-86dbf474074a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:29:27 GMT" + "Sat, 13 Feb 2021 03:19:51 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L29wZXJhdGlvblJlc3VsdHMvOTE4YTEyOTItYWFiMy00MTdhLWI5NGEtYzA2NTZkNjIxMThlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/71d6a871-ca59-4f4f-b3b7-9b9235076085?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L29wZXJhdGlvblJlc3VsdHMvNzFkNmE4NzEtY2E1OS00ZjRmLWIzYjctOWI5MjM1MDc2MDg1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "290e1201-8759-46ad-8931-cf58ad228f55" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1008,44 +993,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "c8ebfaf8-57ee-4e54-a059-4bd77fd27e80" + "fdfcd838-d6ad-4e9e-8c8b-cae337752835" ], "x-ms-correlation-request-id": [ - "c8ebfaf8-57ee-4e54-a059-4bd77fd27e80" + "fdfcd838-d6ad-4e9e-8c8b-cae337752835" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002928Z:c8ebfaf8-57ee-4e54-a059-4bd77fd27e80" + "WESTUS2:20210213T031951Z:fdfcd838-d6ad-4e9e-8c8b-cae337752835" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:29:27 GMT" + "Sat, 13 Feb 2021 03:19:51 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/918a1292-aab3-417a-b94a-c0656d62118e?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmVlMTRjMDAtY2U0Ny00MzczLTkxMjAtN2E2YmJjOWE1YmU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ebe5131-1f3a-4fc9-b2e5-400be9fc3819?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmViZTUxMzEtMWYzYS00ZmM5LWIyZTUtNDAwYmU5ZmMzODE5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "41d673b6-3227-4f7d-acf8-f5a17c5e0d5e" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1065,47 +1050,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "88d9d48c-5868-476b-9360-0dcb1050e075" + "619da2a4-cc4b-4eb6-ae5c-895e1a73fc17" ], "x-ms-correlation-request-id": [ - "88d9d48c-5868-476b-9360-0dcb1050e075" + "619da2a4-cc4b-4eb6-ae5c-895e1a73fc17" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002959Z:88d9d48c-5868-476b-9360-0dcb1050e075" + "WESTUS2:20210213T032023Z:619da2a4-cc4b-4eb6-ae5c-895e1a73fc17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:29:58 GMT" + "Sat, 13 Feb 2021 03:20:22 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L29wZXJhdGlvblJlc3VsdHMvMmVlMTRjMDAtY2U0Ny00MzczLTkxMjAtN2E2YmJjOWE1YmU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/2ebe5131-1f3a-4fc9-b2e5-400be9fc3819?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWU0L29wZXJhdGlvblJlc3VsdHMvMmViZTUxMzEtMWYzYS00ZmM5LWIyZTUtNDAwYmU5ZmMzODE5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "41d673b6-3227-4f7d-acf8-f5a17c5e0d5e" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1125,28 +1110,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "68f19dd2-745a-4bee-ba55-88a582137ea2" + "5714992d-cbe6-4f16-969b-f350c83e666c" ], "x-ms-correlation-request-id": [ - "68f19dd2-745a-4bee-ba55-88a582137ea2" + "5714992d-cbe6-4f16-969b-f350c83e666c" ], "x-ms-routing-request-id": [ - "WESTUS:20200903T002959Z:68f19dd2-745a-4bee-ba55-88a582137ea2" + "WESTUS2:20210213T032023Z:5714992d-cbe6-4f16-969b-f350c83e666c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Sep 2020 00:29:58 GMT" + "Sat, 13 Feb 2021 03:20:22 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName4/operationResults/2ee14c00-ce47-4373-9120-7a6bbc9a5be8?api-version=2020-04-01" ] }, "ResponseBody": "", 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 6ab174c7b7db..5baa63420010 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "415c277e-dc51-4acd-967f-db2b7579febc" + "80dc5e49-4559-4809-aef8-9358ab6626a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -36,47 +36,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "401e95ae-f174-4fda-97dc-ab697fbc99cf" + "aabc8f41-fcdd-4c3c-9569-33027d96ccd4" ], "x-ms-correlation-request-id": [ - "401e95ae-f174-4fda-97dc-ab697fbc99cf" + "aabc8f41-fcdd-4c3c-9569-33027d96ccd4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030801Z:401e95ae-f174-4fda-97dc-ab697fbc99cf" + "WESTUS2:20210213T032340Z:aabc8f41-fcdd-4c3c-9569-33027d96ccd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:00 GMT" + "Sat, 13 Feb 2021 03:23:39 GMT" ], "Content-Length": [ - "1728" + "1791" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 415c277e-dc51-4acd-967f-db2b7579febc, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354878909333286s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:08:01.5396027Z, RequestEndTime: 2020-06-10T03:08:01.5396027Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:08:01.5396027Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354878909333286s, LSN: 247, GlobalCommittedLsn: 247, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#247, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:08:01.5396027Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132360975404078673s, LSN: 247, GlobalCommittedLsn: 247, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#247, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 80dc5e49-4559-4809-aef8-9358ab6626a5, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:23:40.0077442Z, RequestEndTime: 2021-02-13T03:23:40.0077442Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:23:40.0077442Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, LSN: 357, GlobalCommittedLsn: 357, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#357, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:23:40.0077442Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132541162127553582s, LSN: 357, GlobalCommittedLsn: 357, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#357, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "80dc5e49-4559-4809-aef8-9358ab6626a5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -96,53 +96,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "25938ae2-2c86-4406-bad7-b6ed3075158f" + "62bf796d-bc6b-4c8a-901f-be5659efecf7" ], "x-ms-correlation-request-id": [ - "25938ae2-2c86-4406-bad7-b6ed3075158f" + "62bf796d-bc6b-4c8a-901f-be5659efecf7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030832Z:25938ae2-2c86-4406-bad7-b6ed3075158f" + "WESTUS2:20210213T032411Z:62bf796d-bc6b-4c8a-901f-be5659efecf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:31 GMT" + "Sat, 13 Feb 2021 03:24:11 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdae306c-0a52-4494-a53a-88c3b8b7134c" + "8c7ad61a-234b-4eb0-8727-90da2dbe8fa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -162,53 +159,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "b7f7427e-b3ac-4fe3-b180-b61a12e9264d" + "477955ad-2c86-417c-bcbd-4ed68e3497e8" ], "x-ms-correlation-request-id": [ - "b7f7427e-b3ac-4fe3-b180-b61a12e9264d" + "477955ad-2c86-417c-bcbd-4ed68e3497e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030832Z:b7f7427e-b3ac-4fe3-b180-b61a12e9264d" + "WESTUS2:20210213T032411Z:477955ad-2c86-417c-bcbd-4ed68e3497e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:31 GMT" + "Sat, 13 Feb 2021 03:24:11 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23219adf-eaa3-46e5-853d-654ed203d9fd" + "93b6d6eb-0969-4f61-9295-09a7ebcb7ba4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -228,53 +222,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "25daf5ce-f1c7-4884-871d-cb187bda6602" + "64ac12d9-9010-4824-9eaf-b9e93354baca" ], "x-ms-correlation-request-id": [ - "25daf5ce-f1c7-4884-871d-cb187bda6602" + "64ac12d9-9010-4824-9eaf-b9e93354baca" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030833Z:25daf5ce-f1c7-4884-871d-cb187bda6602" + "WESTUS2:20210213T032412Z:64ac12d9-9010-4824-9eaf-b9e93354baca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:32 GMT" + "Sat, 13 Feb 2021 03:24:11 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd23895d-5a52-4038-b1ab-ae65f75266df" + "210161f7-541b-4771-a4c2-c4815a71ff21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -294,47 +285,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "82bf653b-75dd-42a6-b09e-40c16ead0fbd" + "0f8bfb15-1c5a-4a54-8815-f870201a9d48" ], "x-ms-correlation-request-id": [ - "82bf653b-75dd-42a6-b09e-40c16ead0fbd" + "0f8bfb15-1c5a-4a54-8815-f870201a9d48" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030833Z:82bf653b-75dd-42a6-b09e-40c16ead0fbd" + "WESTUS2:20210213T032412Z:0f8bfb15-1c5a-4a54-8815-f870201a9d48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:32 GMT" + "Sat, 13 Feb 2021 03:24:12 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "210161f7-541b-4771-a4c2-c4815a71ff21" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -354,53 +345,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "eddd83af-7e07-4582-9791-dad40ac2e506" + "7787f4cb-d969-4e9c-93a0-c04e28ea7278" ], "x-ms-correlation-request-id": [ - "eddd83af-7e07-4582-9791-dad40ac2e506" + "7787f4cb-d969-4e9c-93a0-c04e28ea7278" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030904Z:eddd83af-7e07-4582-9791-dad40ac2e506" + "WESTUS2:20210213T032443Z:7787f4cb-d969-4e9c-93a0-c04e28ea7278" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:04 GMT" + "Sat, 13 Feb 2021 03:24:42 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "40d67be9-d7f3-4fc0-ba35-30a30fe65957" + "80dc5e49-4559-4809-aef8-9358ab6626a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,13 +405,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/b93e5f2a-9de2-4e65-bab1-680bbed7fc0b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/9da42ba7-0600-4f89-beea-8ac301b4968e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b93e5f2a-9de2-4e65-bab1-680bbed7fc0b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9da42ba7-0600-4f89-beea-8ac301b4968e?api-version=2021-01-15" ], "x-ms-request-id": [ - "b93e5f2a-9de2-4e65-bab1-680bbed7fc0b" + "9da42ba7-0600-4f89-beea-8ac301b4968e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,47 +426,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "a6345d33-f857-4e55-8fdd-782f927153de" + "09d40e19-88b5-4c6d-8b3a-00abeabe3af4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030802Z:a6345d33-f857-4e55-8fdd-782f927153de" + "WESTUS2:20210213T032340Z:09d40e19-88b5-4c6d-8b3a-00abeabe3af4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:01 GMT" + "Sat, 13 Feb 2021 03:23:40 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "71d3525e-a61b-4cda-8656-21387dd684b6" + "210161f7-541b-4771-a4c2-c4815a71ff21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,13 +480,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/315b3f09-8a63-4507-9025-015b7c63345f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/23934508-1064-4dbf-9da7-1a6a1b394988?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/315b3f09-8a63-4507-9025-015b7c63345f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/23934508-1064-4dbf-9da7-1a6a1b394988?api-version=2021-01-15" ], "x-ms-request-id": [ - "315b3f09-8a63-4507-9025-015b7c63345f" + "23934508-1064-4dbf-9da7-1a6a1b394988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,41 +501,41 @@ "1198" ], "x-ms-correlation-request-id": [ - "905d1ac8-316d-48e5-a541-6cb19b5a67e2" + "8badd106-3de4-4332-8bbb-bd0a4893babd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030833Z:905d1ac8-316d-48e5-a541-6cb19b5a67e2" + "WESTUS2:20210213T032412Z:8badd106-3de4-4332-8bbb-bd0a4893babd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:32 GMT" + "Sat, 13 Feb 2021 03:24:12 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b93e5f2a-9de2-4e65-bab1-680bbed7fc0b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjkzZTVmMmEtOWRlMi00ZTY1LWJhYjEtNjgwYmJlZDdmYzBiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9da42ba7-0600-4f89-beea-8ac301b4968e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWRhNDJiYTctMDYwMC00Zjg5LWJlZWEtOGFjMzAxYjQ5NjhlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "80dc5e49-4559-4809-aef8-9358ab6626a5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -570,53 +555,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "c067f255-0108-4856-83ca-fe39385e0212" + "02a6b457-640f-497a-8f61-d1bcc3d79c38" ], "x-ms-correlation-request-id": [ - "c067f255-0108-4856-83ca-fe39385e0212" + "02a6b457-640f-497a-8f61-d1bcc3d79c38" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030832Z:c067f255-0108-4856-83ca-fe39385e0212" + "WESTUS2:20210213T032410Z:02a6b457-640f-497a-8f61-d1bcc3d79c38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:31 GMT" + "Sat, 13 Feb 2021 03:24:09 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b93e5f2a-9de2-4e65-bab1-680bbed7fc0b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d2a666d-f52d-4ee2-b59a-756001d88141" + "7cc9dd6d-094a-4006-9e8b-629823d3e396" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -636,53 +618,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "34262cb7-2b76-4e22-8be2-9a8d5139fd48" + "4402ea51-16d8-42e1-935b-b64ef8eadf5f" ], "x-ms-correlation-request-id": [ - "34262cb7-2b76-4e22-8be2-9a8d5139fd48" + "4402ea51-16d8-42e1-935b-b64ef8eadf5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030832Z:34262cb7-2b76-4e22-8be2-9a8d5139fd48" + "WESTUS2:20210213T032411Z:4402ea51-16d8-42e1-935b-b64ef8eadf5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:08:31 GMT" + "Sat, 13 Feb 2021 03:24:11 GMT" ], "Content-Length": [ "355" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"YxFk\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"Ajd0\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17788b58-50f5-40a9-bd47-76f7347229c0" + "54c69a0f-d72c-4dde-9821-c1337c246a57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -702,47 +681,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-request-id": [ - "65f6ad24-95c9-4af1-83e0-423043d0110e" + "4334ebe2-70e5-49e6-9466-b0f2f904b809" ], "x-ms-correlation-request-id": [ - "65f6ad24-95c9-4af1-83e0-423043d0110e" + "4334ebe2-70e5-49e6-9466-b0f2f904b809" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030904Z:65f6ad24-95c9-4af1-83e0-423043d0110e" + "WESTUS2:20210213T032443Z:4334ebe2-70e5-49e6-9466-b0f2f904b809" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:04 GMT" + "Sat, 13 Feb 2021 03:24:43 GMT" ], "Content-Length": [ "355" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"YxFk\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"Ajd0\",\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/315b3f09-8a63-4507-9025-015b7c63345f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzE1YjNmMDktOGE2My00NTA3LTkwMjUtMDE1YjdjNjMzNDVmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/23934508-1064-4dbf-9da7-1a6a1b394988?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjM5MzQ1MDgtMTA2NC00ZGJmLTlkYTctMWE2YTFiMzk0OTg4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "210161f7-541b-4771-a4c2-c4815a71ff21" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -762,53 +741,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "3fc893c5-f62c-4b56-96de-c6d28919ddd7" + "d0d6e006-026a-4c9a-906b-1bfbef7a558d" ], "x-ms-correlation-request-id": [ - "3fc893c5-f62c-4b56-96de-c6d28919ddd7" + "d0d6e006-026a-4c9a-906b-1bfbef7a558d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030903Z:3fc893c5-f62c-4b56-96de-c6d28919ddd7" + "WESTUS2:20210213T032443Z:d0d6e006-026a-4c9a-906b-1bfbef7a558d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:03 GMT" + "Sat, 13 Feb 2021 03:24:42 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/315b3f09-8a63-4507-9025-015b7c63345f?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table2?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table2?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTI/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b6f2fb-64a2-45a6-b4ba-4b20fc1bfc5d" + "89f01b7d-f4fb-4106-85f8-a797e1093f9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -828,53 +804,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-request-id": [ - "4e006bc6-b479-4c43-9788-16adc3fb098f" + "9a37fdb1-0422-48f4-879f-4d64df73ca5e" ], "x-ms-correlation-request-id": [ - "4e006bc6-b479-4c43-9788-16adc3fb098f" + "9a37fdb1-0422-48f4-879f-4d64df73ca5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030905Z:4e006bc6-b479-4c43-9788-16adc3fb098f" + "WESTUS2:20210213T032443Z:9a37fdb1-0422-48f4-879f-4d64df73ca5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:04 GMT" + "Sat, 13 Feb 2021 03:24:43 GMT" ], "Content-Length": [ - "1728" + "1791" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table2?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 63b6f2fb-64a2-45a6-b4ba-4b20fc1bfc5d, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354875898024085s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:09:05.0286579Z, RequestEndTime: 2020-06-10T03:09:05.0286579Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:09:05.0286579Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354875898024085s, LSN: 249, GlobalCommittedLsn: 249, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#249, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:09:05.0286579Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354878909333286s, LSN: 249, GlobalCommittedLsn: 249, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#249, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 89f01b7d-f4fb-4106-85f8-a797e1093f9b, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:24:43.7189398Z, RequestEndTime: 2021-02-13T03:24:43.7189398Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:24:43.7189398Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, LSN: 359, GlobalCommittedLsn: 359, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#359, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:24:43.7189398Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132541162127553582s, LSN: 359, GlobalCommittedLsn: 359, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#359, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ee3776-a63e-4c75-bd23-8219694287f6" + "ececc94b-ebb0-4c4c-8ac9-2bd497b452ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -894,53 +867,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-request-id": [ - "0c0384bf-9676-41d9-a6da-db2c0658a37c" + "4d111823-d96e-46a7-ba1b-4baed7820bcb" ], "x-ms-correlation-request-id": [ - "0c0384bf-9676-41d9-a6da-db2c0658a37c" + "4d111823-d96e-46a7-ba1b-4baed7820bcb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030905Z:0c0384bf-9676-41d9-a6da-db2c0658a37c" + "WESTUS2:20210213T032443Z:4d111823-d96e-46a7-ba1b-4baed7820bcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:05 GMT" + "Sat, 13 Feb 2021 03:24:43 GMT" ], "Content-Length": [ "384" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJGGwb0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed4-5cafe40101d6\\\"\",\r\n \"_ts\": 1591758486\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAM1rETA=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-a26d900101d7\\\"\",\r\n \"_ts\": 1613186624\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4011f85-14f7-4400-b99d-4d268e6d85d4" + "2b9212f9-a3a7-4586-960a-ccc3eaa59d85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -951,13 +921,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/a76c006f-b576-44b5-8bb5-da3fa726f13a?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a76c006f-b576-44b5-8bb5-da3fa726f13a?api-version=2021-01-15" ], "x-ms-request-id": [ - "cc065af5-4239-44bb-b8c1-f84912db4904" + "a76c006f-b576-44b5-8bb5-da3fa726f13a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,50 +939,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "1b209396-145e-425d-b145-ee84a84808dc" + "360c0be9-0fb1-43b5-98eb-cdca81c39e77" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030905Z:1b209396-145e-425d-b145-ee84a84808dc" + "WESTUS2:20210213T032444Z:360c0be9-0fb1-43b5-98eb-cdca81c39e77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:05 GMT" + "Sat, 13 Feb 2021 03:24:43 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fcc2c7a-9e52-4c82-b370-3aef3f81c83d" + "25132846-4c8a-4c2d-9363-bb8b471285a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1023,13 +990,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/ccd388b7-f6a2-43b0-8ea6-f230f2d7e8c1?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ccd388b7-f6a2-43b0-8ea6-f230f2d7e8c1?api-version=2021-01-15" ], "x-ms-request-id": [ - "87fef590-ebb9-4818-9f77-2ed6ca240e89" + "ccd388b7-f6a2-43b0-8ea6-f230f2d7e8c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,44 +1008,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "871e5ef6-bf0e-47a7-80c4-b1efc2c1ba70" + "709e3048-4387-4b46-bc31-647dfe234893" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030936Z:871e5ef6-bf0e-47a7-80c4-b1efc2c1ba70" + "WESTUS2:20210213T032516Z:709e3048-4387-4b46-bc31-647dfe234893" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:36 GMT" + "Sat, 13 Feb 2021 03:25:15 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2MwNjVhZjUtNDIzOS00NGJiLWI4YzEtZjg0OTEyZGI0OTA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a76c006f-b576-44b5-8bb5-da3fa726f13a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTc2YzAwNmYtYjU3Ni00NGI1LThiYjUtZGEzZmE3MjZmMTNhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9212f9-a3a7-4586-960a-ccc3eaa59d85" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1098,47 +1065,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11987" ], "x-ms-request-id": [ - "ac5cc02e-325b-4111-9f2f-44ac0e531633" + "41a29a91-4056-4b6e-94cd-65029fd45903" ], "x-ms-correlation-request-id": [ - "ac5cc02e-325b-4111-9f2f-44ac0e531633" + "41a29a91-4056-4b6e-94cd-65029fd45903" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030936Z:ac5cc02e-325b-4111-9f2f-44ac0e531633" + "WESTUS2:20210213T032514Z:41a29a91-4056-4b6e-94cd-65029fd45903" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:35 GMT" + "Sat, 13 Feb 2021 03:25:13 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy9jYzA2NWFmNS00MjM5LTQ0YmItYjhjMS1mODQ5MTJkYjQ5MDQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/a76c006f-b576-44b5-8bb5-da3fa726f13a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy9hNzZjMDA2Zi1iNTc2LTQ0YjUtOGJiNS1kYTNmYTcyNmYxM2E/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b9212f9-a3a7-4586-960a-ccc3eaa59d85" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1158,44 +1125,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11986" ], "x-ms-request-id": [ - "a5aa60c1-76f5-44c8-8e94-25067cb43472" + "69645da9-c831-4442-95b0-66ae7cf83539" ], "x-ms-correlation-request-id": [ - "a5aa60c1-76f5-44c8-8e94-25067cb43472" + "69645da9-c831-4442-95b0-66ae7cf83539" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030936Z:a5aa60c1-76f5-44c8-8e94-25067cb43472" + "WESTUS2:20210213T032514Z:69645da9-c831-4442-95b0-66ae7cf83539" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:09:35 GMT" + "Sat, 13 Feb 2021 03:25:13 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/cc065af5-4239-44bb-b8c1-f84912db4904?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODdmZWY1OTAtZWJiOS00ODE4LTlmNzctMmVkNmNhMjQwZTg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ccd388b7-f6a2-43b0-8ea6-f230f2d7e8c1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvY2NkMzg4YjctZjZhMi00M2IwLThlYTYtZjIzMGYyZDdlOGMxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "25132846-4c8a-4c2d-9363-bb8b471285a3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1215,47 +1182,47 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11967" ], "x-ms-request-id": [ - "dbbada3c-b28d-44cd-8439-4b483a086f58" + "86106338-e928-4934-9325-7bf44a3ca3c9" ], "x-ms-correlation-request-id": [ - "dbbada3c-b28d-44cd-8439-4b483a086f58" + "86106338-e928-4934-9325-7bf44a3ca3c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031006Z:dbbada3c-b28d-44cd-8439-4b483a086f58" + "WESTUS2:20210213T032546Z:86106338-e928-4934-9325-7bf44a3ca3c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:06 GMT" + "Sat, 13 Feb 2021 03:25:45 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy84N2ZlZjU5MC1lYmI5LTQ4MTgtOWY3Ny0yZWQ2Y2EyNDBlODk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/ccd388b7-f6a2-43b0-8ea6-f230f2d7e8c1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy9jY2QzODhiNy1mNmEyLTQzYjAtOGVhNi1mMjMwZjJkN2U4YzE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "25132846-4c8a-4c2d-9363-bb8b471285a3" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1275,28 +1242,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11966" ], "x-ms-request-id": [ - "72baf1f8-df56-4dbd-8ba7-63bd091d49d9" + "4b84dd4b-1fb9-4391-a423-ab90fa3324a9" ], "x-ms-correlation-request-id": [ - "72baf1f8-df56-4dbd-8ba7-63bd091d49d9" + "4b84dd4b-1fb9-4391-a423-ab90fa3324a9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T031007Z:72baf1f8-df56-4dbd-8ba7-63bd091d49d9" + "WESTUS2:20210213T032546Z:4b84dd4b-1fb9-4391-a423-ab90fa3324a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:10:06 GMT" + "Sat, 13 Feb 2021 03:25:46 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/87fef590-ebb9-4818-9f77-2ed6ca240e89?api-version=2020-04-01" ] }, "ResponseBody": "", 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 cc9668efdb6a..8bc41dd30b32 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbb0279f-b6ed-4e92-950f-1212ec312715" + "c398014d-936b-40ee-9320-854c90db6fec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,50 +39,47 @@ "11999" ], "x-ms-request-id": [ - "66d487be-01fd-4c18-91d7-1d5b5fe1d94f" + "cafbd018-00fa-4cd3-bf87-c93523455355" ], "x-ms-correlation-request-id": [ - "66d487be-01fd-4c18-91d7-1d5b5fe1d94f" + "cafbd018-00fa-4cd3-bf87-c93523455355" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030210Z:66d487be-01fd-4c18-91d7-1d5b5fe1d94f" + "WESTUS2:20210213T031500Z:cafbd018-00fa-4cd3-bf87-c93523455355" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:09 GMT" + "Sat, 13 Feb 2021 03:14:59 GMT" ], "Content-Length": [ - "1832" + "2200" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:58:42.873838Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"bb56fa0e-a388-4702-9ea9-393360c606fd\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58faabdb-9226-4a83-926a-c8f9250e2676" + "fc6ba200-0d8f-4423-987f-35f18107a092" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -105,44 +102,44 @@ "11998" ], "x-ms-request-id": [ - "e77db884-ae6f-4247-bf32-7c4d00a4cf57" + "68886882-0a4c-40b8-94f3-0a31e6816577" ], "x-ms-correlation-request-id": [ - "e77db884-ae6f-4247-bf32-7c4d00a4cf57" + "68886882-0a4c-40b8-94f3-0a31e6816577" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030210Z:e77db884-ae6f-4247-bf32-7c4d00a4cf57" + "WESTUS2:20210213T031500Z:68886882-0a4c-40b8-94f3-0a31e6816577" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:10 GMT" + "Sat, 13 Feb 2021 03:14:59 GMT" ], "Content-Length": [ - "1728" + "1791" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 58faabdb-9226-4a83-926a-c8f9250e2676, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132360975404078673s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T03:02:10.5050751Z, RequestEndTime: 2020-06-10T03:02:10.5150760Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T03:02:10.5150760Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132360975404078673s, LSN: 234, GlobalCommittedLsn: 234, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#234, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T03:02:10.5150760Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354875898024085s, LSN: 234, GlobalCommittedLsn: 234, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#234, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: fc6ba200-0d8f-4423-987f-35f18107a092, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132545225780040312s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:15:00.4679692Z, RequestEndTime: 2021-02-13T03:15:00.4679692Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:15:00.4679692Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132545225780040312s, LSN: 338, GlobalCommittedLsn: 338, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#338, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:15:00.4679692Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, LSN: 338, GlobalCommittedLsn: 338, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#338, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/table1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fc6ba200-0d8f-4423-987f-35f18107a092" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -165,50 +162,47 @@ "11996" ], "x-ms-request-id": [ - "3a49b480-2efc-47e6-8313-4326e963c943" + "ff031229-db9a-4c8c-9f26-630b7c8c30d1" ], "x-ms-correlation-request-id": [ - "3a49b480-2efc-47e6-8313-4326e963c943" + "ff031229-db9a-4c8c-9f26-630b7c8c30d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030241Z:3a49b480-2efc-47e6-8313-4326e963c943" + "WESTUS2:20210213T031531Z:ff031229-db9a-4c8c-9f26-630b7c8c30d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:41 GMT" + "Sat, 13 Feb 2021 03:15:31 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e705b24b-1e86-42e2-a837-7d65580809ff" + "cef358d7-7967-4ad9-b5ad-5dc65a9f5553" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -231,50 +225,47 @@ "11994" ], "x-ms-request-id": [ - "283e5473-653a-4e8f-adff-2ac3f50bfe46" + "f75564cb-54e3-48b7-9c50-3e7231a8d147" ], "x-ms-correlation-request-id": [ - "283e5473-653a-4e8f-adff-2ac3f50bfe46" + "f75564cb-54e3-48b7-9c50-3e7231a8d147" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030242Z:283e5473-653a-4e8f-adff-2ac3f50bfe46" + "WESTUS2:20210213T031532Z:f75564cb-54e3-48b7-9c50-3e7231a8d147" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:41 GMT" + "Sat, 13 Feb 2021 03:15:31 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff8c9377-d2f0-47bf-8be8-435d5bd7cf75" + "3c5f42cc-9eaa-4617-bed7-0017112604b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -297,44 +288,44 @@ "11993" ], "x-ms-request-id": [ - "6fe0b582-d99b-411d-bed8-4486fe67564e" + "535301c7-67ff-4b33-944e-1cc7df67c8dc" ], "x-ms-correlation-request-id": [ - "6fe0b582-d99b-411d-bed8-4486fe67564e" + "535301c7-67ff-4b33-944e-1cc7df67c8dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030242Z:6fe0b582-d99b-411d-bed8-4486fe67564e" + "WESTUS2:20210213T031532Z:535301c7-67ff-4b33-944e-1cc7df67c8dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:41 GMT" + "Sat, 13 Feb 2021 03:15:32 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3c5f42cc-9eaa-4617-bed7-0017112604b2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -357,50 +348,47 @@ "11991" ], "x-ms-request-id": [ - "2f68f517-8527-49db-910f-9ddb38a8f945" + "25e8a541-9d6c-491c-9ddf-5511f48b393c" ], "x-ms-correlation-request-id": [ - "2f68f517-8527-49db-910f-9ddb38a8f945" + "25e8a541-9d6c-491c-9ddf-5511f48b393c" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030313Z:2f68f517-8527-49db-910f-9ddb38a8f945" + "WESTUS2:20210213T031603Z:25e8a541-9d6c-491c-9ddf-5511f48b393c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:12 GMT" + "Sat, 13 Feb 2021 03:16:03 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee5242ef-7fdb-452d-b06f-88e219e6f915" + "994bfac7-328e-4671-bdfb-b5357032c2da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -423,44 +411,44 @@ "11989" ], "x-ms-request-id": [ - "da42a4b4-0e52-4c50-9a37-e58a77b63540" + "a9ff27fa-6526-444b-9e5e-6d65bd15124f" ], "x-ms-correlation-request-id": [ - "da42a4b4-0e52-4c50-9a37-e58a77b63540" + "a9ff27fa-6526-444b-9e5e-6d65bd15124f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030313Z:da42a4b4-0e52-4c50-9a37-e58a77b63540" + "WESTUS2:20210213T031604Z:a9ff27fa-6526-444b-9e5e-6d65bd15124f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:13 GMT" + "Sat, 13 Feb 2021 03:16:03 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "994bfac7-328e-4671-bdfb-b5357032c2da" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -483,50 +471,47 @@ "11987" ], "x-ms-request-id": [ - "b4d7a54b-31ab-4f2a-90eb-c05021e37426" + "09955202-b040-4586-91d7-64e81e2e54c3" ], "x-ms-correlation-request-id": [ - "b4d7a54b-31ab-4f2a-90eb-c05021e37426" + "09955202-b040-4586-91d7-64e81e2e54c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030345Z:b4d7a54b-31ab-4f2a-90eb-c05021e37426" + "WESTUS2:20210213T031636Z:09955202-b040-4586-91d7-64e81e2e54c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:45 GMT" + "Sat, 13 Feb 2021 03:16:36 GMT" ], "Content-Length": [ "372" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "205389b9-ad13-4a5a-a7fa-37059ced0606" + "fc6ba200-0d8f-4423-987f-35f18107a092" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +528,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/f390b63e-ce72-4573-a7e2-14e6151a2510?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/a919e420-19a9-49f8-94cc-245ec7cc951b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f390b63e-ce72-4573-a7e2-14e6151a2510?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a919e420-19a9-49f8-94cc-245ec7cc951b?api-version=2021-01-15" ], "x-ms-request-id": [ - "f390b63e-ce72-4573-a7e2-14e6151a2510" + "a919e420-19a9-49f8-94cc-245ec7cc951b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +549,44 @@ "1199" ], "x-ms-correlation-request-id": [ - "be051e56-df13-4ebd-b90e-70d55c76aee7" + "b77baf77-dbea-43c0-9f7e-2ab88fefe24e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030211Z:be051e56-df13-4ebd-b90e-70d55c76aee7" + "WESTUS2:20210213T031501Z:b77baf77-dbea-43c0-9f7e-2ab88fefe24e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:10 GMT" + "Sat, 13 Feb 2021 03:15:00 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "56d27d7e-d8f5-45b4-8bcc-81a35d4aeda2" + "3c5f42cc-9eaa-4617-bed7-0017112604b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +603,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/35526c9d-6bd8-40da-bf76-d94da80512a3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/88fc0f84-fd34-472e-a251-f0a2dd325488?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35526c9d-6bd8-40da-bf76-d94da80512a3?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/88fc0f84-fd34-472e-a251-f0a2dd325488?api-version=2021-01-15" ], "x-ms-request-id": [ - "35526c9d-6bd8-40da-bf76-d94da80512a3" + "88fc0f84-fd34-472e-a251-f0a2dd325488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +624,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "dbbc1547-5a30-48f8-b5ae-dbbed2376f2e" + "a4be78c2-fe9f-405b-b4a7-5621bfc6f8c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030243Z:dbbc1547-5a30-48f8-b5ae-dbbed2376f2e" + "WESTUS2:20210213T031533Z:a4be78c2-fe9f-405b-b4a7-5621bfc6f8c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:42 GMT" + "Sat, 13 Feb 2021 03:15:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "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": [ - "bf260874-aab1-4ea5-928f-1bd58ee301f6" + "994bfac7-328e-4671-bdfb-b5357032c2da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +678,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/fbe5beda-9d79-4bab-b1a9-1b033f5d6669?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/a5052ec5-fafd-45bc-a53d-153ce036d09b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe5beda-9d79-4bab-b1a9-1b033f5d6669?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5052ec5-fafd-45bc-a53d-153ce036d09b?api-version=2021-01-15" ], "x-ms-request-id": [ - "fbe5beda-9d79-4bab-b1a9-1b033f5d6669" + "a5052ec5-fafd-45bc-a53d-153ce036d09b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +699,41 @@ "1197" ], "x-ms-correlation-request-id": [ - "5372fad8-8c39-4a71-b825-3ff0449b06a4" + "ce2409e6-4491-4855-92e5-9d8537a99599" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030314Z:5372fad8-8c39-4a71-b825-3ff0449b06a4" + "WESTUS2:20210213T031605Z:ce2409e6-4491-4855-92e5-9d8537a99599" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:13 GMT" + "Sat, 13 Feb 2021 03:16:04 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f390b63e-ce72-4573-a7e2-14e6151a2510?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjM5MGI2M2UtY2U3Mi00NTczLWE3ZTItMTRlNjE1MWEyNTEwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a919e420-19a9-49f8-94cc-245ec7cc951b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkxOWU0MjAtMTlhOS00OWY4LTk0Y2MtMjQ1ZWM3Y2M5NTFiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fc6ba200-0d8f-4423-987f-35f18107a092" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -777,50 +756,47 @@ "11997" ], "x-ms-request-id": [ - "52cbfc51-e958-4719-b4f2-8e0d7a61d31e" + "905cffcd-33f3-46de-90ca-f7ed16d84bb1" ], "x-ms-correlation-request-id": [ - "52cbfc51-e958-4719-b4f2-8e0d7a61d31e" + "905cffcd-33f3-46de-90ca-f7ed16d84bb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030241Z:52cbfc51-e958-4719-b4f2-8e0d7a61d31e" + "WESTUS2:20210213T031531Z:905cffcd-33f3-46de-90ca-f7ed16d84bb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:40 GMT" + "Sat, 13 Feb 2021 03:15:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f390b63e-ce72-4573-a7e2-14e6151a2510?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa97b14c-d56a-4d08-92fd-96246283c7cc" + "c2048fb1-a64a-429f-af42-b2f611a3cb49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -843,50 +819,47 @@ "11995" ], "x-ms-request-id": [ - "df2833e2-a8fd-4bd5-9186-c125d404bec2" + "58125a43-09cc-4c9f-9caf-dc1851168376" ], "x-ms-correlation-request-id": [ - "df2833e2-a8fd-4bd5-9186-c125d404bec2" + "58125a43-09cc-4c9f-9caf-dc1851168376" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030242Z:df2833e2-a8fd-4bd5-9186-c125d404bec2" + "WESTUS2:20210213T031532Z:58125a43-09cc-4c9f-9caf-dc1851168376" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:02:41 GMT" + "Sat, 13 Feb 2021 03:15:31 GMT" ], "Content-Length": [ "355" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"R9Oe\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"PC-u\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86df95ea-9389-424d-8f3d-988c3da30565" + "b11c6d5e-6d60-42be-8aee-7b26c41a4501" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -909,50 +882,47 @@ "11990" ], "x-ms-request-id": [ - "4094b99a-1291-481e-917b-983edc330de7" + "2bccc2ff-1a5a-44a1-8f6a-af95f4c11133" ], "x-ms-correlation-request-id": [ - "4094b99a-1291-481e-917b-983edc330de7" + "2bccc2ff-1a5a-44a1-8f6a-af95f4c11133" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030313Z:4094b99a-1291-481e-917b-983edc330de7" + "WESTUS2:20210213T031604Z:2bccc2ff-1a5a-44a1-8f6a-af95f4c11133" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:12 GMT" + "Sat, 13 Feb 2021 03:16:03 GMT" ], "Content-Length": [ "355" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"R9Oe\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"PC-u\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvdGhyb3VnaHB1dFNldHRpbmdzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76ea8f2c-4f6e-41db-b33d-2120a87d84c5" + "4759bd89-7d2b-4a8e-b3ed-32f444713088" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -975,44 +945,44 @@ "11986" ], "x-ms-request-id": [ - "1ac3e05c-363b-4187-8218-912f2be01d94" + "d3ec7ccf-b83e-4c2f-b244-c486b34a3d6e" ], "x-ms-correlation-request-id": [ - "1ac3e05c-363b-4187-8218-912f2be01d94" + "d3ec7ccf-b83e-4c2f-b244-c486b34a3d6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030345Z:1ac3e05c-363b-4187-8218-912f2be01d94" + "WESTUS2:20210213T031636Z:d3ec7ccf-b83e-4c2f-b244-c486b34a3d6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:45 GMT" + "Sat, 13 Feb 2021 03:16:36 GMT" ], "Content-Length": [ "355" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"R9Oe\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"PC-u\",\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/35526c9d-6bd8-40da-bf76-d94da80512a3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzU1MjZjOWQtNmJkOC00MGRhLWJmNzYtZDk0ZGE4MDUxMmEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/88fc0f84-fd34-472e-a251-f0a2dd325488?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODhmYzBmODQtZmQzNC00NzJlLWEyNTEtZjBhMmRkMzI1NDg4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3c5f42cc-9eaa-4617-bed7-0017112604b2" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1035,44 +1005,44 @@ "11992" ], "x-ms-request-id": [ - "fc393cfc-450c-4837-9f7b-91412b74124d" + "59844e3c-189d-4577-b64f-19c5773bc7a7" ], "x-ms-correlation-request-id": [ - "fc393cfc-450c-4837-9f7b-91412b74124d" + "59844e3c-189d-4577-b64f-19c5773bc7a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030313Z:fc393cfc-450c-4837-9f7b-91412b74124d" + "WESTUS2:20210213T031603Z:59844e3c-189d-4577-b64f-19c5773bc7a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:12 GMT" + "Sat, 13 Feb 2021 03:16:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/35526c9d-6bd8-40da-bf76-d94da80512a3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe5beda-9d79-4bab-b1a9-1b033f5d6669?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmJlNWJlZGEtOWQ3OS00YmFiLWIxYTktMWIwMzNmNWQ2NjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a5052ec5-fafd-45bc-a53d-153ce036d09b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTUwNTJlYzUtZmFmZC00NWJjLWE1M2QtMTUzY2UwMzZkMDliP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "994bfac7-328e-4671-bdfb-b5357032c2da" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1095,50 +1065,47 @@ "11988" ], "x-ms-request-id": [ - "28029c69-cc7d-4afb-a75a-b79bd9c02693" + "c2215e82-1e2e-41a1-b340-c273b2b25e7b" ], "x-ms-correlation-request-id": [ - "28029c69-cc7d-4afb-a75a-b79bd9c02693" + "c2215e82-1e2e-41a1-b340-c273b2b25e7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030344Z:28029c69-cc7d-4afb-a75a-b79bd9c02693" + "WESTUS2:20210213T031635Z:c2215e82-1e2e-41a1-b340-c273b2b25e7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:44 GMT" + "Sat, 13 Feb 2021 03:16:35 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/fbe5beda-9d79-4bab-b1a9-1b033f5d6669?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c87d1d3-d305-49ac-b686-8fa04ef9a2e7" + "3638b4ed-3c04-4325-b260-e2f0c71f1791" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1161,50 +1128,47 @@ "11985" ], "x-ms-request-id": [ - "aa847004-4475-4829-8637-17e3b467e826" + "532b9267-8341-4511-9491-512eb4dbf79a" ], "x-ms-correlation-request-id": [ - "aa847004-4475-4829-8637-17e3b467e826" + "532b9267-8341-4511-9491-512eb4dbf79a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030345Z:aa847004-4475-4829-8637-17e3b467e826" + "WESTUS2:20210213T031637Z:532b9267-8341-4511-9491-512eb4dbf79a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:45 GMT" + "Sat, 13 Feb 2021 03:16:36 GMT" ], "Content-Length": [ "384" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAJ1RS2Q=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3ed3-8bd48c0101d6\\\"\",\r\n \"_ts\": 1591758135\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAPUiN0E=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b6-6cc6740101d7\\\"\",\r\n \"_ts\": 1613186105\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5e26e3e-1ad7-4032-8e4e-93e9b8e0d952" + "ec1327dc-fc3e-456e-b103-d3a4a15f87bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1215,13 +1179,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/12e35af4-84f8-4db2-8e5f-99e716edb337?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/12e35af4-84f8-4db2-8e5f-99e716edb337?api-version=2021-01-15" ], "x-ms-request-id": [ - "196f510d-d917-4a3e-bcc3-b5a199066195" + "12e35af4-84f8-4db2-8e5f-99e716edb337" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,47 +1200,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "8c886e18-2478-4315-b09c-2fc946e4fcdf" + "655424c2-8b6b-4510-9a28-11865792f7b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030346Z:8c886e18-2478-4315-b09c-2fc946e4fcdf" + "WESTUS2:20210213T031637Z:655424c2-8b6b-4510-9a28-11865792f7b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:03:46 GMT" + "Sat, 13 Feb 2021 03:16:37 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTE/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56462c24-4b71-4b5b-b9ca-762687fbb172" + "2ba222f5-9b2a-49ba-a8bc-6b211e73767b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1287,13 +1248,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/2c66cc94-cbe1-4c0a-8f56-11a4b7fbc42e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c66cc94-cbe1-4c0a-8f56-11a4b7fbc42e?api-version=2021-01-15" ], "x-ms-request-id": [ - "2490b4a7-032b-4ee4-a5a9-f281ca5d238b" + "2c66cc94-cbe1-4c0a-8f56-11a4b7fbc42e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,41 +1269,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "6e62b7d6-0012-4f63-972c-1bfccdf6c869" + "97d48184-ef42-4dd6-90cc-aabbc244c8e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030417Z:6e62b7d6-0012-4f63-972c-1bfccdf6c869" + "WESTUS2:20210213T031708Z:97d48184-ef42-4dd6-90cc-aabbc244c8e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:04:17 GMT" + "Sat, 13 Feb 2021 03:17:08 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTk2ZjUxMGQtZDkxNy00YTNlLWJjYzMtYjVhMTk5MDY2MTk1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/12e35af4-84f8-4db2-8e5f-99e716edb337?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTJlMzVhZjQtODRmOC00ZGIyLThlNWYtOTllNzE2ZWRiMzM3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ec1327dc-fc3e-456e-b103-d3a4a15f87bb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1365,44 +1326,44 @@ "11984" ], "x-ms-request-id": [ - "f6b3d2ec-6ffa-428e-bdcd-077fb8806835" + "e5cdf625-9d30-4420-86c6-5200b2f2c8d4" ], "x-ms-correlation-request-id": [ - "f6b3d2ec-6ffa-428e-bdcd-077fb8806835" + "e5cdf625-9d30-4420-86c6-5200b2f2c8d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030416Z:f6b3d2ec-6ffa-428e-bdcd-077fb8806835" + "WESTUS2:20210213T031707Z:e5cdf625-9d30-4420-86c6-5200b2f2c8d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:04:15 GMT" + "Sat, 13 Feb 2021 03:17:06 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy8xOTZmNTEwZC1kOTE3LTRhM2UtYmNjMy1iNWExOTkwNjYxOTU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/12e35af4-84f8-4db2-8e5f-99e716edb337?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy8xMmUzNWFmNC04NGY4LTRkYjItOGU1Zi05OWU3MTZlZGIzMzc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ec1327dc-fc3e-456e-b103-d3a4a15f87bb" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1425,41 +1386,41 @@ "11983" ], "x-ms-request-id": [ - "6c83139b-250c-4254-8af6-a899c310bc4f" + "7034a993-dced-47e7-bc61-cf977497d751" ], "x-ms-correlation-request-id": [ - "6c83139b-250c-4254-8af6-a899c310bc4f" + "7034a993-dced-47e7-bc61-cf977497d751" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030416Z:6c83139b-250c-4254-8af6-a899c310bc4f" + "WESTUS2:20210213T031707Z:7034a993-dced-47e7-bc61-cf977497d751" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:04:16 GMT" + "Sat, 13 Feb 2021 03:17:06 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/196f510d-d917-4a3e-bcc3-b5a199066195?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjQ5MGI0YTctMDMyYi00ZWU0LWE1YTktZjI4MWNhNWQyMzhiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c66cc94-cbe1-4c0a-8f56-11a4b7fbc42e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmM2NmNjOTQtY2JlMS00YzBhLThmNTYtMTFhNGI3ZmJjNDJlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba222f5-9b2a-49ba-a8bc-6b211e73767b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1482,44 +1443,44 @@ "11999" ], "x-ms-request-id": [ - "275599d6-7c8e-4072-babb-b154678b4d21" + "ad67d816-90c9-491a-9d5f-8ace643086b9" ], "x-ms-correlation-request-id": [ - "275599d6-7c8e-4072-babb-b154678b4d21" + "ad67d816-90c9-491a-9d5f-8ace643086b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030448Z:275599d6-7c8e-4072-babb-b154678b4d21" + "WESTUS2:20210213T031738Z:ad67d816-90c9-491a-9d5f-8ace643086b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:04:47 GMT" + "Sat, 13 Feb 2021 03:17:38 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy8yNDkwYjRhNy0wMzJiLTRlZTQtYTVhOS1mMjgxY2E1ZDIzOGI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/2c66cc94-cbe1-4c0a-8f56-11a4b7fbc42e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZTEvb3BlcmF0aW9uUmVzdWx0cy8yYzY2Y2M5NC1jYmUxLTRjMGEtOGY1Ni0xMWE0YjdmYmM0MmU/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba222f5-9b2a-49ba-a8bc-6b211e73767b" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1542,25 +1503,22 @@ "11998" ], "x-ms-request-id": [ - "b9233244-a99c-47d9-9c2c-2885a113bb09" + "39b51195-7347-4072-b267-e984446eaeb8" ], "x-ms-correlation-request-id": [ - "b9233244-a99c-47d9-9c2c-2885a113bb09" + "39b51195-7347-4072-b267-e984446eaeb8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T030448Z:b9233244-a99c-47d9-9c2c-2885a113bb09" + "WESTUS2:20210213T031739Z:39b51195-7347-4072-b267-e984446eaeb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 03:04:47 GMT" + "Sat, 13 Feb 2021 03:17:38 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/table1/operationResults/2490b4a7-032b-4ee4-a5a9-f281ca5d238b?api-version=2020-04-01" ] }, "ResponseBody": "", 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 63754ffa7a33..c9365f8360e6 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 @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "381ad927-e851-46d1-92ac-093e70f733e2" + "e5270384-b486-44b5-a496-87af51b1dc5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -39,44 +39,44 @@ "11999" ], "x-ms-request-id": [ - "c3e3de18-5587-402e-9505-4dedf3866fda" + "5380cbdd-40d7-4552-87b7-9e5f2a35a2aa" ], "x-ms-correlation-request-id": [ - "c3e3de18-5587-402e-9505-4dedf3866fda" + "5380cbdd-40d7-4552-87b7-9e5f2a35a2aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193853Z:c3e3de18-5587-402e-9505-4dedf3866fda" + "WESTUS2:20210213T032027Z:5380cbdd-40d7-4552-87b7-9e5f2a35a2aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:38:52 GMT" + "Sat, 13 Feb 2021 03:20:26 GMT" ], "Content-Length": [ - "1732" + "1795" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found\\\\\\\"]}\\\\r\\\\nActivityId: 381ad927-e851-46d1-92ac-093e70f733e2, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132360975404078673s, RequestStats: \\\\r\\\\nRequestStartTime: 2020-06-10T19:38:53.0876844Z, RequestEndTime: 2020-06-10T19:38:53.0876844Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2020-06-10T19:38:53.0876844Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132360975404078673s, LSN: 252, GlobalCommittedLsn: 252, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#252, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2020-06-10T19:38:53.0876844Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132354875898024085s, LSN: 252, GlobalCommittedLsn: 252, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#252, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/tableName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: e5270384-b486-44b5-a496-87af51b1dc5c, Request URI: /apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:20:27.6790264Z, RequestEndTime: 2021-02-13T03:20:27.6790264Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:20:27.6790264Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132521264027090247s, LSN: 350, GlobalCommittedLsn: 350, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#350, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:20:27.6790264Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.29:11000/apps/14f20595-004b-43ef-a720-15e702d0d3bd/services/14f8b77f-8e14-4962-a5f2-94f4941ac15d/partitions/e1ea70d5-0cf9-407a-ae94-ca29b2bfa572/replicas/132541162127553582s, LSN: 350, GlobalCommittedLsn: 350, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#350, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/TablesDB/colls/tableName3, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e5270384-b486-44b5-a496-87af51b1dc5c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -99,50 +99,47 @@ "11997" ], "x-ms-request-id": [ - "2e28da70-f279-40dc-9d4e-81c3847f27b9" + "2dae3160-672f-4357-a755-a8ecff6fd830" ], "x-ms-correlation-request-id": [ - "2e28da70-f279-40dc-9d4e-81c3847f27b9" + "2dae3160-672f-4357-a755-a8ecff6fd830" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193924Z:2e28da70-f279-40dc-9d4e-81c3847f27b9" + "WESTUS2:20210213T032058Z:2dae3160-672f-4357-a755-a8ecff6fd830" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:24 GMT" + "Sat, 13 Feb 2021 03:20:58 GMT" ], "Content-Length": [ "384" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIALlrcuM=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-3f5e-c920b00101d6\\\"\",\r\n \"_ts\": 1591817938\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/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\": \"bilIAMVyB3Y=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-01b7-30408c0101d7\\\"\",\r\n \"_ts\": 1613186433\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "ab7c1639-bcf3-4122-a0c3-6d7ff05485d5" + "e5270384-b486-44b5-a496-87af51b1dc5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +156,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/92d62493-c831-44f4-ab74-626c8a7c9cdd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/bac6b491-0677-4bc9-a3f6-c43713a3b9a8?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/92d62493-c831-44f4-ab74-626c8a7c9cdd?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bac6b491-0677-4bc9-a3f6-c43713a3b9a8?api-version=2021-01-15" ], "x-ms-request-id": [ - "92d62493-c831-44f4-ab74-626c8a7c9cdd" + "bac6b491-0677-4bc9-a3f6-c43713a3b9a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,41 +177,41 @@ "1199" ], "x-ms-correlation-request-id": [ - "7ff57fd6-c651-485c-ab18-394455135ab9" + "baf32230-18c4-41b3-97b9-f531236ae52f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193853Z:7ff57fd6-c651-485c-ab18-394455135ab9" + "WESTUS2:20210213T032028Z:baf32230-18c4-41b3-97b9-f531236ae52f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:38:53 GMT" + "Sat, 13 Feb 2021 03:20:27 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/92d62493-c831-44f4-ab74-626c8a7c9cdd?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTJkNjI0OTMtYzgzMS00NGY0LWFiNzQtNjI2YzhhN2M5Y2RkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bac6b491-0677-4bc9-a3f6-c43713a3b9a8?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmFjNmI0OTEtMDY3Ny00YmM5LWEzZjYtYzQzNzEzYTNiOWE4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e5270384-b486-44b5-a496-87af51b1dc5c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -237,50 +234,47 @@ "11998" ], "x-ms-request-id": [ - "125c8e8b-7a5b-4d9c-85a0-497ee6654f6a" + "82880aee-0514-420f-ac67-417363e5feba" ], "x-ms-correlation-request-id": [ - "125c8e8b-7a5b-4d9c-85a0-497ee6654f6a" + "82880aee-0514-420f-ac67-417363e5feba" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193924Z:125c8e8b-7a5b-4d9c-85a0-497ee6654f6a" + "WESTUS2:20210213T032058Z:82880aee-0514-420f-ac67-417363e5feba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:24 GMT" + "Sat, 13 Feb 2021 03:20:58 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/92d62493-c831-44f4-ab74-626c8a7c9cdd?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "515b9446-29ea-4d87-9513-3361437c35a0" + "b332ad71-1a60-4a2d-9a6e-47c928a3642c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -303,44 +297,44 @@ "11996" ], "x-ms-request-id": [ - "07543eca-7746-456d-acb2-bb790958a153" + "de0d96ae-92da-4bf8-8638-92d01e608227" ], "x-ms-correlation-request-id": [ - "07543eca-7746-456d-acb2-bb790958a153" + "de0d96ae-92da-4bf8-8638-92d01e608227" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193925Z:07543eca-7746-456d-acb2-bb790958a153" + "WESTUS2:20210213T032059Z:de0d96ae-92da-4bf8-8638-92d01e608227" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:24 GMT" + "Sat, 13 Feb 2021 03:20:58 GMT" ], "Content-Length": [ "360" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"h+-I\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"4O2n\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8a6953b3-39f0-4e8c-855a-0a3a5cd477ea" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -363,44 +357,44 @@ "11994" ], "x-ms-request-id": [ - "3331d013-9b23-4c8c-986f-9b76bcb199c8" + "0dd6bd01-6fe9-4e80-beaa-127e9e065f25" ], "x-ms-correlation-request-id": [ - "3331d013-9b23-4c8c-986f-9b76bcb199c8" + "0dd6bd01-6fe9-4e80-beaa-127e9e065f25" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193956Z:3331d013-9b23-4c8c-986f-9b76bcb199c8" + "WESTUS2:20210213T032130Z:0dd6bd01-6fe9-4e80-beaa-127e9e065f25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:56 GMT" + "Sat, 13 Feb 2021 03:21:29 GMT" ], "Content-Length": [ "360" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"h+-I\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"4O2n\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "398b0773-141e-4889-96d6-1cf924ed576f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -423,44 +417,44 @@ "11991" ], "x-ms-request-id": [ - "b8eb4267-44f6-4b9e-b988-9add07009ef0" + "cb49171f-c002-4ae0-8d2a-284e045d59c5" ], "x-ms-correlation-request-id": [ - "b8eb4267-44f6-4b9e-b988-9add07009ef0" + "cb49171f-c002-4ae0-8d2a-284e045d59c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194028Z:b8eb4267-44f6-4b9e-b988-9add07009ef0" + "WESTUS2:20210213T032201Z:cb49171f-c002-4ae0-8d2a-284e045d59c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:27 GMT" + "Sat, 13 Feb 2021 03:22:01 GMT" ], "Content-Length": [ "360" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"h+-I\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"4O2n\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b29f82a8-d496-47d7-9c80-7a69dd82a8c9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -483,50 +477,47 @@ "11989" ], "x-ms-request-id": [ - "33865688-79b4-42d8-b379-35ad9fef20d3" + "5af9747f-eb69-4440-8d69-0c418083b9f9" ], "x-ms-correlation-request-id": [ - "33865688-79b4-42d8-b379-35ad9fef20d3" + "5af9747f-eb69-4440-8d69-0c418083b9f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194059Z:33865688-79b4-42d8-b379-35ad9fef20d3" + "WESTUS2:20210213T032232Z:5af9747f-eb69-4440-8d69-0c418083b9f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:58 GMT" + "Sat, 13 Feb 2021 03:22:31 GMT" ], "Content-Length": [ "359" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"h+-I\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings\",\r\n \"name\": \"4O2n\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "2ea93901-565b-4592-b5db-d4233b1e34f6" + "8a6953b3-39f0-4e8c-855a-0a3a5cd477ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -543,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/13cc02da-12d7-40db-bc79-d1f7ce7a54d4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/77228ddc-7970-48d8-8f00-8a6b7e06e5fb?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13cc02da-12d7-40db-bc79-d1f7ce7a54d4?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/77228ddc-7970-48d8-8f00-8a6b7e06e5fb?api-version=2021-01-15" ], "x-ms-request-id": [ - "13cc02da-12d7-40db-bc79-d1f7ce7a54d4" + "77228ddc-7970-48d8-8f00-8a6b7e06e5fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,47 +555,44 @@ "1198" ], "x-ms-correlation-request-id": [ - "640c0bc5-a127-43ee-bb6a-ef1fadf10343" + "f44b170e-1bd3-4de1-ab17-a20b39fa88c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193925Z:640c0bc5-a127-43ee-bb6a-ef1fadf10343" + "WESTUS2:20210213T032059Z:f44b170e-1bd3-4de1-ab17-a20b39fa88c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:25 GMT" + "Sat, 13 Feb 2021 03:20:59 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "63aa176f-eaff-46ee-83e9-b358bb59c4ed" + "398b0773-141e-4889-96d6-1cf924ed576f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,13 +609,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/29ead34d-b81f-4e88-984d-716376208a01?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/4c067093-727d-4312-b680-917b444b83fd?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29ead34d-b81f-4e88-984d-716376208a01?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4c067093-727d-4312-b680-917b444b83fd?api-version=2021-01-15" ], "x-ms-request-id": [ - "29ead34d-b81f-4e88-984d-716376208a01" + "4c067093-727d-4312-b680-917b444b83fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,47 +630,44 @@ "1197" ], "x-ms-correlation-request-id": [ - "d8e2f67c-9326-4cc5-8090-a1a4f33913ef" + "670b0679-4be8-4486-9c0b-128e950a37e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193957Z:d8e2f67c-9326-4cc5-8090-a1a4f33913ef" + "WESTUS2:20210213T032131Z:670b0679-4be8-4486-9c0b-128e950a37e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:57 GMT" + "Sat, 13 Feb 2021 03:21:30 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL3Rocm91Z2hwdXRTZXR0aW5ncy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "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": [ - "f80179e2-b932-4f5a-8b29-17f724e53a8f" + "b29f82a8-d496-47d7-9c80-7a69dd82a8c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,13 +684,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/1b7bcaa3-d137-4377-bbc0-a48d0760f051?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default/operationResults/0f46ecea-5246-48b8-99c0-32c692f7217c?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b7bcaa3-d137-4377-bbc0-a48d0760f051?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f46ecea-5246-48b8-99c0-32c692f7217c?api-version=2021-01-15" ], "x-ms-request-id": [ - "1b7bcaa3-d137-4377-bbc0-a48d0760f051" + "0f46ecea-5246-48b8-99c0-32c692f7217c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,41 +705,41 @@ "1196" ], "x-ms-correlation-request-id": [ - "e9d42272-781e-4c01-ac8e-f3087a941f8a" + "00f8b21f-ce6e-46f3-93c3-12f2e36da894" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194028Z:e9d42272-781e-4c01-ac8e-f3087a941f8a" + "WESTUS2:20210213T032202Z:00f8b21f-ce6e-46f3-93c3-12f2e36da894" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:28 GMT" + "Sat, 13 Feb 2021 03:22:01 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/throughputSettings/default?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13cc02da-12d7-40db-bc79-d1f7ce7a54d4?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTNjYzAyZGEtMTJkNy00MGRiLWJjNzktZDFmN2NlN2E1NGQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/77228ddc-7970-48d8-8f00-8a6b7e06e5fb?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzcyMjhkZGMtNzk3MC00OGQ4LThmMDAtOGE2YjdlMDZlNWZiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8a6953b3-39f0-4e8c-855a-0a3a5cd477ea" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -777,50 +762,47 @@ "11995" ], "x-ms-request-id": [ - "1ea8c700-782a-4560-b2cc-d9a0a86158cf" + "978867b0-6ba4-4109-90dc-f6bc5659c1d7" ], "x-ms-correlation-request-id": [ - "1ea8c700-782a-4560-b2cc-d9a0a86158cf" + "978867b0-6ba4-4109-90dc-f6bc5659c1d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193956Z:1ea8c700-782a-4560-b2cc-d9a0a86158cf" + "WESTUS2:20210213T032129Z:978867b0-6ba4-4109-90dc-f6bc5659c1d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:55 GMT" + "Sat, 13 Feb 2021 03:21:29 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13cc02da-12d7-40db-bc79-d1f7ce7a54d4?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6878e9a-ee07-4312-b6d3-66851b7e77d3" + "4f156787-f60c-4d5b-a4d7-b1a7fba3afff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -843,44 +825,44 @@ "11993" ], "x-ms-request-id": [ - "b0c0e5d1-6e63-4585-841b-492491767ea7" + "5a890544-3736-4634-85eb-3a61ddced62a" ], "x-ms-correlation-request-id": [ - "b0c0e5d1-6e63-4585-841b-492491767ea7" + "5a890544-3736-4634-85eb-3a61ddced62a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T193956Z:b0c0e5d1-6e63-4585-841b-492491767ea7" + "WESTUS2:20210213T032130Z:5a890544-3736-4634-85eb-3a61ddced62a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:39:56 GMT" + "Sat, 13 Feb 2021 03:21:29 GMT" ], "Content-Length": [ - "1832" + "2200" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527?api-version=2020-04-01" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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 }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527\",\r\n \"name\": \"db2527\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Azure Table\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2019-12-05T22:58:42.873838Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://db2527.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://db2527.table.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\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"instanceId\": \"bb56fa0e-a388-4702-9ea9-393360c606fd\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"enableCassandraConnector\": false,\r\n \"connectorOffer\": \"\",\r\n \"networkAclBypass\": 0,\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxIntervalInSeconds\": 86400,\r\n \"maxStalenessPrefix\": 1000000\r\n },\r\n \"configurationOverrides\": {},\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"db2527-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://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\": \"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\": 1\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": []\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/29ead34d-b81f-4e88-984d-716376208a01?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjllYWQzNGQtYjgxZi00ZTg4LTk4NGQtNzE2Mzc2MjA4YTAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4c067093-727d-4312-b680-917b444b83fd?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGMwNjcwOTMtNzI3ZC00MzEyLWI2ODAtOTE3YjQ0NGI4M2ZkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "398b0773-141e-4889-96d6-1cf924ed576f" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -903,44 +885,44 @@ "11992" ], "x-ms-request-id": [ - "217fb0d1-b854-4982-8dcb-70b527d2994b" + "c160d4b2-9465-4ea3-beaf-3420989c9fde" ], "x-ms-correlation-request-id": [ - "217fb0d1-b854-4982-8dcb-70b527d2994b" + "c160d4b2-9465-4ea3-beaf-3420989c9fde" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194027Z:217fb0d1-b854-4982-8dcb-70b527d2994b" + "WESTUS2:20210213T032201Z:c160d4b2-9465-4ea3-beaf-3420989c9fde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:27 GMT" + "Sat, 13 Feb 2021 03:22:00 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29ead34d-b81f-4e88-984d-716376208a01?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b7bcaa3-d137-4377-bbc0-a48d0760f051?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWI3YmNhYTMtZDEzNy00Mzc3LWJiYzAtYTQ4ZDA3NjBmMDUxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0f46ecea-5246-48b8-99c0-32c692f7217c?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGY0NmVjZWEtNTI0Ni00OGI4LTk5YzAtMzJjNjkyZjcyMTdjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b29f82a8-d496-47d7-9c80-7a69dd82a8c9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -963,50 +945,47 @@ "11990" ], "x-ms-request-id": [ - "f4c49dc2-7e03-4807-af1d-103bc295c8aa" + "6deca459-62f0-4aae-a65e-96317be29811" ], "x-ms-correlation-request-id": [ - "f4c49dc2-7e03-4807-af1d-103bc295c8aa" + "6deca459-62f0-4aae-a65e-96317be29811" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194059Z:f4c49dc2-7e03-4807-af1d-103bc295c8aa" + "WESTUS2:20210213T032232Z:6deca459-62f0-4aae-a65e-96317be29811" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:58 GMT" + "Sat, 13 Feb 2021 03:22:31 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1b7bcaa3-d137-4377-bbc0-a48d0760f051?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a752427-85ef-4ad9-aea5-a838bc50e847" + "72b8ed9a-62b7-42be-b7fd-f7bed407a1a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1017,13 +996,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/1e6ea4f4-c695-4299-b336-0819760fb51e?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e6ea4f4-c695-4299-b336-0819760fb51e?api-version=2021-01-15" ], "x-ms-request-id": [ - "b994c893-197f-4a33-8df4-195df20c8c14" + "1e6ea4f4-c695-4299-b336-0819760fb51e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,47 +1017,44 @@ "14999" ], "x-ms-correlation-request-id": [ - "90098bbb-5753-48ac-9a16-a9287c9bebf5" + "1c8503c2-a743-45af-bb74-b3889d6c3e11" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194059Z:90098bbb-5753-48ac-9a16-a9287c9bebf5" + "WESTUS2:20210213T032233Z:1c8503c2-a743-45af-bb74-b3889d6c3e11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:40:58 GMT" + "Sat, 13 Feb 2021 03:22:32 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f90c3c51-fdc0-44b6-b632-b9bb1348c803" + "1289bd54-0775-4a3c-9b85-4cbff931e53a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1089,13 +1065,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/a9c60a7b-a5b9-457c-a9de-fbf47e1acc26?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9c60a7b-a5b9-457c-a9de-fbf47e1acc26?api-version=2021-01-15" ], "x-ms-request-id": [ - "47cac791-0448-4ba9-a9e4-9594e706f4d7" + "a9c60a7b-a5b9-457c-a9de-fbf47e1acc26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,41 +1086,41 @@ "14999" ], "x-ms-correlation-request-id": [ - "42bc66d8-a6a8-4de9-a404-45354f527648" + "924d3c14-10ef-4810-9987-932b93aca3e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194131Z:42bc66d8-a6a8-4de9-a404-45354f527648" + "WESTUS2:20210213T032304Z:924d3c14-10ef-4810-9987-932b93aca3e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:41:30 GMT" + "Sat, 13 Feb 2021 03:23:03 GMT" ], "Content-Length": [ "21" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjk5NGM4OTMtMTk3Zi00YTMzLThkZjQtMTk1ZGYyMGM4YzE0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e6ea4f4-c695-4299-b336-0819760fb51e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU2ZWE0ZjQtYzY5NS00Mjk5LWIzMzYtMDgxOTc2MGZiNTFlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "72b8ed9a-62b7-42be-b7fd-f7bed407a1a9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1167,44 +1143,44 @@ "11988" ], "x-ms-request-id": [ - "abee6105-4983-4c0b-894e-7b3ed043b845" + "b89f5dd0-cbef-46b3-9e21-2f07342bcc7d" ], "x-ms-correlation-request-id": [ - "abee6105-4983-4c0b-894e-7b3ed043b845" + "b89f5dd0-cbef-46b3-9e21-2f07342bcc7d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194130Z:abee6105-4983-4c0b-894e-7b3ed043b845" + "WESTUS2:20210213T032303Z:b89f5dd0-cbef-46b3-9e21-2f07342bcc7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:41:30 GMT" + "Sat, 13 Feb 2021 03:23:02 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvYjk5NGM4OTMtMTk3Zi00YTMzLThkZjQtMTk1ZGYyMGM4YzE0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/1e6ea4f4-c695-4299-b336-0819760fb51e?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvMWU2ZWE0ZjQtYzY5NS00Mjk5LWIzMzYtMDgxOTc2MGZiNTFlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "72b8ed9a-62b7-42be-b7fd-f7bed407a1a9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1227,41 +1203,41 @@ "11987" ], "x-ms-request-id": [ - "e9ff3bb3-c204-40e2-9486-542f5264c434" + "c6bd798a-b9e9-4c27-a6f8-b0b2bdf2b2c1" ], "x-ms-correlation-request-id": [ - "e9ff3bb3-c204-40e2-9486-542f5264c434" + "c6bd798a-b9e9-4c27-a6f8-b0b2bdf2b2c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194130Z:e9ff3bb3-c204-40e2-9486-542f5264c434" + "WESTUS2:20210213T032303Z:c6bd798a-b9e9-4c27-a6f8-b0b2bdf2b2c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:41:30 GMT" + "Sat, 13 Feb 2021 03:23:03 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/b994c893-197f-4a33-8df4-195df20c8c14?api-version=2020-04-01" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDdjYWM3OTEtMDQ0OC00YmE5LWE5ZTQtOTU5NGU3MDZmNGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a9c60a7b-a5b9-457c-a9de-fbf47e1acc26?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTljNjBhN2ItYTViOS00NTdjLWE5ZGUtZmJmNDdlMWFjYzI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1289bd54-0775-4a3c-9b85-4cbff931e53a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1284,44 +1260,44 @@ "11999" ], "x-ms-request-id": [ - "98b3b19d-4956-41e6-b425-208afe472d03" + "25eda2ba-1bda-4161-bbaa-be6ba7a5a6b5" ], "x-ms-correlation-request-id": [ - "98b3b19d-4956-41e6-b425-208afe472d03" + "25eda2ba-1bda-4161-bbaa-be6ba7a5a6b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194201Z:98b3b19d-4956-41e6-b425-208afe472d03" + "WESTUS2:20210213T032334Z:25eda2ba-1bda-4161-bbaa-be6ba7a5a6b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:42:01 GMT" + "Sat, 13 Feb 2021 03:23:34 GMT" ], "Content-Length": [ "22" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvNDdjYWM3OTEtMDQ0OC00YmE5LWE5ZTQtOTU5NGU3MDZmNGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/a9c60a7b-a5b9-457c-a9de-fbf47e1acc26?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIyNTI3L3RhYmxlcy90YWJsZU5hbWUzL29wZXJhdGlvblJlc3VsdHMvYTljNjBhN2ItYTViOS00NTdjLWE5ZGUtZmJmNDdlMWFjYzI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1289bd54-0775-4a3c-9b85-4cbff931e53a" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.2.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, "ResponseHeaders": { @@ -1344,25 +1320,22 @@ "11998" ], "x-ms-request-id": [ - "a68668ab-01ec-41a8-a18c-89da2c02cd89" + "c565e2b9-40bf-4b5f-9eba-b5fde09273ed" ], "x-ms-correlation-request-id": [ - "a68668ab-01ec-41a8-a18c-89da2c02cd89" + "c565e2b9-40bf-4b5f-9eba-b5fde09273ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T194201Z:a68668ab-01ec-41a8-a18c-89da2c02cd89" + "WESTUS2:20210213T032335Z:c565e2b9-40bf-4b5f-9eba-b5fde09273ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 19:42:01 GMT" + "Sat, 13 Feb 2021 03:23:34 GMT" ], "Content-Type": [ "application/json" - ], - "Content-Location": [ - "https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db2527/tables/tableName3/operationResults/47cac791-0448-4ba9-a9e4-9594e706f4d7?api-version=2020-04-01" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB/CosmosDB.csproj b/src/CosmosDB/CosmosDB/CosmosDB.csproj index 431d0497ef46..d3d04097cada 100644 --- a/src/CosmosDB/CosmosDB/CosmosDB.csproj +++ b/src/CosmosDB/CosmosDB/CosmosDB.csproj @@ -6,7 +6,7 @@ - + \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index e7eeaf133b31..23bb64b96929 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -147,7 +147,7 @@ public override void ExecuteCmdlet() } } - Collection networkAclBypassResourceId = new Collection(NetworkAclBypassResourceId); + Collection networkAclBypassResourceId = NetworkAclBypassResourceId != null ? new Collection(NetworkAclBypassResourceId) : new Collection(); DatabaseAccountCreateUpdateParameters databaseAccountCreateUpdateParameters = new DatabaseAccountCreateUpdateParameters(locations:LocationCollection, location: writeLocation, name:Name, consistencyPolicy:consistencyPolicy, tags:tags); databaseAccountCreateUpdateParameters.EnableMultipleWriteLocations = EnableMultipleWriteLocations; diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index be725ef9f6fe..ec28932db29c 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -71,9 +71,6 @@ public override void ExecuteCmdlet() DatabaseAccountUpdateParameters databaseAccountUpdateParameters = new DatabaseAccountUpdateParameters(locations: readDatabase.Locations, location: readDatabase.WriteLocations.ElementAt(0).LocationName); - databaseAccountUpdateParameters.NetworkAclBypass = readDatabase.NetworkAclBypass; - databaseAccountUpdateParameters.NetworkAclBypassResourceIds = readDatabase.NetworkAclBypassResourceIds; - if (EnableMultipleWriteLocations != null) { databaseAccountUpdateParameters.EnableMultipleWriteLocations = EnableMultipleWriteLocations; From a4df4387ede70894ebdd6b8ca8799bdcbb3a3cba Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Wed, 17 Feb 2021 17:25:09 -1000 Subject: [PATCH 5/7] Remove extra line --- src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index ec28932db29c..71d782ad30fc 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -70,7 +70,6 @@ public override void ExecuteCmdlet() DatabaseAccountGetResults readDatabase = CosmosDBManagementClient.DatabaseAccounts.GetWithHttpMessagesAsync(ResourceGroupName, Name).GetAwaiter().GetResult().Body; DatabaseAccountUpdateParameters databaseAccountUpdateParameters = new DatabaseAccountUpdateParameters(locations: readDatabase.Locations, location: readDatabase.WriteLocations.ElementAt(0).LocationName); - if (EnableMultipleWriteLocations != null) { databaseAccountUpdateParameters.EnableMultipleWriteLocations = EnableMultipleWriteLocations; From 88ce6b5a0a1cbb45026f5668227a722cd9a90055 Mon Sep 17 00:00:00 2001 From: Kristyn Hamasaki Date: Wed, 17 Feb 2021 18:06:53 -1000 Subject: [PATCH 6/7] rerun gremlin test with updated --- .../TestGremlinOperationsCmdlets.json | 552 +++++++++--------- 1 file changed, 276 insertions(+), 276 deletions(-) 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 8112564ca08c..48a3c1067d06 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,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "717310ab-306d-46f3-b45c-d1bce4bf9725" + "b7622271-89a8-4b2e-9947-d1cc8778fcc5" ], "Accept-Language": [ "en-US" @@ -36,22 +36,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "e2544285-8197-4f22-90e8-4a5151092152" + "591a4b27-9baf-49e4-bbaa-7f6bfc2e6ec2" ], "x-ms-correlation-request-id": [ - "e2544285-8197-4f22-90e8-4a5151092152" + "591a4b27-9baf-49e4-bbaa-7f6bfc2e6ec2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035201Z:e2544285-8197-4f22-90e8-4a5151092152" + "WESTUS:20210218T035827Z:591a4b27-9baf-49e4-bbaa-7f6bfc2e6ec2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:00 GMT" + "Thu, 18 Feb 2021 03:58:27 GMT" ], "Content-Length": [ "1778" @@ -60,7 +60,7 @@ "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: 717310ab-306d-46f3-b45c-d1bce4bf9725, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:52:01.3990698Z, RequestEndTime: 2021-02-13T03:52:01.3990698Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:52:01.3990698Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1648, GlobalCommittedLsn: 1648, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1648, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:52:01.3990698Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1648, GlobalCommittedLsn: 1648, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1648, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: b7622271-89a8-4b2e-9947-d1cc8778fcc5, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-18T03:58:27.9598847Z, RequestEndTime: 2021-02-18T03:58:27.9598847Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-18T03:58:27.9598847Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1693, GlobalCommittedLsn: 1693, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1693, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-18T03:58:27.9598847Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1693, GlobalCommittedLsn: 1693, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1693, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "717310ab-306d-46f3-b45c-d1bce4bf9725" + "b7622271-89a8-4b2e-9947-d1cc8778fcc5" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -96,22 +96,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" + "a3d820d2-f5e5-4961-8dae-4889765e2fe0" ], "x-ms-correlation-request-id": [ - "9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" + "a3d820d2-f5e5-4961-8dae-4889765e2fe0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035232Z:9b16fd69-b7b5-4cf9-87db-a4bb534c4fb1" + "WESTUS:20210218T035901Z:a3d820d2-f5e5-4961-8dae-4889765e2fe0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:32 GMT" + "Thu, 18 Feb 2021 03:59:01 GMT" ], "Content-Length": [ "448" @@ -120,7 +120,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"VoBWAA==\",\r\n \"_self\": \"dbs/VoBWAA==/\",\r\n \"_etag\": \"\\\"0000bb39-0000-0100-0000-602de5e80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620712\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -130,7 +130,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f655b53-6cad-4709-96f7-9a4f13cf4bef" + "60ff2cf1-cee2-464f-a728-815b7891e78e" ], "Accept-Language": [ "en-US" @@ -159,22 +159,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "c8d0fed6-8514-4fa4-8a92-c6303642efbe" + "480660cd-4f61-4570-9bca-657a6687ee48" ], "x-ms-correlation-request-id": [ - "c8d0fed6-8514-4fa4-8a92-c6303642efbe" + "480660cd-4f61-4570-9bca-657a6687ee48" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035232Z:c8d0fed6-8514-4fa4-8a92-c6303642efbe" + "WESTUS:20210218T035901Z:480660cd-4f61-4570-9bca-657a6687ee48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:32 GMT" + "Thu, 18 Feb 2021 03:59:01 GMT" ], "Content-Length": [ "448" @@ -183,7 +183,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"VoBWAA==\",\r\n \"_self\": \"dbs/VoBWAA==/\",\r\n \"_etag\": \"\\\"0000bb39-0000-0100-0000-602de5e80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620712\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -193,7 +193,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9864cf9-fb67-4a9d-bbd0-2c0c70f153ae" + "3f13afcb-5e8f-4153-87a2-148d84e5fe07" ], "Accept-Language": [ "en-US" @@ -222,22 +222,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-request-id": [ - "53bef74c-6050-4278-ad96-ff4fc914fd4f" + "23c89f5b-8021-4d20-b927-2ddae9c11a77" ], "x-ms-correlation-request-id": [ - "53bef74c-6050-4278-ad96-ff4fc914fd4f" + "23c89f5b-8021-4d20-b927-2ddae9c11a77" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035335Z:53bef74c-6050-4278-ad96-ff4fc914fd4f" + "WESTUS:20210218T040009Z:23c89f5b-8021-4d20-b927-2ddae9c11a77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:35 GMT" + "Thu, 18 Feb 2021 04:00:08 GMT" ], "Content-Length": [ "448" @@ -246,7 +246,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"VoBWAA==\",\r\n \"_self\": \"dbs/VoBWAA==/\",\r\n \"_etag\": \"\\\"0000bb39-0000-0100-0000-602de5e80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620712\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -256,7 +256,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4474eda2-8dba-4eff-bc12-e0941c1eddfc" + "d7b722be-ae4f-44ba-95d7-862620437903" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -282,22 +282,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "b42ac560-2c4c-460a-9df5-872485b227d2" + "3f11ab89-75ee-4763-be3b-061bf4190c3f" ], "x-ms-correlation-request-id": [ - "b42ac560-2c4c-460a-9df5-872485b227d2" + "3f11ab89-75ee-4763-be3b-061bf4190c3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035406Z:b42ac560-2c4c-460a-9df5-872485b227d2" + "WESTUS:20210218T040041Z:3f11ab89-75ee-4763-be3b-061bf4190c3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:06 GMT" + "Thu, 18 Feb 2021 04:00:40 GMT" ], "Content-Length": [ "448" @@ -306,7 +306,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"VoBWAA==\",\r\n \"_self\": \"dbs/VoBWAA==/\",\r\n \"_etag\": \"\\\"0000bb39-0000-0100-0000-602de5e80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620712\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -316,7 +316,7 @@ "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": [ - "717310ab-306d-46f3-b45c-d1bce4bf9725" + "b7622271-89a8-4b2e-9947-d1cc8778fcc5" ], "Accept-Language": [ "en-US" @@ -342,13 +342,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/ff3e268d-dcbc-4374-b9a9-3b7a4c98e159?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff3e268d-dcbc-4374-b9a9-3b7a4c98e159?api-version=2021-01-15" ], "x-ms-request-id": [ - "38d9fc3a-5b29-4d56-bf07-9d571adc6687" + "ff3e268d-dcbc-4374-b9a9-3b7a4c98e159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,16 +363,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ca3c52ef-0f72-4e21-af91-c87fa0e5e12b" + "b569e013-ee61-4469-9fa9-4e2704ea94a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035202Z:ca3c52ef-0f72-4e21-af91-c87fa0e5e12b" + "WESTUS:20210218T035828Z:b569e013-ee61-4469-9fa9-4e2704ea94a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:01 GMT" + "Thu, 18 Feb 2021 03:58:28 GMT" ], "Content-Length": [ "21" @@ -391,7 +391,7 @@ "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": [ - "4474eda2-8dba-4eff-bc12-e0941c1eddfc" + "d7b722be-ae4f-44ba-95d7-862620437903" ], "Accept-Language": [ "en-US" @@ -417,13 +417,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/30f4fec5-3afa-4944-9bc8-17a956d6a0a6?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/30f4fec5-3afa-4944-9bc8-17a956d6a0a6?api-version=2021-01-15" ], "x-ms-request-id": [ - "db2e031a-b1f8-4352-9957-c7f215923a72" + "30f4fec5-3afa-4944-9bc8-17a956d6a0a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,16 +438,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "0beaccb3-a51a-42ad-ba6f-7d6e9267b363" + "138207ab-d305-4c34-beff-ae53a38aa2a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035336Z:0beaccb3-a51a-42ad-ba6f-7d6e9267b363" + "WESTUS:20210218T040010Z:138207ab-d305-4c34-beff-ae53a38aa2a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:35 GMT" + "Thu, 18 Feb 2021 04:00:09 GMT" ], "Content-Length": [ "21" @@ -460,13 +460,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/38d9fc3a-5b29-4d56-bf07-9d571adc6687?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzhkOWZjM2EtNWIyOS00ZDU2LWJmMDctOWQ1NzFhZGM2Njg3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ff3e268d-dcbc-4374-b9a9-3b7a4c98e159?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZmYzZTI2OGQtZGNiYy00Mzc0LWI5YTktM2I3YTRjOThlMTU5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "717310ab-306d-46f3-b45c-d1bce4bf9725" + "b7622271-89a8-4b2e-9947-d1cc8778fcc5" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -492,22 +492,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "11317510-3e84-4521-b505-9006f4418006" + "1eb5f507-a029-40c4-887c-368642439e6a" ], "x-ms-correlation-request-id": [ - "11317510-3e84-4521-b505-9006f4418006" + "1eb5f507-a029-40c4-887c-368642439e6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035232Z:11317510-3e84-4521-b505-9006f4418006" + "WESTUS:20210218T035900Z:1eb5f507-a029-40c4-887c-368642439e6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:31 GMT" + "Thu, 18 Feb 2021 03:58:59 GMT" ], "Content-Length": [ "22" @@ -526,7 +526,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b11c74-38c8-422e-a981-2d075e5b363c" + "e4af9f7e-0597-47c6-9d2a-2cb54f841b6d" ], "Accept-Language": [ "en-US" @@ -555,22 +555,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "f3c29789-36d0-4985-a42b-3e7c98168952" + "296f1a2c-4816-43ce-b7c5-460daac28a37" ], "x-ms-correlation-request-id": [ - "f3c29789-36d0-4985-a42b-3e7c98168952" + "296f1a2c-4816-43ce-b7c5-460daac28a37" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035233Z:f3c29789-36d0-4985-a42b-3e7c98168952" + "WESTUS:20210218T035903Z:296f1a2c-4816-43ce-b7c5-460daac28a37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:32 GMT" + "Thu, 18 Feb 2021 03:59:02 GMT" ], "Content-Length": [ "1795" @@ -579,7 +579,7 @@ "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: 30b11c74-38c8-422e-a981-2d075e5b363c, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:52:32.9892906Z, RequestEndTime: 2021-02-13T03:52:32.9992813Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:52:32.9992813Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1649, GlobalCommittedLsn: 1649, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1649, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:52:32.9992813Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1649, GlobalCommittedLsn: 1649, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1649, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: e4af9f7e-0597-47c6-9d2a-2cb54f841b6d, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-18T03:59:03.0240989Z, RequestEndTime: 2021-02-18T03:59:03.0240989Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-18T03:59:03.0240989Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1694, GlobalCommittedLsn: 1694, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1694, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-18T03:59:03.0240989Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1694, GlobalCommittedLsn: 1694, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1694, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { @@ -589,7 +589,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b11c74-38c8-422e-a981-2d075e5b363c" + "e4af9f7e-0597-47c6-9d2a-2cb54f841b6d" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -615,22 +615,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "eb0c0020-cfeb-48b0-8174-e77747f76458" + "4c75344c-59a9-4110-b554-714e43636d8f" ], "x-ms-correlation-request-id": [ - "eb0c0020-cfeb-48b0-8174-e77747f76458" + "4c75344c-59a9-4110-b554-714e43636d8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035304Z:eb0c0020-cfeb-48b0-8174-e77747f76458" + "WESTUS:20210218T035935Z:4c75344c-59a9-4110-b554-714e43636d8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:03 GMT" + "Thu, 18 Feb 2021 03:59:34 GMT" ], "Content-Length": [ "1465" @@ -639,7 +639,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -649,7 +649,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05853f81-a817-4b9a-ad6f-abe7844d43f0" + "1da98398-6955-4d7b-b4d9-e62a4fdc9612" ], "Accept-Language": [ "en-US" @@ -678,22 +678,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" + "8ecbaa10-f179-495d-ac75-77cacbc1905e" ], "x-ms-correlation-request-id": [ - "8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" + "8ecbaa10-f179-495d-ac75-77cacbc1905e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035304Z:8e2406d6-6bb1-4fe2-9ce8-df1d3a74e226" + "WESTUS:20210218T035935Z:8ecbaa10-f179-495d-ac75-77cacbc1905e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:03 GMT" + "Thu, 18 Feb 2021 03:59:34 GMT" ], "Content-Length": [ "1465" @@ -702,7 +702,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -712,7 +712,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0ba8bde-c3d2-4367-a539-40b49b306fdd" + "d46ab510-34ea-409c-aa4b-41e8da931dfa" ], "Accept-Language": [ "en-US" @@ -741,22 +741,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-request-id": [ - "415cea43-670f-448e-9437-3faaf50f1038" + "55e422f2-77fb-4a76-ab24-2b732fddede9" ], "x-ms-correlation-request-id": [ - "415cea43-670f-448e-9437-3faaf50f1038" + "55e422f2-77fb-4a76-ab24-2b732fddede9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035335Z:415cea43-670f-448e-9437-3faaf50f1038" + "WESTUS:20210218T040009Z:55e422f2-77fb-4a76-ab24-2b732fddede9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:35 GMT" + "Thu, 18 Feb 2021 04:00:08 GMT" ], "Content-Length": [ "1465" @@ -765,7 +765,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -775,7 +775,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67a83ab2-e2cd-46e7-911a-b4715e70f732" + "1dd013e6-3609-4b8e-806d-cfcc790b82f4" ], "Accept-Language": [ "en-US" @@ -804,22 +804,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-request-id": [ - "f3b97859-c394-4e21-b736-16d712745ae2" + "f359c64d-c6f9-4fe6-85ff-4e58dcae55c3" ], "x-ms-correlation-request-id": [ - "f3b97859-c394-4e21-b736-16d712745ae2" + "f359c64d-c6f9-4fe6-85ff-4e58dcae55c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035407Z:f3b97859-c394-4e21-b736-16d712745ae2" + "WESTUS:20210218T040042Z:f359c64d-c6f9-4fe6-85ff-4e58dcae55c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:06 GMT" + "Thu, 18 Feb 2021 04:00:41 GMT" ], "Content-Length": [ "1465" @@ -828,7 +828,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -838,7 +838,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67a83ab2-e2cd-46e7-911a-b4715e70f732" + "1dd013e6-3609-4b8e-806d-cfcc790b82f4" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -864,22 +864,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-request-id": [ - "436ad674-1924-4fa5-a8b8-c08ac5389611" + "2488dd5a-31b4-41ac-8533-929b2f2ee83d" ], "x-ms-correlation-request-id": [ - "436ad674-1924-4fa5-a8b8-c08ac5389611" + "2488dd5a-31b4-41ac-8533-929b2f2ee83d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035437Z:436ad674-1924-4fa5-a8b8-c08ac5389611" + "WESTUS:20210218T040113Z:2488dd5a-31b4-41ac-8533-929b2f2ee83d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:37 GMT" + "Thu, 18 Feb 2021 04:01:13 GMT" ], "Content-Length": [ "1465" @@ -888,7 +888,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -898,7 +898,7 @@ "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": [ - "30b11c74-38c8-422e-a981-2d075e5b363c" + "e4af9f7e-0597-47c6-9d2a-2cb54f841b6d" ], "Accept-Language": [ "en-US" @@ -924,13 +924,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/1c1a46f6-0d43-4318-8c04-cd7fa0a7f968?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c1a46f6-0d43-4318-8c04-cd7fa0a7f968?api-version=2021-01-15" ], "x-ms-request-id": [ - "5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04" + "1c1a46f6-0d43-4318-8c04-cd7fa0a7f968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,16 +945,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "9ac4e6d6-4f2a-412b-af35-cb18e323e25d" + "9668992a-26b8-4129-8269-7f8b45f64062" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035233Z:9ac4e6d6-4f2a-412b-af35-cb18e323e25d" + "WESTUS:20210218T035903Z:9668992a-26b8-4129-8269-7f8b45f64062" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:52:33 GMT" + "Thu, 18 Feb 2021 03:59:03 GMT" ], "Content-Length": [ "21" @@ -973,7 +973,7 @@ "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": [ - "67a83ab2-e2cd-46e7-911a-b4715e70f732" + "1dd013e6-3609-4b8e-806d-cfcc790b82f4" ], "Accept-Language": [ "en-US" @@ -999,13 +999,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/5d127851-97c3-472c-8649-a253e1d6dfd8?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d127851-97c3-472c-8649-a253e1d6dfd8?api-version=2021-01-15" ], "x-ms-request-id": [ - "439a4f0e-3c49-4b2b-a631-52a565cb2ad3" + "5d127851-97c3-472c-8649-a253e1d6dfd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,16 +1020,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "08cd27f1-f14a-4809-9491-5c5aaf0e26f5" + "10a8d059-a3c8-452b-a9c9-4c64b161034d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035407Z:08cd27f1-f14a-4809-9491-5c5aaf0e26f5" + "WESTUS:20210218T040042Z:10a8d059-a3c8-452b-a9c9-4c64b161034d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:07 GMT" + "Thu, 18 Feb 2021 04:00:42 GMT" ], "Content-Length": [ "21" @@ -1042,13 +1042,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5970ad68-f7fe-48e2-b1c3-ba5fd4df5e04?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTk3MGFkNjgtZjdmZS00OGUyLWIxYzMtYmE1ZmQ0ZGY1ZTA0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1c1a46f6-0d43-4318-8c04-cd7fa0a7f968?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWMxYTQ2ZjYtMGQ0My00MzE4LThjMDQtY2Q3ZmEwYTdmOTY4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b11c74-38c8-422e-a981-2d075e5b363c" + "e4af9f7e-0597-47c6-9d2a-2cb54f841b6d" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1074,22 +1074,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "c978821f-cb09-447a-a6b1-dcb9232c9116" + "9d1885a7-cb6b-424c-a4a5-7f2b812624b1" ], "x-ms-correlation-request-id": [ - "c978821f-cb09-447a-a6b1-dcb9232c9116" + "9d1885a7-cb6b-424c-a4a5-7f2b812624b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035303Z:c978821f-cb09-447a-a6b1-dcb9232c9116" + "WESTUS:20210218T035934Z:9d1885a7-cb6b-424c-a4a5-7f2b812624b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:02 GMT" + "Thu, 18 Feb 2021 03:59:33 GMT" ], "Content-Length": [ "22" @@ -1102,13 +1102,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName29?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "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": [ - "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" + "a7afb647-590c-4dc6-9e5f-5ee88d77b8e7" ], "Accept-Language": [ "en-US" @@ -1123,7 +1123,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "97" + "98" ] }, "ResponseHeaders": { @@ -1134,13 +1134,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2/operationResults/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName29/operationResults/7ecca036-679f-4c82-aba5-a92cd86abeaa?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7ecca036-679f-4c82-aba5-a92cd86abeaa?api-version=2021-01-15" ], "x-ms-request-id": [ - "992fbd7f-e316-4061-9a39-d40acb0d2e96" + "7ecca036-679f-4c82-aba5-a92cd86abeaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,16 +1155,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "bb7ca61a-8258-4456-ad5e-f7804436397d" + "d6cd4cea-d9ec-4e7e-a1f4-2699c3b6c71b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035304Z:bb7ca61a-8258-4456-ad5e-f7804436397d" + "WESTUS:20210218T035936Z:d6cd4cea-d9ec-4e7e-a1f4-2699c3b6c71b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:03 GMT" + "Thu, 18 Feb 2021 03:59:35 GMT" ], "Content-Length": [ "21" @@ -1177,13 +1177,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/992fbd7f-e316-4061-9a39-d40acb0d2e96?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTkyZmJkN2YtZTMxNi00MDYxLTlhMzktZDQwYWNiMGQyZTk2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7ecca036-679f-4c82-aba5-a92cd86abeaa?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2VjY2EwMzYtNjc5Zi00YzgyLWFiYTUtYTkyY2Q4NmFiZWFhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" + "a7afb647-590c-4dc6-9e5f-5ee88d77b8e7" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1209,22 +1209,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "4e715206-f153-4c59-a6fe-0fd8759753f1" + "5dae5235-0242-43eb-841b-4ef55041cc00" ], "x-ms-correlation-request-id": [ - "4e715206-f153-4c59-a6fe-0fd8759753f1" + "5dae5235-0242-43eb-841b-4ef55041cc00" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035334Z:4e715206-f153-4c59-a6fe-0fd8759753f1" + "WESTUS:20210218T040008Z:5dae5235-0242-43eb-841b-4ef55041cc00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:34 GMT" + "Thu, 18 Feb 2021 04:00:07 GMT" ], "Content-Length": [ "22" @@ -1237,13 +1237,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName29?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lMjk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b74a10c-9a9c-4813-b8ad-484f59eb75d2" + "a7afb647-590c-4dc6-9e5f-5ee88d77b8e7" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1269,31 +1269,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "750799a1-bdda-4c2c-90ae-f71e5ebf4d82" + "6beea894-9d1c-44d3-8fb3-9c2c7ab383ae" ], "x-ms-correlation-request-id": [ - "750799a1-bdda-4c2c-90ae-f71e5ebf4d82" + "6beea894-9d1c-44d3-8fb3-9c2c7ab383ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035335Z:750799a1-bdda-4c2c-90ae-f71e5ebf4d82" + "WESTUS:20210218T040008Z:6beea894-9d1c-44d3-8fb3-9c2c7ab383ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:34 GMT" + "Thu, 18 Feb 2021 04:00:08 GMT" ], "Content-Length": [ - "451" + "454" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"7j8MAA==\",\r\n \"_self\": \"dbs/7j8MAA==/\",\r\n \"_etag\": \"\\\"00000b1c-0000-0100-0000-602731ec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181420\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"qBNTAA==\",\r\n \"_self\": \"dbs/qBNTAA==/\",\r\n \"_etag\": \"\\\"0000c239-0000-0100-0000-602de62b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620779\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1303,7 +1303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5db3c5-24a6-42c8-80fe-42990dc76ede" + "876352a1-7284-4827-b27c-be2daa5df7c3" ], "Accept-Language": [ "en-US" @@ -1332,22 +1332,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-request-id": [ - "41de5828-9076-4c71-a49d-00b85859b07d" + "843bd09b-5ae8-4c66-af95-1ac29794286a" ], "x-ms-correlation-request-id": [ - "41de5828-9076-4c71-a49d-00b85859b07d" + "843bd09b-5ae8-4c66-af95-1ac29794286a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035335Z:41de5828-9076-4c71-a49d-00b85859b07d" + "WESTUS:20210218T040009Z:843bd09b-5ae8-4c66-af95-1ac29794286a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:53:34 GMT" + "Thu, 18 Feb 2021 04:00:08 GMT" ], "Content-Length": [ "1795" @@ -1356,17 +1356,17 @@ "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: bc5db3c5-24a6-42c8-80fe-42990dc76ede, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-13T03:53:35.3995852Z, RequestEndTime: 2021-02-13T03:53:35.4095911Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-13T03:53:35.4095911Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.23:11000/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520397195875660s, LSN: 1650, GlobalCommittedLsn: 1650, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1650, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-13T03:53:35.4095911Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1650, GlobalCommittedLsn: 1650, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1650, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.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: 876352a1-7284-4827-b27c-be2daa5df7c3, Request URI: /apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, RequestStats: \\\\r\\\\nRequestStartTime: 2021-02-18T04:00:09.1888065Z, RequestEndTime: 2021-02-18T04:00:09.1888065Z, Number of regions attempted:1\\\\r\\\\nResponseTime: 2021-02-18T04:00:09.1888065Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132521391735956966s, LSN: 1696, GlobalCommittedLsn: 1696, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1696, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\nResponseTime: 2021-02-18T04:00:09.1888065Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11300/apps/ad90b05b-23e6-4982-a769-c47a53d9308b/services/aad6e2e5-ad70-4446-8bb7-fc6a5787b1eb/partitions/9e999512-d0b8-42a3-869b-1c170b2e8534/replicas/132520395689922244s, LSN: 1696, GlobalCommittedLsn: 1696, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#1696, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\\\"}, Request URI: /dbs/dbName/colls/graph2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/db2e031a-b1f8-4352-9957-c7f215923a72?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZGIyZTAzMWEtYjFmOC00MzUyLTk5NTctYzdmMjE1OTIzYTcyP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/30f4fec5-3afa-4944-9bc8-17a956d6a0a6?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzBmNGZlYzUtM2FmYS00OTQ0LTliYzgtMTdhOTU2ZDZhMGE2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4474eda2-8dba-4eff-bc12-e0941c1eddfc" + "d7b722be-ae4f-44ba-95d7-862620437903" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1392,22 +1392,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-request-id": [ - "8898a74a-7c04-49b1-b3fd-2b357682486f" + "834618ce-018e-4ad8-9e7e-7d8b6980b663" ], "x-ms-correlation-request-id": [ - "8898a74a-7c04-49b1-b3fd-2b357682486f" + "834618ce-018e-4ad8-9e7e-7d8b6980b663" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035406Z:8898a74a-7c04-49b1-b3fd-2b357682486f" + "WESTUS:20210218T040040Z:834618ce-018e-4ad8-9e7e-7d8b6980b663" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:06 GMT" + "Thu, 18 Feb 2021 04:00:40 GMT" ], "Content-Length": [ "22" @@ -1420,13 +1420,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/439a4f0e-3c49-4b2b-a631-52a565cb2ad3?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDM5YTRmMGUtM2M0OS00YjJiLWE2MzEtNTJhNTY1Y2IyYWQzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5d127851-97c3-472c-8649-a253e1d6dfd8?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWQxMjc4NTEtOTdjMy00NzJjLTg2NDktYTI1M2UxZDZkZmQ4P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67a83ab2-e2cd-46e7-911a-b4715e70f732" + "1dd013e6-3609-4b8e-806d-cfcc790b82f4" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1452,22 +1452,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-request-id": [ - "d2580b17-24ef-4e4c-8c9b-8251d170c10d" + "81c37316-2ceb-480d-8cb4-85caeb28238b" ], "x-ms-correlation-request-id": [ - "d2580b17-24ef-4e4c-8c9b-8251d170c10d" + "81c37316-2ceb-480d-8cb4-85caeb28238b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035437Z:d2580b17-24ef-4e4c-8c9b-8251d170c10d" + "WESTUS:20210218T040112Z:81c37316-2ceb-480d-8cb4-85caeb28238b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:37 GMT" + "Thu, 18 Feb 2021 04:01:12 GMT" ], "Content-Length": [ "22" @@ -1486,7 +1486,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e63a783-d3d8-44c6-ac2d-299a11855a57" + "c716bc3f-0573-496a-bf1f-b14ae531a420" ], "Accept-Language": [ "en-US" @@ -1515,22 +1515,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-request-id": [ - "7d20d68b-f735-4f35-b765-c3b5c7eab685" + "bb1c7701-ee75-4e48-a757-543b179a2107" ], "x-ms-correlation-request-id": [ - "7d20d68b-f735-4f35-b765-c3b5c7eab685" + "bb1c7701-ee75-4e48-a757-543b179a2107" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035438Z:7d20d68b-f735-4f35-b765-c3b5c7eab685" + "WESTUS:20210218T040114Z:bb1c7701-ee75-4e48-a757-543b179a2107" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:37 GMT" + "Thu, 18 Feb 2021 04:01:13 GMT" ], "Content-Length": [ "1401" @@ -1539,7 +1539,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"T+duAN1tur4=\",\r\n \"_ts\": 1613188359,\r\n \"_self\": \"dbs/T+duAA==/colls/T+duAN1tur4=/\",\r\n \"_etag\": \"\\\"0000971c-0000-0100-0000-60274d070000\\\"\",\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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 \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"VoBWAKum6ME=\",\r\n \"_ts\": 1613620748,\r\n \"_self\": \"dbs/VoBWAA==/colls/VoBWAKum6ME=/\",\r\n \"_etag\": \"\\\"0000bd39-0000-0100-0000-602de60c0000\\\"\",\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 }, { @@ -1549,7 +1549,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30b26551-6af7-4d0b-a28c-db2bebce0f0f" + "297ea1be-2529-4d14-9bfa-39cdf5ec18d3" ], "Accept-Language": [ "en-US" @@ -1578,31 +1578,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11978" ], "x-ms-request-id": [ - "8ad27364-0264-49ef-a18f-486d8898267d" + "edf770c8-2577-4597-8cb6-92dad9c2880a" ], "x-ms-correlation-request-id": [ - "8ad27364-0264-49ef-a18f-486d8898267d" + "edf770c8-2577-4597-8cb6-92dad9c2880a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035438Z:8ad27364-0264-49ef-a18f-486d8898267d" + "WESTUS:20210218T040114Z:edf770c8-2577-4597-8cb6-92dad9c2880a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:37 GMT" + "Thu, 18 Feb 2021 04:01:13 GMT" ], "Content-Length": [ - "1364" + "915" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName2\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName2\",\r\n \"_rid\": \"7j8MAA==\",\r\n \"_self\": \"dbs/7j8MAA==/\",\r\n \"_etag\": \"\\\"00000b1c-0000-0100-0000-602731ec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181420\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"ssFhAA==\",\r\n \"_self\": \"dbs/ssFhAA==/\",\r\n \"_etag\": \"\\\"0000161c-0000-0100-0000-602732cf0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613181648\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"T+duAA==\",\r\n \"_self\": \"dbs/T+duAA==/\",\r\n \"_etag\": \"\\\"0000941c-0000-0100-0000-60274ce50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613188325\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/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"qBNTAA==\",\r\n \"_self\": \"dbs/qBNTAA==/\",\r\n \"_etag\": \"\\\"0000c239-0000-0100-0000-602de62b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620779\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/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\": \"VoBWAA==\",\r\n \"_self\": \"dbs/VoBWAA==/\",\r\n \"_etag\": \"\\\"0000bb39-0000-0100-0000-602de5e80000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1613620712\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1612,7 +1612,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" + "112b6017-f6b8-446e-b9e0-d07b644a1264" ], "Accept-Language": [ "en-US" @@ -1632,13 +1632,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/a4bdbfc9-f838-41b2-9b39-bfbec3bd76ec?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4bdbfc9-f838-41b2-9b39-bfbec3bd76ec?api-version=2021-01-15" ], "x-ms-request-id": [ - "139968a2-05d9-4ca4-b22c-a10c8c605d99" + "a4bdbfc9-f838-41b2-9b39-bfbec3bd76ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,16 +1653,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "bb1ce188-52d7-42ab-be04-d1f9384be3f4" + "76d68aff-f8c2-483d-a5e1-7f6ed56cb31d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035438Z:bb1ce188-52d7-42ab-be04-d1f9384be3f4" + "WESTUS:20210218T040114Z:76d68aff-f8c2-483d-a5e1-7f6ed56cb31d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:54:38 GMT" + "Thu, 18 Feb 2021 04:01:14 GMT" ], "Content-Length": [ "21" @@ -1681,7 +1681,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "509dbff0-75b8-459b-b0ab-1a33987b4d2e" + "8338e5f9-b48a-4049-81c5-59d42e781fff" ], "Accept-Language": [ "en-US" @@ -1701,13 +1701,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/6574d5ef-a4dc-4db6-8c49-bc6ae7c92346?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6574d5ef-a4dc-4db6-8c49-bc6ae7c92346?api-version=2021-01-15" ], "x-ms-request-id": [ - "ef13623c-f00b-4293-9714-68ca5f2e235f" + "6574d5ef-a4dc-4db6-8c49-bc6ae7c92346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1722,16 +1722,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "0d996134-96c2-420a-b689-25b7c3085567" + "5c4437eb-d118-43bd-9828-af8e5073a5a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035542Z:0d996134-96c2-420a-b689-25b7c3085567" + "WESTUS2:20210218T040219Z:5c4437eb-d118-43bd-9828-af8e5073a5a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:41 GMT" + "Thu, 18 Feb 2021 04:02:19 GMT" ], "Content-Length": [ "21" @@ -1744,13 +1744,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTM5OTY4YTItMDVkOS00Y2E0LWIyMmMtYTEwYzhjNjA1ZDk5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a4bdbfc9-f838-41b2-9b39-bfbec3bd76ec?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTRiZGJmYzktZjgzOC00MWIyLTliMzktYmZiZWMzYmQ3NmVjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" + "112b6017-f6b8-446e-b9e0-d07b644a1264" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1776,22 +1776,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11977" ], "x-ms-request-id": [ - "3f4e3438-429e-4e7b-9ace-270325fd0ffe" + "df9fd569-8f82-4990-822f-87237b0c00e6" ], "x-ms-correlation-request-id": [ - "3f4e3438-429e-4e7b-9ace-270325fd0ffe" + "df9fd569-8f82-4990-822f-87237b0c00e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035508Z:3f4e3438-429e-4e7b-9ace-270325fd0ffe" + "WESTUS:20210218T040144Z:df9fd569-8f82-4990-822f-87237b0c00e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:08 GMT" + "Thu, 18 Feb 2021 04:01:44 GMT" ], "Content-Length": [ "22" @@ -1804,13 +1804,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/139968a2-05d9-4ca4-b22c-a10c8c605d99?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy8xMzk5NjhhMi0wNWQ5LTRjYTQtYjIyYy1hMTBjOGM2MDVkOTk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/a4bdbfc9-f838-41b2-9b39-bfbec3bd76ec?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy9hNGJkYmZjOS1mODM4LTQxYjItOWIzOS1iZmJlYzNiZDc2ZWM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad06c773-d1a2-4da4-bec4-fd7b9c96e20d" + "112b6017-f6b8-446e-b9e0-d07b644a1264" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1836,22 +1836,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11976" ], "x-ms-request-id": [ - "185e66e2-49f8-4cdd-84a3-9e07e6e9193f" + "1358350e-e486-42a8-9f62-038ebe5f012a" ], "x-ms-correlation-request-id": [ - "185e66e2-49f8-4cdd-84a3-9e07e6e9193f" + "1358350e-e486-42a8-9f62-038ebe5f012a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035509Z:185e66e2-49f8-4cdd-84a3-9e07e6e9193f" + "WESTUS:20210218T040145Z:1358350e-e486-42a8-9f62-038ebe5f012a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:09 GMT" + "Thu, 18 Feb 2021 04:01:44 GMT" ], "Content-Type": [ "application/json" @@ -1867,7 +1867,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502a2d8b-3cd5-4102-97c6-0732c437d35e" + "18326d75-41c5-4bb0-989f-33f039a76ff6" ], "Accept-Language": [ "en-US" @@ -1887,13 +1887,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/3ffc4139-1758-4fec-b20d-97acd22754c7?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ffc4139-1758-4fec-b20d-97acd22754c7?api-version=2021-01-15" ], "x-ms-request-id": [ - "0d18d2de-3c0a-46cd-81f5-b2ced21509de" + "3ffc4139-1758-4fec-b20d-97acd22754c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,16 +1908,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "99bdb8ba-d79c-404a-89c4-88172761978c" + "87443a00-888c-4d51-b85c-15dc4a01079f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035510Z:99bdb8ba-d79c-404a-89c4-88172761978c" + "WESTUS2:20210218T040146Z:87443a00-888c-4d51-b85c-15dc4a01079f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:09 GMT" + "Thu, 18 Feb 2021 04:01:46 GMT" ], "Content-Length": [ "21" @@ -1936,7 +1936,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75fa53e8-fbf2-43e3-8835-fb61440fd222" + "48805d59-0df3-4299-b28b-42d9f49e692b" ], "Accept-Language": [ "en-US" @@ -1956,13 +1956,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/8ec3a7eb-9b54-4194-b639-1701eed979ad?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15" + "https://management.azure.com/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8ec3a7eb-9b54-4194-b639-1701eed979ad?api-version=2021-01-15" ], "x-ms-request-id": [ - "b9f1fd54-f0b1-4f1e-8584-cf14b0720207" + "8ec3a7eb-9b54-4194-b639-1701eed979ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,16 +1977,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d2539e97-d274-4efa-b082-66a04aaf7094" + "ae1bd245-33eb-4606-a66a-de3ff7d1d2b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035613Z:d2539e97-d274-4efa-b082-66a04aaf7094" + "WESTUS:20210218T040252Z:ae1bd245-33eb-4606-a66a-de3ff7d1d2b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:56:13 GMT" + "Thu, 18 Feb 2021 04:02:52 GMT" ], "Content-Length": [ "21" @@ -1999,13 +1999,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGQxOGQyZGUtM2MwYS00NmNkLTgxZjUtYjJjZWQyMTUwOWRlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ffc4139-1758-4fec-b20d-97acd22754c7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2ZmYzQxMzktMTc1OC00ZmVjLWIyMGQtOTdhY2QyMjc1NGM3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502a2d8b-3cd5-4102-97c6-0732c437d35e" + "18326d75-41c5-4bb0-989f-33f039a76ff6" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2034,19 +2034,19 @@ "11999" ], "x-ms-request-id": [ - "ed056e35-d7b5-4c2f-84f3-01d996af620a" + "a9e74079-8a19-42b9-8d3a-5efc63f46621" ], "x-ms-correlation-request-id": [ - "ed056e35-d7b5-4c2f-84f3-01d996af620a" + "a9e74079-8a19-42b9-8d3a-5efc63f46621" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035540Z:ed056e35-d7b5-4c2f-84f3-01d996af620a" + "WESTUS2:20210218T040217Z:a9e74079-8a19-42b9-8d3a-5efc63f46621" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:39 GMT" + "Thu, 18 Feb 2021 04:02:16 GMT" ], "Content-Length": [ "22" @@ -2059,13 +2059,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/0d18d2de-3c0a-46cd-81f5-b2ced21509de?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvMGQxOGQyZGUtM2MwYS00NmNkLTgxZjUtYjJjZWQyMTUwOWRlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/3ffc4139-1758-4fec-b20d-97acd22754c7?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvM2ZmYzQxMzktMTc1OC00ZmVjLWIyMGQtOTdhY2QyMjc1NGM3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502a2d8b-3cd5-4102-97c6-0732c437d35e" + "18326d75-41c5-4bb0-989f-33f039a76ff6" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2094,19 +2094,19 @@ "11998" ], "x-ms-request-id": [ - "ee0bad48-999c-483f-b004-97bd2624ec40" + "d491e63a-3f94-48a7-a751-0980dbd5712a" ], "x-ms-correlation-request-id": [ - "ee0bad48-999c-483f-b004-97bd2624ec40" + "d491e63a-3f94-48a7-a751-0980dbd5712a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035540Z:ee0bad48-999c-483f-b004-97bd2624ec40" + "WESTUS2:20210218T040217Z:d491e63a-3f94-48a7-a751-0980dbd5712a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:55:40 GMT" + "Thu, 18 Feb 2021 04:02:16 GMT" ], "Content-Type": [ "application/json" @@ -2116,13 +2116,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWYxMzYyM2MtZjAwYi00MjkzLTk3MTQtNjhjYTVmMmUyMzVmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6574d5ef-a4dc-4db6-8c49-bc6ae7c92346?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjU3NGQ1ZWYtYTRkYy00ZGI2LThjNDktYmM2YWU3YzkyMzQ2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "509dbff0-75b8-459b-b0ab-1a33987b4d2e" + "8338e5f9-b48a-4049-81c5-59d42e781fff" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2148,22 +2148,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" + "e2e97fe8-da48-485a-a2a3-2b1fd6eeaafe" ], "x-ms-correlation-request-id": [ - "2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" + "e2e97fe8-da48-485a-a2a3-2b1fd6eeaafe" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035612Z:2b4675f2-8d9e-4ce7-9f0d-e97ad0cbf35b" + "WESTUS2:20210218T040250Z:e2e97fe8-da48-485a-a2a3-2b1fd6eeaafe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:56:11 GMT" + "Thu, 18 Feb 2021 04:02:50 GMT" ], "Content-Length": [ "22" @@ -2176,13 +2176,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/ef13623c-f00b-4293-9714-68ca5f2e235f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy9lZjEzNjIzYy1mMDBiLTQyOTMtOTcxNC02OGNhNWYyZTIzNWY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/graphs/graph1/operationResults/6574d5ef-a4dc-4db6-8c49-bc6ae7c92346?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL2dyYXBocy9ncmFwaDEvb3BlcmF0aW9uUmVzdWx0cy82NTc0ZDVlZi1hNGRjLTRkYjYtOGM0OS1iYzZhZTdjOTIzNDY/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "509dbff0-75b8-459b-b0ab-1a33987b4d2e" + "8338e5f9-b48a-4049-81c5-59d42e781fff" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2208,22 +2208,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "6ef16edd-458c-44c5-a565-62a7dceeba9d" + "e0685c5e-3a1e-4e56-9ac6-81dad37f5ee2" ], "x-ms-correlation-request-id": [ - "6ef16edd-458c-44c5-a565-62a7dceeba9d" + "e0685c5e-3a1e-4e56-9ac6-81dad37f5ee2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035612Z:6ef16edd-458c-44c5-a565-62a7dceeba9d" + "WESTUS2:20210218T040251Z:e0685c5e-3a1e-4e56-9ac6-81dad37f5ee2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:56:11 GMT" + "Thu, 18 Feb 2021 04:02:50 GMT" ], "Content-Type": [ "application/json" @@ -2233,13 +2233,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjlmMWZkNTQtZjBiMS00ZjFlLTg1ODQtY2YxNGIwNzIwMjA3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8ec3a7eb-9b54-4194-b639-1701eed979ad?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGVjM2E3ZWItOWI1NC00MTk0LWI2MzktMTcwMWVlZDk3OWFkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75fa53e8-fbf2-43e3-8835-fb61440fd222" + "48805d59-0df3-4299-b28b-42d9f49e692b" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2268,19 +2268,19 @@ "11999" ], "x-ms-request-id": [ - "3a2097c2-eafc-43c3-b6d2-3e31be654901" + "b8175e9c-5350-4885-8d28-eb2b7e3b3943" ], "x-ms-correlation-request-id": [ - "3a2097c2-eafc-43c3-b6d2-3e31be654901" + "b8175e9c-5350-4885-8d28-eb2b7e3b3943" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035644Z:3a2097c2-eafc-43c3-b6d2-3e31be654901" + "WESTUS:20210218T040323Z:b8175e9c-5350-4885-8d28-eb2b7e3b3943" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:56:43 GMT" + "Thu, 18 Feb 2021 04:03:22 GMT" ], "Content-Length": [ "22" @@ -2293,13 +2293,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/b9f1fd54-f0b1-4f1e-8584-cf14b0720207?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvYjlmMWZkNTQtZjBiMS00ZjFlLTg1ODQtY2YxNGIwNzIwMjA3P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup2510/providers/Microsoft.DocumentDB/databaseAccounts/db1002/gremlinDatabases/dbName/operationResults/8ec3a7eb-9b54-4194-b639-1701eed979ad?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI1MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZGIxMDAyL2dyZW1saW5EYXRhYmFzZXMvZGJOYW1lL29wZXJhdGlvblJlc3VsdHMvOGVjM2E3ZWItOWI1NC00MTk0LWI2MzktMTcwMWVlZDk3OWFkP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75fa53e8-fbf2-43e3-8835-fb61440fd222" + "48805d59-0df3-4299-b28b-42d9f49e692b" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2328,19 +2328,19 @@ "11998" ], "x-ms-request-id": [ - "bd4ce414-cbaf-4541-998e-3e720ef2f182" + "7e3abbe2-45ef-4e84-906e-572489d8cdd5" ], "x-ms-correlation-request-id": [ - "bd4ce414-cbaf-4541-998e-3e720ef2f182" + "7e3abbe2-45ef-4e84-906e-572489d8cdd5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210213T035644Z:bd4ce414-cbaf-4541-998e-3e720ef2f182" + "WESTUS:20210218T040323Z:7e3abbe2-45ef-4e84-906e-572489d8cdd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 13 Feb 2021 03:56:43 GMT" + "Thu, 18 Feb 2021 04:03:23 GMT" ], "Content-Type": [ "application/json" From cf9159597dfbef22f2d2450b7e60c8e41f6f125b Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Thu, 18 Feb 2021 15:31:59 +0800 Subject: [PATCH 7/7] Update ChangeLog.md --- 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 38388a7fe86c..9acd97ad98e9 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* Introduce NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. +* Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. ## Version 1.0.0 * General availability of 'Az.CosmosDB' module